diff options
Diffstat (limited to 'Lib/lib-tk/turtle.py')
-rw-r--r-- | Lib/lib-tk/turtle.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/lib-tk/turtle.py b/Lib/lib-tk/turtle.py index 7c956ee..4e73f52 100644 --- a/Lib/lib-tk/turtle.py +++ b/Lib/lib-tk/turtle.py @@ -108,7 +108,7 @@ class RawPen: def write(self, arg, move=0): x, y = start = self._position x = x-1 # correction -- calibrated for Windows - item = self._canvas.create_text(x, y, + item = self._canvas.create_text(x, y, text=str(arg), anchor="sw", fill=self._color) self._items.append(item) @@ -258,7 +258,7 @@ class Pen(RawPen): _root = None _canvas = None root.destroy() - + def _getpen(): global _pen |