Issue 702 in sympy: Plot() should use standard kwarg syntax -- examples in docstrings don't work

2008-11-04 Thread codesite-noreply
Issue 702: Plot() should use standard kwarg syntax -- examples in docstrings don't work http://code.google.com/p/sympy/issues/detail?id=702 Comment #7 by goriccardo: The problem is in the style keyword: with this patch you can't specify the style of the pyglet window, i.e: Calling Plot(x**2,

Issue 353 in sympy: piecewise functions

2008-11-04 Thread codesite-noreply
Issue 353: piecewise functions http://code.google.com/p/sympy/issues/detail?id=353 Comment #26 by andy.terrel: So more or less after implementing both systems it seems that keeping the piecewise functions separate until asked is best. I have a few patches over at http://github.com/aterrel/sy

Issue 1182 in sympy: global variable 'cubic' undefined in sympy/polys/rootfinding.py

2008-11-04 Thread codesite-noreply
Issue 1182: global variable 'cubic' undefined in sympy/polys/rootfinding.py http://code.google.com/p/sympy/issues/detail?id=1182 Comment #6 by nicolas.pourcelot: For example: >>> import sympy >>> sympy.var("x") >>> p=(30.0 + 25.0*x**2 + 11.0*x**4 + 5.0*x**6 + x**8).as_poly() >>> sympy.rootfinding

Issue 16 in sympy: objects with indices (tensors)

2008-11-04 Thread codesite-noreply
Issue 16: objects with indices (tensors) http://code.google.com/p/sympy/issues/detail?id=16 Comment #23 by ondrej.certik: Yes, it seems reasonable to make them private. Please ping us if you have something to review/merge. -- You received this message because you are listed in the owner or

Issue 1035 in sympy: sympify("x^2") should return x**2

2008-11-04 Thread codesite-noreply
Issue 1035: sympify("x^2") should return x**2 http://code.google.com/p/sympy/issues/detail?id=1035 Comment #6 by andy.terrel: I added a patch for this. See http://groups.google.com/group/sympy- patches/browse_thread/thread/f501f75607775118 Issue attribute updates: Owner: andy.terrel

Issue 1178 in sympy: sympify uses a mutable object with a keyword argument

2008-11-04 Thread codesite-noreply
Issue 1178: sympify uses a mutable object with a keyword argument http://code.google.com/p/sympy/issues/detail?id=1178 Comment #5 by andy.terrel: see patch at http://groups.google.com/group/sympy-patches/browse_thread/thread/f501f75607775118 Issue attribute updates: Owner: andy.terrel

Issue 1182 in sympy: global variable 'cubic' undefined in sympy/polys/rootfinding.py

2008-11-04 Thread codesite-noreply
Issue 1182: global variable 'cubic' undefined in sympy/polys/rootfinding.py http://code.google.com/p/sympy/issues/detail?id=1182 Comment #5 by nicolas.pourcelot: For example: >>> import sympy >>> sympy.var("x") >>> p=(30.0 + 25.0*x**2 + 11.0*x**4 + 5.0*x**6 + x**8).as_poly() >>> sympy.rootfinding

Issue 1035 in sympy: sympify("x^2") should return x**2

2008-11-04 Thread codesite-noreply
Issue 1035: sympify("x^2") should return x**2 http://code.google.com/p/sympy/issues/detail?id=1035 Comment #7 by andy.terrel: (No comment was entered for this change.) Issue attribute updates: Status: Fixed Labels: -NeedsReview -- You received this message because you are list

Issue 1178 in sympy: sympify uses a mutable object with a keyword argument

2008-11-04 Thread codesite-noreply
Issue 1178: sympify uses a mutable object with a keyword argument http://code.google.com/p/sympy/issues/detail?id=1178 Comment #6 by andy.terrel: (No comment was entered for this change.) Issue attribute updates: Status: Fixed Labels: -NeedsReview -- You received this message

Issue 1178 in sympy: sympify uses a mutable object with a keyword argument

2008-11-04 Thread codesite-noreply
Issue 1178: sympify uses a mutable object with a keyword argument http://code.google.com/p/sympy/issues/detail?id=1178 Comment #7 by ondrej.certik: Please mark issues as fixed when the patches get actually merged. Issue attribute updates: Status: Started -- You received this message b

Issue 1035 in sympy: sympify("x^2") should return x**2

2008-11-04 Thread codesite-noreply
Issue 1035: sympify("x^2") should return x**2 http://code.google.com/p/sympy/issues/detail?id=1035 Comment #8 by ondrej.certik: (No comment was entered for this change.) Issue attribute updates: Status: Started -- You received this message because you are listed in the owner or CC fie

Issue 1170 in sympy: problem with printing in 2.6

2008-11-04 Thread codesite-noreply
Issue 1170: problem with printing in 2.6 http://code.google.com/p/sympy/issues/detail?id=1170 Comment #4 by basti.kr: The problem with python2.6 is that the __cmp__ method isn't used anymore. This patch introduces __lt__ and __gt__ methods and makes all tests pass. (tested for python 2.4 and