diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-06-30 20:09:24 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-06-30 20:09:24 (GMT) |
commit | f5ac57dc05818e4fe2ff5118680fe136937d768e (patch) | |
tree | 28c5be50f2bc8a0cdc6d77a61bf0bb079461c642 /Lib/turtledemo/minimal_hanoi.py | |
parent | 98b6391fd4b27485b17c068d6f85a00d3f7c5ddc (diff) | |
download | cpython-f5ac57dc05818e4fe2ff5118680fe136937d768e.zip cpython-f5ac57dc05818e4fe2ff5118680fe136937d768e.tar.gz cpython-f5ac57dc05818e4fe2ff5118680fe136937d768e.tar.bz2 |
Issue #21882: In turtle demos, remove module scope gui and sys calls by
either deleting or moving to the module's main function.
Diffstat (limited to 'Lib/turtledemo/minimal_hanoi.py')
-rwxr-xr-x | Lib/turtledemo/minimal_hanoi.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/turtledemo/minimal_hanoi.py b/Lib/turtledemo/minimal_hanoi.py index 5e9c27b..4a432f2 100755 --- a/Lib/turtledemo/minimal_hanoi.py +++ b/Lib/turtledemo/minimal_hanoi.py @@ -18,7 +18,6 @@ stretched to rectangles by shapesize() --------------------------------------- """ from turtle import * -from turtle import Terminator # not in __all__ class Disc(Turtle): def __init__(self, n): |