MCPcopy Create free account
hub / github.com/python/cpython / redo

Method redo

Lib/idlelib/undo.py:324–326  ·  view source on GitHub ↗
(self, text)

Source from the content-addressed store, hash-verified

322 return self.cmds[i]
323
324 def redo(self, text):
325 for cmd in self.cmds:
326 cmd.redo(text)
327
328 def undo(self, text):
329 cmds = self.cmds[:]

Callers

nothing calls this directly

Calls 1

redoMethod · 0.45

Tested by

no test coverage detected