Issue 1420 in sympy: subs() seems to fail against D(x(t), t)

2009-05-11 Thread codesite-noreply
Comment #6 on issue 1420 by 2006.Uchida: subs() seems to fail against D(x(t), t) http://code.google.com/p/sympy/issues/detail?id=1420 Thanks a lot! What a fast response you did! It's very active. I'm definitely going to keep my eyes on the development of Sympy. -- You received this message

Issue 1391 in sympy: integrate(cos(x)*f(x),(x,0,y)) gives wrong result

2009-05-11 Thread codesite-noreply
Comment #1 on issue 1391 by goriccardo: integrate(cos(x)*f(x),(x,0,y)) gives wrong result http://code.google.com/p/sympy/issues/detail?id=1391 After commit 2573c851af78b0e52f9951f791e664b540de4bfe it gives: In [1]: integrate(sin(x)*f(x),(x,y,z)) Out[1]: d d

[sympy] Re: Sphinx Documentation

2009-05-11 Thread Priit Laes
Ühel kenal päeval, P, 2009-05-10 kell 18:42, kirjutas Alan Bromborsky: In rst for python-sphinx how do declare bold colored text. I have a warning in my documentation that I really want to set off! **Here be bold text** http://sphinx.pocoo.org/rest.html#inline-markup Of course, there's

[sympy] Re: Sphinx Documentation

2009-05-11 Thread Alan Bromborsky
Priit Laes wrote: Ühel kenal päeval, P, 2009-05-10 kell 18:42, kirjutas Alan Bromborsky: In rst for python-sphinx how do declare bold colored text. I have a warning in my documentation that I really want to set off! **Here be bold text**

[sympy] issue tracker issues

2009-05-11 Thread Jochen Voß
Hi, I believe the following entries in the issue tracker can be closed: * test the __doc__ propagation in decorator wrappers: http://code.google.com/p/sympy/issues/detail?id=744 This is fixed by commit 964d1f97df600308b23b6a91b9de8811795509a4 . * remove string exceptions from sympy:

[sympy] Re: issue tracker issues

2009-05-11 Thread Ondrej Certik
On Mon, May 11, 2009 at 7:05 PM, Jochen Voß v...@seehuhn.de wrote: Hi, I believe the following entries in the issue tracker can be closed: * test the __doc__ propagation in decorator wrappers:   http://code.google.com/p/sympy/issues/detail?id=744   This is fixed by commit

[sympy] solve() and diff() with Symbol versus Function

2009-05-11 Thread Luke
Would there be any reason that the following should not be implemented: t = Symbol('t') q1 = Function('q1')(t) solve(q1 - 1, q1) Currently, the solve function gives: --- TypeError Traceback