From 1f402ebbe878b1cca6d481b3fbabca7d78128875 Mon Sep 17 00:00:00 2001 From: "Michael W. Hudson" Date: Fri, 5 Apr 2002 15:28:31 +0000 Subject: backport loewis' checkin of revision 1.6 of turtle.py Patch #536117: Typo in turtle.py. 2.2.2 candidate. --- Lib/lib-tk/turtle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/lib-tk/turtle.py b/Lib/lib-tk/turtle.py index d5b445a..82dd759 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", -- cgit v0.12