Issue 1577 in sympy: match doesn't put every wild as a key

2009-10-19 Thread codesite-noreply
Comment #2 on issue 1577 by asmeurer: match doesn't put every wild as a key http://code.google.com/p/sympy/issues/detail?id=1577 Well, you can see line 577 in ode.py for what I ended up doing: if r and r[c] != 0 and r[n] != 1: # See issue 1577 The .get method might make things a littl

Issue 1675 in sympy: Inconsistent behaviour of atoms()

2009-10-19 Thread codesite-noreply
Comment #5 on issue 1675 by and...@hotmail.com: Inconsistent behaviour of atoms() http://code.google.com/p/sympy/issues/detail?id=1675 smichr, Thanks for your reply - the 'iterables' module you demonstrate looks very useful, as I will want to do a lot of similar tree-traversal tasks. Wher

Issue 1675 in sympy: Inconsistent behaviour of atoms()

2009-10-19 Thread codesite-noreply
Comment #6 on issue 1675 by asmeurer: Inconsistent behaviour of atoms() http://code.google.com/p/sympy/issues/detail?id=1675 You are confused. iterables is a module in SymPy (see sympy/utilities/iterables.py). He did a from sympy import * so that iterables was in the global namespace. -- Yo

Issue 1671 in sympy: runtests modifications for Windows

2009-10-19 Thread codesite-noreply
Updates: Labels: -NeedsReview NeedsBetterPatch Comment #9 on issue 1671 by ondrej.certik: runtests modifications for Windows http://code.google.com/p/sympy/issues/detail?id=1671 With this patch, if I do: $ bin/test sympy/core/ = test process starts ==

Issue 1671 in sympy: runtests modifications for Windows

2009-10-19 Thread codesite-noreply
Updates: Labels: -NeedsBetterPatch NeedsReview Comment #10 on issue 1671 by smichr: runtests modifications for Windows http://code.google.com/p/sympy/issues/detail?id=1671 here is another iteration or runtests...please check. It is also pushed to smichr4. Attachments: 0001-tes

Issue 1671 in sympy: runtests modifications for Windows

2009-10-19 Thread codesite-noreply
Comment #11 on issue 1671 by ondrej.certik: runtests modifications for Windows http://code.google.com/p/sympy/issues/detail?id=1671 I cherry-picked the patch from the smich4 branch and I am still getting $ bin/test sympy/ = test process starts ===

Issue 1577 in sympy: match doesn't put every wild as a key

2009-10-19 Thread codesite-noreply
Comment #3 on issue 1577 by ronan.l...@gmail.com: match doesn't put every wild as a key http://code.google.com/p/sympy/issues/detail?id=1577 ""but do you mean to do it if n cannot possibly be 1, or if n can be different from 1?" Maybe it is too early in the morning, but these sound like the

Issue 1675 in sympy: Inconsistent behaviour of atoms()

2009-10-19 Thread codesite-noreply
Comment #7 on issue 1675 by smichr: Inconsistent behaviour of atoms() http://code.google.com/p/sympy/issues/detail?id=1675 From "sympy import *" imports (I believe) everything that is in sympy's __init__.py. If you look in there, you will see the line "from utilities import *" which means t