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

Method handle_move_end

Lib/getpass.py:317–320  ·  view source on GitHub ↗

Move cursor to end (Ctrl+E).

(self)

Source from the content-addressed store, hash-verified

315 self.refresh_display()
316
317 def handle_move_end(self):
318 """Move cursor to end (Ctrl+E)."""
319 self.cursor_pos = len(self.password)
320 self.refresh_display()
321
322 def handle_erase(self):
323 """Delete character before cursor (Backspace/DEL)."""

Callers

nothing calls this directly

Calls 1

refresh_displayMethod · 0.95

Tested by

no test coverage detected