[issue21812] turtle.shapetransform doesn't transform the turtle on the first call

Raymond Hettinger report at bugs.python.org
Sun Jun 22 09:54:43 CEST 2014


Raymond Hettinger added the comment:

The looks good.  Please revise the patch to isolate the actual change in logic and not confound it with PEP-8 nits which make the patch harder to review.

Also, please be careful with breaking lines.  In the following part of the diff, the space after "matrix:" is lost (Hazards like this are one reason to avoid cosmetic changes).

-            raise TurtleGraphicsError("Bad shape transform matrix: must not be singular")
+            raise TurtleGraphicsError(("Bad shape transform matrix:"
+                                       "must not be singular")

----------
assignee:  -> rhettinger
nosy: +rhettinger

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue21812>
_______________________________________


More information about the Python-bugs-list mailing list