Re: [PATCH] Added Curve entity to sympy.geometry

2008-11-28 Thread Ondrej Certik
I merged this patch with yours: diff --git a/sympy/geometry/curve.py b/sympy/geometry/curve.py index 18dc583..c1cd010 100644 --- a/sympy/geometry/curve.py +++ b/sympy/geometry/curve.py @@ -8,6 +8,8 @@ class Curve(GeometryEntity): Example: + from sympy import sin, cos,

[PATCH] bin/test: wrap lines correctly in wider terminals

2008-11-28 Thread Ondrej Certik
Currently, the default width is 80 (e.g. PyTestReporter.write(width=80)) and if the terminal is wider, the text doesn't automatically wrap, so it looks ugly --- the [OK] are wrapped, but . are not. This patch fixes it by implementing line wrapping. --- sympy/utilities/runtests.py |6 ++