MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / _delay

Method _delay

Python/Turtle.py:461–463  ·  view source on GitHub ↗

Delay subsequent canvas actions for delay ms.

(self, delay)

Source from the content-addressed store, hash-verified

459 self.cv.update()
460
461 def _delay(self, delay):
462 """Delay subsequent canvas actions for delay ms."""
463 self.cv.after(delay)
464
465 def _iscolorstring(self, color):
466 """Check if the string color is a legal Tkinter color string.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected