diff options
| author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-08-27 05:43:50 (GMT) |
|---|---|---|
| committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-08-27 05:43:50 (GMT) |
| commit | 8450c5331548e396d31639776c91e191a5f3147e (patch) | |
| tree | 5a904440ebac1787feae7ef3fa13aa7a00707560 /Lib/turtledemo/nim.py | |
| parent | cf26115651c4c5cfc92776fd7204d7a218241e88 (diff) | |
| download | cpython-8450c5331548e396d31639776c91e191a5f3147e.zip cpython-8450c5331548e396d31639776c91e191a5f3147e.tar.gz cpython-8450c5331548e396d31639776c91e191a5f3147e.tar.bz2 | |
Issue #22065: Menus, unlike Menubottons, do not have a state option.
Since a new demo can now be loaded while one is running,
adjust loadfile to do the same cleanup as stopIt.
Diffstat (limited to 'Lib/turtledemo/nim.py')
| -rw-r--r-- | Lib/turtledemo/nim.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/turtledemo/nim.py b/Lib/turtledemo/nim.py index 25ff312..9ae6cc5 100644 --- a/Lib/turtledemo/nim.py +++ b/Lib/turtledemo/nim.py @@ -219,7 +219,7 @@ def main(): mainscreen.mode("standard") mainscreen.setup(SCREENWIDTH, SCREENHEIGHT) nim = Nim(mainscreen) - return "EVENTLOOP!" + return "EVENTLOOP" if __name__ == "__main__": main() |
