Re: Issue 2312 in sympy: Remove duplicated block_diag

2011-11-01 Thread sympy
Comment #8 on issue 2312 by vlada.pe...@gmail.com: Remove duplicated block_diag http://code.google.com/p/sympy/issues/detail?id=2312 Should this be removed by now? It was added in before the 0.7.0 release. I wish this information was written somewhere clearly, rather than hunting it with

Re: Issue 2615 in sympy: Update generated PKG-INFO file in setup.py

2011-11-01 Thread sympy
Updates: Owner: vlada.pe...@gmail.com Labels: NeedsReview Comment #1 on issue 2615 by vlada.pe...@gmail.com: Update generated PKG-INFO file in setup.py http://code.google.com/p/sympy/issues/detail?id=2615 https://github.com/sympy/sympy/pull/691 I think that pull request

Re: Issue 565 in sympy: integrate does not ommit null terms and simplify fails to handle them afterwards.

2011-11-01 Thread sympy
Comment #31 on issue 565 by vlada.pe...@gmail.com: integrate does not ommit null terms and simplify fails to handle them afterwards. http://code.google.com/p/sympy/issues/detail?id=565 So is this fixed or what? Looks good to me. -- You received this message because you are subscribed to the

Re: Issue 747 in sympy: Allow manipulation of raw expression trees

2011-11-01 Thread sympy
Updates: Summary: Allow manipulation of raw expression trees Labels: -Priority-Medium Priority-High Blockedon: 2738 Comment #9 on issue 747 by ronan.l...@gmail.com: Allow manipulation of raw expression trees http://code.google.com/p/sympy/issues/detail?id=747 Kirill's

Re: Issue 2738 in sympy: Make a distinction between operations and their result

2011-11-01 Thread sympy
Issue 2738: Make a distinction between operations and their result http://code.google.com/p/sympy/issues/detail?id=2738 This issue is now blocking issue 747. See http://code.google.com/p/sympy/issues/detail?id=747 -- You received this message because you are listed in the owner or CC fields of

Re: Issue 1060 in sympy: integrate(sqrt(25-x)*sqrt(1+1/(4*(25-x))),x) can't do it

2011-11-01 Thread sympy
Updates: Labels: Integration Comment #1 on issue 1060 by ronan.l...@gmail.com: integrate(sqrt(25-x)*sqrt(1+1/(4*(25-x))),x) can't do it http://code.google.com/p/sympy/issues/detail?id=1060 Still not working, and it's slooow to return the unevaluated expression. -- You received this

Re: Issue 1542 in sympy: Pretty printing for boolean operations

2011-11-01 Thread sympy
Updates: Status: Fixed Comment #1 on issue 1542 by ronan.l...@gmail.com: Pretty printing for boolean operations http://code.google.com/p/sympy/issues/detail?id=1542 This has been fixed. In [2]: x y Out[2]: x ∧ y In [3]: x | y Out[3]: x ∨ y -- You received this message because

Re: Issue 2816 in sympy: Regarding integration of k*(x**0)

2011-11-01 Thread sympy
Comment #5 on issue 2816 by asmeu...@gmail.com: Regarding integration of k*(x**0) http://code.google.com/p/sympy/issues/detail?id=2816 Ah, this is because x**0 is actually being reduced to 1: In [34]: 2*x**0 Out[34]: 2 so in this case, it doesn't know that the variable you want is x,

Re: Issue 2312 in sympy: Remove duplicated block_diag

2011-11-01 Thread sympy
Comment #9 on issue 2312 by asmeu...@gmail.com: Remove duplicated block_diag http://code.google.com/p/sympy/issues/detail?id=2312 We could easily make this information a part of the custom deprecation warning from issue 2513. And I guess the milestone-release0.7.2 tag means that we

Re: Issue 2807 in sympy: Change .unit and .mag to proper methods and better names.

2011-11-01 Thread sympy
Comment #21 on issue 2807 by moorepa...@gmail.com: Change .unit and .mag to proper methods and better names. http://code.google.com/p/sympy/issues/detail?id=2807 Thumbs up to that. I favor normalize and magnitude. -- You received this message because you are subscribed to the Google Groups

Re: Issue 1060 in sympy: integrate(sqrt(25-x)*sqrt(1+1/(4*(25-x))),x) can't do it

2011-11-01 Thread sympy
Comment #2 on issue 1060 by asmeu...@gmail.com: integrate(sqrt(25-x)*sqrt(1+1/(4*(25-x))),x) can't do it http://code.google.com/p/sympy/issues/detail?id=1060 If we were to allow integrate to ignore power combination rules, this would work: In [63]: b =

Re: Issue 2807 in sympy: Change .unit and .mag to proper methods and better names.

2011-11-01 Thread sympy
Comment #22 on issue 2807 by hazelnu...@gmail.com: Change .unit and .mag to proper methods and better names. http://code.google.com/p/sympy/issues/detail?id=2807 Ok. I will prepare a branch that changes the .unit and .mag properties to .normalize(self) and .magnitude(self) instance

Re: Issue 2807 in sympy: Change .unit and .mag to proper methods and better names.

2011-11-01 Thread sympy
Comment #23 on issue 2807 by hazelnu...@gmail.com: Change .unit and .mag to proper methods and better names. http://code.google.com/p/sympy/issues/detail?id=2807 The pull request is here: https://github.com/sympy/sympy/pull/693 -- You received this message because you are subscribed to the

Issue 2817 in sympy: Make sure all the built-in __methods__ are defined

2011-11-01 Thread sympy
Status: Accepted Owner: Labels: Type-Defect Priority-Medium CodeInCategory-Code CodeInDifficulty-Easy New issue 2817 by asmeu...@gmail.com: Make sure all the built-in __methods__ are defined http://code.google.com/p/sympy/issues/detail?id=2817 At

Issue 2818 in sympy: factor() returns nan

2011-11-01 Thread sympy
Status: Accepted Owner: Labels: Type-Defect Priority-Medium Polynomial New issue 2818 by asmeu...@gmail.com: factor() returns nan http://code.google.com/p/sympy/issues/detail?id=2818 If you take the expression from http://pastebin.com/AYbUu66t, you get In [107]: factor(p.rewrite(exp))

Re: Issue 2807 in sympy: Change .unit and .mag to proper methods and better names.

2011-11-01 Thread sympy
Updates: Labels: NeedsReview Comment #24 on issue 2807 by asmeu...@gmail.com: Change .unit and .mag to proper methods and better names. http://code.google.com/p/sympy/issues/detail?id=2807 (No comment was entered for this change.) -- You received this message because you are

Re: Issue 2782 in sympy: ReferenceFrame indices does not properly set the indices

2011-11-01 Thread sympy
Updates: Cc: moorepa...@gmail.com Comment #4 on issue 2782 by hazelnu...@gmail.com: ReferenceFrame indices does not properly set the indices http://code.google.com/p/sympy/issues/detail?id=2782 This was a simple fix. I've fixed it here:

Re: Issue 2781 in sympy: orientnew in sympy.physics.mechanics does not support indices

2011-11-01 Thread sympy
Comment #3 on issue 2781 by hazelnu...@gmail.com: orientnew in sympy.physics.mechanics does not support indices http://code.google.com/p/sympy/issues/detail?id=2781 One way to fix this would be to add kwargs to orientnew and passing them to the constructor of the new reference frame, line

Re: Issue 1613 in sympy: coverage stmt green even if not fully covered

2011-11-01 Thread sympy
Updates: Status: WontFix Comment #1 on issue 1613 by ronan.l...@gmail.com: coverage stmt green even if not fully covered http://code.google.com/p/sympy/issues/detail?id=1613 This should be reported upstream, though AFAIK it's a known issue with no good solution, cf.

Re: Issue 1912 in sympy: inconsistency between facts

2011-11-01 Thread sympy
Updates: Status: Invalid Comment #5 on issue 1912 by ronan.l...@gmail.com: inconsistency between facts http://code.google.com/p/sympy/issues/detail?id=1912 The meaning of complex isn't going to change any time soon: it would break too many things. -- You received this message

Re: Issue 1934 in sympy: Function.is_number oddness

2011-11-01 Thread sympy
Updates: Blockedon: 1688 Comment #2 on issue 1934 by ronan.l...@gmail.com: Function.is_number oddness http://code.google.com/p/sympy/issues/detail?id=1934 (No comment was entered for this change.) -- You received this message because you are subscribed to the Google Groups

Re: Issue 1688 in sympy: Functions should be objects

2011-11-01 Thread sympy
Issue 1688: Functions should be objects http://code.google.com/p/sympy/issues/detail?id=1688 This issue is now blocking issue 1934. See http://code.google.com/p/sympy/issues/detail?id=1934 -- You received this message because you are listed in the owner or CC fields of this issue, or because

Re: Issue 2254 in sympy: Support for bitwise operations

2011-11-01 Thread sympy
Comment #4 on issue 2254 by ronan.l...@gmail.com: Support for bitwise operations http://code.google.com/p/sympy/issues/detail?id=2254 Issue 1815 has been merged into this issue. -- You received this message because you are subscribed to the Google Groups sympy-issues group. To post to this

Re: Issue 1815 in sympy: shift operator

2011-11-01 Thread sympy
Updates: Status: Duplicate Mergedinto: 2254 Comment #1 on issue 1815 by ronan.l...@gmail.com: shift operator http://code.google.com/p/sympy/issues/detail?id=1815 This has been partially fixed: In [1]: S(4) S(3)

Re: Issue 1840 in sympy: atoms is non-greedy

2011-11-01 Thread sympy
Updates: Status: WontFix Comment #3 on issue 1840 by ronan.l...@gmail.com: atoms is non-greedy http://code.google.com/p/sympy/issues/detail?id=1840 I think the current behaviour is fine. It doesn't seem to have caused any trouble since this issue was opened and it also seems that