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

Method page_up

Lib/idlelib/tree.py:476–478  ·  view source on GitHub ↗
(self, event)

Source from the content-addressed store, hash-verified

474 self.canvas.bind("<Alt-Key-2>", self.zoom_height)
475 self.canvas.focus_set()
476 def page_up(self, event):
477 self.canvas.yview_scroll(-1, "page")
478 return "break"
479 def page_down(self, event):
480 self.canvas.yview_scroll(1, "page")
481 return "break"

Callers

nothing calls this directly

Calls 1

yview_scrollMethod · 0.80

Tested by

no test coverage detected