projects
/
linpy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0fafeda
)
Fix symbols() function
author
Vivien Maisonneuve
<v.maisonneuve@gmail.com>
Thu, 19 Jun 2014 08:16:56 +0000
(10:16 +0200)
committer
Vivien Maisonneuve
<v.maisonneuve@gmail.com>
Thu, 19 Jun 2014 08:16:56 +0000
(10:16 +0200)
pypol/linear.py
patch
|
blob
|
history
diff --git
a/pypol/linear.py
b/pypol/linear.py
index
749f7c3
..
845fac3
100644
(file)
--- a/
pypol/linear.py
+++ b/
pypol/linear.py
@@
-355,7
+355,7
@@
class Symbol(Expression):
def symbols(names):
if isinstance(names, str):
names = names.replace(',', ' ').split()
- return (
s
ymbol(name) for name in names)
+ return (
S
ymbol(name) for name in names)
@_polymorphic_operator