Re: [sympy] Long doctest output

2012-03-19 Thread Aaron Meurer
Also consider pretty printing the output. If you use unicode, the output will be shorter because all the greek letters will be reduced to single characters. In this case, even the ascii pretty printing is shorter, because the fractions are stacked on top of each other. And regardless, it will be m

Re: [sympy] Long doctest output

2012-03-19 Thread Alexey U. Gudchenko
19.03.2012 20:36, Matthew Rocklin пишет: > In pull 1047 we have an issue > where the doctests produce very long results i.e. > > Lambda(_x, ((alpha/_x + 2*beta*log(_x/sigma)/_x)*exp(-alpha*log(_x/sigma) - > beta*log(_x/sigma)**2)) > > These span beyond

[sympy] Long doctest output

2012-03-19 Thread Matthew Rocklin
In pull 1047 we have an issue where the doctests produce very long results i.e. Lambda(_x, ((alpha/_x + 2*beta*log(_x/sigma)/_x)*exp(-alpha*log(_x/sigma) - beta*log(_x/sigma)**2)) These span beyond 80 characters. What is the appropriate response for this