Re: Issue 2238 in sympy: Autodetection of dependent variable in dsolve, checkodesol and other high level function in ODE module

2011-08-22 Thread sympy
Comment #9 on issue 2238 by smi...@gmail.com: Autodetection of dependent variable in dsolve, checkodesol and other high level function in ODE module http://code.google.com/p/sympy/issues/detail?id=2238 Pull https://github.com/sympy/sympy/pull/169 was replaced with

Re: Issue 2618 in sympy: Solve fails on expressions containing finite symbols

2011-08-22 Thread sympy
Updates: Status: Fixed Comment #19 on issue 2618 by smi...@gmail.com: Solve fails on expressions containing finite symbols http://code.google.com/p/sympy/issues/detail?id=2618 (No comment was entered for this change.) -- You received this message because you are subscribed to the

Re: Issue 2618 in sympy: Solve fails on expressions containing finite symbols

2011-08-22 Thread sympy
Comment #20 on issue 2618 by smi...@gmail.com: Solve fails on expressions containing finite symbols http://code.google.com/p/sympy/issues/detail?id=2618 This is in. Thanks. There are 3 lines in Add that need to be covered, but perhaps I will do that if you don't, first. -- You received

Re: Issue 2618 in sympy: Solve fails on expressions containing finite symbols

2011-08-22 Thread sympy
Updates: Status: Fixed Comment #19 on issue 2618 by smi...@gmail.com: Solve fails on expressions containing finite symbols http://code.google.com/p/sympy/issues/detail?id=2618 (No comment was entered for this change.) -- You received this message because you are subscribed to the

Re: Issue 2618 in sympy: Solve fails on expressions containing finite symbols

2011-08-22 Thread sympy
Comment #20 on issue 2618 by smi...@gmail.com: Solve fails on expressions containing finite symbols http://code.google.com/p/sympy/issues/detail?id=2618 This is in. Thanks. There are 3 lines in Add that need to be covered, but perhaps I will do that if you don't, first. -- You received

Re: [sympy] doctest testmod() globs keyword argument

2011-08-22 Thread Aaron Meurer
Well, I don't know why you are doing things this way, but clearly python -m doctest file.py or ./bin/doctest file.py do not run __name__ == `__main__`. Does it work if you replace import doctest with from sympy import doctest? Aaron Meurer On Sun, Aug 21, 2011 at 2:32 PM, Luke Peterson

Re: [sympy] possible failure in master

2011-08-22 Thread Aaron Meurer
As I mentioned on the mailing list, this answer is valid. match() is not guaranteed to give any particular answer when more than one is valid, so you should always use the exclude keyword on Wild to make the match unique. Aaron Meurer On Sun, Aug 21, 2011 at 4:59 PM, Sean Vig

Re: [sympy] doctest testmod() globs keyword argument

2011-08-22 Thread Luke
The main reason I am doing things this way is because this is how I learned it when reading docs.python.org: http://docs.python.org/py3k/library/doctest.html?highlight=doctest#doctest The second reason I prefer this way is because it makes it very easy to control the execution context of all the

Re: [sympy] TeX output in IPython qt 0.11

2011-08-22 Thread Aaron Meurer
Cool. I knew there had to be a way to render LaTeX in the qtconsole other than just using matplotlib. Probably the best way to use this with SymPy would be to create a custom printer that sends the output of latex() through the TeX command. You can play around with this. I'll take a look at it

Re: [sympy] doctest testmod() globs keyword argument

2011-08-22 Thread Aaron Meurer
Oh, sorry. I see that testmod() is the function. Does it maybe work if you pass the globs argument to SymPy's doctest(). It may pass through. If not, you may have to modify it so that it does (or perhaps there's another way to do it; again you'll unfortunately have to read some source code

Re: [sympy] possible failure in master

2011-08-22 Thread Aaron Meurer
I mean, as I mentioned on the pull request. Aaron Meurer On Mon, Aug 22, 2011 at 11:38 AM, Aaron Meurer asmeu...@gmail.com wrote: As I mentioned on the mailing list, this answer is valid.  match() is not guaranteed to give any particular answer when more than one is valid, so you should

[sympy] Strange doctest failure

2011-08-22 Thread Tomo Lazovich
Hi everyone, I just did a rebase of my final pull request because there were some merge conflicts, and I'm not getting a strange doctest failure that I don't understand. When I run ./bin/doctest, it tells me that this doctest (

Re: [sympy] possible failure in master

2011-08-22 Thread Tomo Lazovich
I've submitted a pull request that uses the exclude keyword for that test: https://github.com/sympy/sympy/pull/575 Sean or anyone else who also saw that test failure, can you check this pull request to see if the tests pass on your system now? This fixes the failure on my system. On Mon, Aug 22,