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

Method _delete

Lib/turtle.py:549–553  ·  view source on GitHub ↗

Delete graphics item from canvas. If item is"all" delete all graphics items.

(self, item)

Source from the content-addressed store, hash-verified

547 self.cv.tag_raise(lineitem)
548
549 def _delete(self, item):
550 """Delete graphics item from canvas.
551 If item is"all" delete all graphics items.
552 """
553 self.cv.delete(item)
554
555 def _update(self):
556 """Redraw graphics items on canvas

Callers 6

clearMethod · 0.45
_setshapeMethod · 0.45
_clearMethod · 0.45
_clearstampMethod · 0.45
_undogotoMethod · 0.45
_undoMethod · 0.45

Calls 1

deleteMethod · 0.45

Tested by

no test coverage detected