Re: Issue 3046 in sympy: divmod method needed for Rational

2012-02-15 Thread sympy
Comment #1 on issue 3046 by smi...@gmail.com: divmod method needed for Rational http://code.google.com/p/sympy/issues/detail?id=3046 https://github.com/sympy/sympy/pull/1054 When divmod(2, S(3)) is called, Python passes the call off to Integer.__rdivmod__ because S(3) is an Integer. The

Re: Issue 3046 in sympy: divmod method needed for Rational

2012-02-15 Thread sympy
Updates: Labels: NeedsReview smichr Comment #2 on issue 3046 by smi...@gmail.com: divmod method needed for Rational http://code.google.com/p/sympy/issues/detail?id=3046 (No comment was entered for this change.) -- You received this message because you are subscribed to the Google

Re: Issue 3036 in sympy: sympy-bot hangs

2012-02-15 Thread sympy
Updates: Status: Fixed Comment #1 on issue 3036 by asmeu...@gmail.com: sympy-bot hangs http://code.google.com/p/sympy/issues/detail?id=3036 This seems to work now. I'm not certain, but I think Ronan's pytest branch may have fixed it (that pull request is where I first noticed it

Re: Issue 3074 in sympy: Countable Probability Space

2012-02-15 Thread sympy
Comment #3 on issue 3074 by asmeu...@gmail.com: Countable Probability Space http://code.google.com/p/sympy/issues/detail?id=3074 I went ahead and added Statistics as an official label in the tracker. -- You received this message because you are subscribed to the Google Groups sympy-issues

Re: Issue 2624 in sympy: Sympy 0.7.1 can't integrate Gaussians

2012-02-15 Thread sympy
Comment #27 on issue 2624 by asmeu...@gmail.com: Sympy 0.7.1 can't integrate Gaussians http://code.google.com/p/sympy/issues/detail?id=2624 I guess it's because of the gcd behavior on rationals: In [64]: gcd(1, S.Half) Out[64]: 1/2 You have to use Mul(evaluate=False). See issue 1497. --

Issue 3077 in sympy: solve cannot solve for variables used as logarithm base

2012-02-15 Thread sympy
Status: New Owner: Labels: Type-Defect Priority-Medium New issue 3077 by waks...@gwax.com: solve cannot solve for variables used as logarithm base http://code.google.com/p/sympy/issues/detail?id=3077 Goal: solve log(9,x) == 2 Expected answer: x = 3 from sympy import * x = Symbol('x')

Re: Issue 3077 in sympy: solve cannot solve for variables used as logarithm base

2012-02-15 Thread sympy
Comment #1 on issue 3077 by waks...@gwax.com: solve cannot solve for variables used as logarithm base http://code.google.com/p/sympy/issues/detail?id=3077 I have just checked against solve in the repository and this issue seems to have been resolved. -- You received this message because