[sympy] Re: plotting test failure on Sympy master

2015-04-26 Thread j . gonthier01
Sympy version 0.7.6-git, up-to-date with the current master on github. Le dimanche 26 avril 2015 16:42:12 UTC-4, j.gont...@gmail.com a écrit : Hi, I ran test on the latest sympy fetched from github and the plot_implicit tests are failing, complaining that Eq is not defined. I am using

[sympy] plotting test failure on Sympy master

2015-04-26 Thread j . gonthier01
Hi, I ran test on the latest sympy fetched from github and the plot_implicit tests are failing, complaining that Eq is not defined. I am using Python 2.7, would any of you have an idea of the origin of the problem ? Below is the error message I got when testing only the plotting module:

Re: [sympy] plotting test failure on Sympy master

2015-04-26 Thread Joachim Durchholz
Am 26.04.2015 um 22:42 schrieb j.gonthie...@gmail.com: File sympy/plotting/plot_implicit.py, line 81, in get_raster temp = func(xinterval, yinterval) File string, line 1, in lambda NameError: global name 'Eq' is not defined I can confirm that this error happens. I had to `pip

Re: [sympy] Parse expression with indexing

2015-04-26 Thread Aaron Meurer
On Sun, Apr 26, 2015 at 12:27 AM, Loïc Gouarin loic.goua...@gmail.com wrote: Hi, I would like to parse a string expression like that from sympy.parsing.sympy_parser import parse_expr parse_expr(m[0][0]) But I have an error with 'Symbol' object does not support indexing. If I do

[sympy] Parse expression with indexing

2015-04-26 Thread Loïc Gouarin
Hi, I would like to parse a string expression like that from sympy.parsing.sympy_parser import parse_expr parse_expr(m[0][0]) But I have an error with 'Symbol' object does not support indexing. If I do sympy.Symbol(m[0][0]) everything is ok. I try to write my own transformation funtion