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

Method handle_move_start

Lib/getpass.py:312–315  ·  view source on GitHub ↗

Move cursor to beginning (Ctrl+A).

(self)

Source from the content-addressed store, hash-verified

310 return char == self.ctrl['EOF']
311
312 def handle_move_start(self):
313 """Move cursor to beginning (Ctrl+A)."""
314 self.cursor_pos = 0
315 self.refresh_display()
316
317 def handle_move_end(self):
318 """Move cursor to end (Ctrl+E)."""

Callers

nothing calls this directly

Calls 1

refresh_displayMethod · 0.95

Tested by

no test coverage detected