We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 491f133 + 3603878 commit 8ed401bCopy full SHA for 8ed401b
symengine/utilities.py
@@ -9,7 +9,7 @@
9
10
11
def symbols(names, **args):
12
- """
+ r"""
13
Transform strings into instances of :class:`Symbol` class.
14
:func:`symbols` function returns a sequence of symbols with names taken
15
from ``names`` argument, which can be a comma or whitespace delimited
@@ -86,7 +86,7 @@ def symbols(names, **args):
86
87
if isinstance(names, str):
88
marker = 0
89
- literals = ['\,', '\:', '\ ']
+ literals = [r'\,', r'\:', r'\ ']
90
for i in range(len(literals)):
91
lit = literals.pop(0)
92
if lit in names:
0 commit comments