gh-119896: Fix CTRL-Z behavior in the new REPL on Windows (GH-122217)

This commit is contained in:
Dino Viehland 2024-07-30 05:03:52 -07:00 committed by GitHub
parent d27a53fc02
commit d1a1bca1f0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 14 additions and 4 deletions

View file

@ -76,6 +76,7 @@ REPL_COMMANDS = {
"copyright": _sitebuiltins._Printer('copyright', sys.copyright),
"help": "help",
"clear": _clear_screen,
"\x1a": _sitebuiltins.Quitter('\x1a', ''),
}