Re: Issue 3968 in sympy: factor_list() error Python3

2013-11-12 Thread sympy
Updates: Labels: -Priority-Critical Priority-High Comment #8 on issue 3968 by asmeu...@gmail.com: factor_list() error Python3 http://code.google.com/p/sympy/issues/detail?id=3968 No one is working on this, so lowering the priority (to remove the milestone). The workaround is to

Re: Issue 3968 in sympy: factor_list() error Python3

2013-08-29 Thread sympy
Updates: Labels: -Priority-Medium Priority-Critical Comment #6 on issue 3968 by asmeu...@gmail.com: factor_list() error Python3 http://code.google.com/p/sympy/issues/detail?id=3968 (No comment was entered for this change.) -- You received this message because this project is configured

Re: Issue 3968 in sympy: factor_list() error Python3

2013-08-29 Thread sympy
Comment #7 on issue 3968 by asmeu...@gmail.com: factor_list() error Python3 http://code.google.com/p/sympy/issues/detail?id=3968 Fixing this doesn't seem to be so easy. Can you tackle it Mateusz? Basically, I want _symbolic_factor_list to use parallel_poly_from_expr, as this seems to be the

Re: Issue 3968 in sympy: factor_list() error Python3

2013-08-12 Thread sympy
Comment #5 on issue 3968 by matt...@gmail.com: factor_list() error Python3 http://code.google.com/p/sympy/issues/detail?id=3968 Is it enough to put the polynomials all under the same set of generators That's perfectly sufficient. -- You received this message because this project is

Re: Issue 3968 in sympy: factor_list() error Python3

2013-08-11 Thread sympy
Comment #4 on issue 3968 by asmeu...@gmail.com: factor_list() error Python3 http://code.google.com/p/sympy/issues/detail?id=3968 Is it enough to put the polynomials all under the same set of generators (I forget what this is called in the polys)? Or do we need to write a custom key

Issue 3968 in sympy: factor_list() error Python3

2013-08-10 Thread sympy
Status: Valid Owner: Labels: Type-Defect Priority-Medium New issue 3968 by thilina@gmail.com: factor_list() error Python3 http://code.google.com/p/sympy/issues/detail?id=3968 Following function call generate an error in Python3 but work well in Python2. factor_list(x*(x+y))

Re: Issue 3968 in sympy: factor_list() error Python3

2013-08-10 Thread sympy
Updates: Status: Started Owner: matt...@gmail.com Labels: Polynomial Comment #1 on issue 3968 by matt...@gmail.com: factor_list() error Python3 http://code.google.com/p/sympy/issues/detail?id=3968 x*(x + y) is decomposed using heuristics so x is treated as a univariate

Re: Issue 3968 in sympy: factor_list() error Python3

2013-08-10 Thread sympy
Comment #2 on issue 3968 by thilina@gmail.com: factor_list() error Python3 http://code.google.com/p/sympy/issues/detail?id=3968 It's great that We could find the bug quickly. Hope this will get fixed soon. -- You received this message because this project is configured to send all

Re: Issue 3968 in sympy: factor_list() error Python3

2013-08-10 Thread sympy
Comment #3 on issue 3968 by ondrej.c...@gmail.com: factor_list() error Python3 http://code.google.com/p/sympy/issues/detail?id=3968 Here is an ughly hack that shows where the problem is: diff --git a/sympy/polys/polytools.py b/sympy/polys/polytools.py index c1b3dff..6a14317 100644 ---