diff options
author | Michael W. Hudson <mwh@python.net> | 2002-04-05 15:28:31 +0000 |
---|---|---|
committer | Michael W. Hudson <mwh@python.net> | 2002-04-05 15:28:31 +0000 |
commit | 1f402ebbe878b1cca6d481b3fbabca7d78128875 (patch) | |
tree | 2fe891b8d3efb6ff06b0c9d7aa0f960f144d09a8 | |
parent | backport loewis' checkin of (diff) | |
download | cpython-1f402ebbe878b1cca6d481b3fbabca7d78128875.tar.gz cpython-1f402ebbe878b1cca6d481b3fbabca7d78128875.tar.bz2 cpython-1f402ebbe878b1cca6d481b3fbabca7d78128875.zip |
backport loewis' checkin of
revision 1.6 of turtle.py
Patch #536117: Typo in turtle.py.
2.2.2 candidate.
-rw-r--r-- | Lib/lib-tk/turtle.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib-tk/turtle.py b/Lib/lib-tk/turtle.py index d5b445a9e26..82dd759231a 100644 --- a/Lib/lib-tk/turtle.py +++ b/Lib/lib-tk/turtle.py @@ -259,7 +259,7 @@ class RawPen: dx = distance * cos(self._angle*self._invradian) dy = distance * sin(self._angle*self._invradian) self._delete_turtle() - self._arrow = _canvas.create_line(x-dx,y+dy,x,y, + self._arrow = self._canvas.create_line(x-dx,y+dy,x,y, width=self._width, arrow="last", capstyle="round", |