>   File "/home/oy/git_workingdir/sympy/sympy/physics/hilbert.py", line
> 267
>     obj = Expr.__new__(cls, *args, commutative=False)
>                                              ^
> SyntaxError: invalid syntax

The syntax error is because I have python 2.5 installed. The following
line is compatible with 2.5:

obj = Expr.__new__(cls, *args, **{'commutative': False})

There are 3 places in the file where this needs to be changed.

-- 
You received this message because you are subscribed to the Google Groups 
"sympy-patches" group.
To post to this group, send email to sympy-patc...@googlegroups.com.
To unsubscribe from this group, send email to 
sympy-patches+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sympy-patches?hl=en.

Reply via email to