MCPcopy Index your code
hub / github.com/python/cpython / _incrementudc

Method _incrementudc

Lib/turtle.py:1316–1323  ·  view source on GitHub ↗

Increment update counter.

(self)

Source from the content-addressed store, hash-verified

1314 self.tracer(tracer)
1315
1316 def _incrementudc(self):
1317 """Increment update counter."""
1318 if not TurtleScreen._RUNNING:
1319 TurtleScreen._RUNNING = True
1320 raise Terminator
1321 if self._tracing > 0:
1322 self._updatecounter += 1
1323 self._updatecounter %= self._tracing
1324
1325 def update(self):
1326 """Perform a TurtleScreen update.

Callers 1

_update_dataMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected