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

Method _delay

Lib/turtle.py:560–562  ·  view source on GitHub ↗

Delay subsequent canvas actions for delay ms.

(self, delay)

Source from the content-addressed store, hash-verified

558 self.cv.update()
559
560 def _delay(self, delay):
561 """Delay subsequent canvas actions for delay ms."""
562 self.cv.after(delay)
563
564 def _iscolorstring(self, color):
565 """Check if the string color is a legal Tkinter color string.

Callers

nothing calls this directly

Calls 1

afterMethod · 0.80

Tested by

no test coverage detected