Comment #11 on issue 1587 by mattpap: Polynomials docs http://code.google.com/p/sympy/issues/detail?id=1587
btw. Why all documentation examples are executed in one namespace? This example in statistics fails when I run bin/doctest doc, but doesn't for bin/doctest doc/src/modules/statistics.txt, because earlier in wester.txt I set Basic.keep_sign = True (when caching is enabled we can't set keep_sing multiple times). Temporarily fixed this by added Basic.keep_sign = True to statistics.txt.
Also I got annoyed with pretty printer's approach to printing rational numbers in Add, so I improved this in 066d5d3dafdbf014eb53a7965edbdcb6650bafdb in polys12, e.g.:
In [1]: S(1)/2 + 1/x Out[1]: 1 1 ─ + ─ 2 x In [2]: S(1)/2 + x Out[2]: 1/2 + x -- You received this message because you are subscribed to the Google Groups "sympy-issues" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sympy-issues?hl=en.
