Re: Issue 1916 in sympy: Plotting fails: Window initialization failed: Unable to share contexts

2010-08-26 Thread sympy
Comment #10 on issue 1916 by mybeky: Plotting fails: Window initialization failed: Unable to share contexts http://code.google.com/p/sympy/issues/detail?id=1916 it's can be fixed like this: os.environ['PYGLET_SHADOW_WINDOW']=0 -- You received this message because you are subscribed to the

Issue 2041 in sympy: Doctest failures in Python 2.6.6

2010-08-26 Thread sympy
Status: Accepted Owner: asmeurer Labels: Type-Defect Priority-Critical Milestone-Release0.7.0 Documentation New issue 2041 by asmeurer: Doctest failures in Python 2.6.6 http://code.google.com/p/sympy/issues/detail?id=2041 See

Re: Issue 2040 in sympy: Better way to make a rational function out of an expression

2010-08-26 Thread sympy
Comment #5 on issue 2040 by asmeurer: Better way to make a rational function out of an expression http://code.google.com/p/sympy/issues/detail?id=2040 Just forget the log expression, OK. That isn't a rational function in x, so the routine I am advocating here would not be able to do

Re: Issue 2041 in sympy: Doctest failures in Python 2.6.6

2010-08-26 Thread sympy
Comment #1 on issue 2041 by smichr: Doctest failures in Python 2.6.6 http://code.google.com/p/sympy/issues/detail?id=2041 There are two potential ways to fix this: 1) use my equal function (or equivalent) like this: assert equal( ... e.match(p**q), ... {p_: x + y, q_: x + y}) By

[sympy] Re: Doctest failures in Python 2.6.6 rc1

2010-08-26 Thread asmeurer
So Python 2.6.6 has been released [0], and the issue persists with the exact same doctest failures as before. So I have opened issue 2041 [1] for it. Aaron Meurer [0] - http://www.python.org/download/releases/2.6.6/ [1] - http://code.google.com/p/sympy/issues/detail?id=2041 On Aug 18, 12:07 

Re: [sympy] Re: Doctest failures in Python 2.6.6 rc1

2010-08-26 Thread Ondrej Certik
On Thu, Aug 26, 2010 at 3:00 PM, asmeurer asmeu...@gmail.com wrote: So Python 2.6.6 has been released [0], and the issue persists with the exact same doctest failures as before.  So I have opened issue 2041 [1] for it. Thanks, we need to fix it. Ondrej -- You received this message because

[sympy] Re: reclaim forbidden characters?

2010-08-26 Thread smichr
On Aug 26, 8:08 am, Andy Ray Terrel andy.ter...@gmail.com wrote: I like abc.  It makes life easier in a shell. Chris why not just do: from sympy.abc import * from sympy import S That works. As far as shell work, how is abc better than var? -- You received this message because you are

Re: [sympy] Re: reclaim forbidden characters?

2010-08-26 Thread Fredrik Johansson
On Fri, Aug 27, 2010 at 6:08 AM, Aaron S. Meurer asmeu...@gmail.com wrote: from sympy.abc import * vs var('a b c d …') Plus, I also like abc for doctests. What if var() is changed to do the equivalent of from sympy.abc import *? (It currently just raises an exception when called with no