[sympy] Fix python 3 tests (#1423)

2012-07-17 Thread Julien Rioux
Remove unused definition line that fails in python 3. You can merge this Pull Request by running: git pull https://github.com/jrioux/sympy tests Or you can view, comment on it, or merge it online at: https://github.com/sympy/sympy/pull/1423 -- Commit Summary -- * Remove unused definition

[sympy] Fix FiniteSet-related Python 3 test failures. (#1368)

2012-06-21 Thread Sergiu Ivanov
This pull request makes the behaviour of `element_sort_fn` in `core/sets.py` consistent with that of `sort_key` in all SymPy classes. This pull request also makes exception handling in `element_sort_fn` more specific. You can merge this Pull Request by running: git pull https://github.com/sc

Re: Issue 2612 in sympy: Error in quantum/__init__.py under Python 3

2011-09-04 Thread sympy
Updates: Status: Fixed Labels: -NeedsReview PassedReview Comment #8 on issue 2612 by vlada.pe...@gmail.com: Error in quantum/__init__.py under Python 3 http://code.google.com/p/sympy/issues/detail?id=2612 The pull request is in, closing. -- You received this message because

Re: Issue 2610 in sympy: Wavefunction documentation errors under Python 3

2011-09-04 Thread sympy
Updates: Status: Fixed Labels: -NeedsReview PassedReview Comment #13 on issue 2610 by vlada.pe...@gmail.com: Wavefunction documentation errors under Python 3 http://code.google.com/p/sympy/issues/detail?id=2610 It's fixed now. -- You received this message because yo

Re: Issue 2608 in sympy: test_pickling errors under Python 3

2011-09-04 Thread sympy
Updates: Status: Fixed Labels: -NeedsReview PassedReview Comment #7 on issue 2608 by vlada.pe...@gmail.com: test_pickling errors under Python 3 http://code.google.com/p/sympy/issues/detail?id=2608 The pull request is in, closing. If we decide to do a code-wide cleanup, a

Re: Issue 2612 in sympy: Error in quantum/__init__.py under Python 3

2011-08-18 Thread sympy
Updates: Labels: NeedsReview Comment #7 on issue 2612 by vlada.pe...@gmail.com: Error in quantum/__init__.py under Python 3 http://code.google.com/p/sympy/issues/detail?id=2612 This is fixed per comment #4 in my pull request: https://github.com/sympy/sympy/pull/558 -- You

Re: Issue 2610 in sympy: Wavefunction documentation errors under Python 3

2011-08-18 Thread sympy
Updates: Labels: NeedsReview Comment #12 on issue 2610 by vlada.pe...@gmail.com: Wavefunction documentation errors under Python 3 http://code.google.com/p/sympy/issues/detail?id=2610 See my pull request for the fix: https://github.com/sympy/sympy/pull/558 -- You received this

Re: Issue 2608 in sympy: test_pickling errors under Python 3

2011-08-18 Thread sympy
Updates: Labels: NeedsReview Comment #6 on issue 2608 by vlada.pe...@gmail.com: test_pickling errors under Python 3 http://code.google.com/p/sympy/issues/detail?id=2608 These two errors are now fixed in my pull request: https://github.com/sympy/sympy/pull/558 -- You received this

Re: Python 3

2010-07-05 Thread Aaron S. Meurer
It's in. Aaron Meurer On Jul 5, 2010, at 1:01 PM, Ondrej Certik wrote: > On Mon, Jul 5, 2010 at 8:57 AM, Aaron S. Meurer wrote: >> Looks good. All such warnings are gone in Python2.7rc2, and all tests pass >> (except for the ones from issue 1970). >> So now, it looks like except for cmp vs. key

Re: Python 3

2010-07-05 Thread Ondrej Certik
On Mon, Jul 5, 2010 at 8:57 AM, Aaron S. Meurer wrote: > Looks good.  All such warnings are gone in Python2.7rc2, and all tests pass > (except for the ones from issue 1970). > So now, it looks like except for cmp vs. key and reduce, the rest should be > doable with the 2to3.py tool (except for may

Re: Python 3

2010-07-05 Thread Aaron S. Meurer
? > > [0]: http://github.com/xiongchiamiov/sympy/tree/2to3-support > > - > > Define __hash__ functions when __eq__ is overriden for Py3k support. > > As hinted at in a bugreport[0] and implemented several years ago in the >

Python 3

2010-07-05 Thread James Pearson
pport - Define __hash__ functions when __eq__ is overriden for Py3k support. As hinted at in a bugreport[0] and implemented several years ago in the py3k branch[1], in Python 3, overriding __eq__ without explicitly defining __hash__ will cause __hash__ to be set to Non