Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Lib/turtle.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
_tg_utilities = ['write_docstringdict', 'done']

__all__ = (_tg_classes + _tg_screen_functions + _tg_turtle_functions +
_tg_utilities + ['Terminator']) # + _math_functions)
_tg_utilities) # + _math_functions)
Comment thread
furkanonder marked this conversation as resolved.

_alias_list = ['addshape', 'backward', 'bk', 'fd', 'ht', 'lt', 'pd', 'pos',
'pu', 'rt', 'seth', 'setpos', 'setposition', 'st',
Expand Down Expand Up @@ -1289,7 +1289,6 @@ def _incrementudc(self):
"""Increment update counter."""
if not TurtleScreen._RUNNING:
TurtleScreen._RUNNING = True
raise Terminator
Comment thread
furkanonder marked this conversation as resolved.
if self._tracing > 0:
self._updatecounter += 1
self._updatecounter %= self._tracing
Expand Down