summaryrefslogtreecommitdiff
path: root/Lib/turtle.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2014-06-30 16:09:24 -0400
committerTerry Jan Reedy <tjreedy@udel.edu>2014-06-30 16:09:24 -0400
commitf5ac57dc05818e4fe2ff5118680fe136937d768e (patch)
tree28c5be50f2bc8a0cdc6d77a61bf0bb079461c642 /Lib/turtle.py
parent98b6391fd4b27485b17c068d6f85a00d3f7c5ddc (diff)
downloadcpython-git-f5ac57dc05818e4fe2ff5118680fe136937d768e.tar.gz
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/turtle.py')
-rw-r--r--Lib/turtle.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/turtle.py b/Lib/turtle.py
index 3d1d3b060d..465d6e065d 100644
--- a/Lib/turtle.py
+++ b/Lib/turtle.py
@@ -140,7 +140,7 @@ _tg_turtle_functions = ['back', 'backward', 'begin_fill', 'begin_poly', 'bk',
_tg_utilities = ['write_docstringdict', 'done']
__all__ = (_tg_classes + _tg_screen_functions + _tg_turtle_functions +
- _tg_utilities) # + _math_functions)
+ _tg_utilities + ['Terminator']) # + _math_functions)
_alias_list = ['addshape', 'backward', 'bk', 'fd', 'ht', 'lt', 'pd', 'pos',
'pu', 'rt', 'seth', 'setpos', 'setposition', 'st',