We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a3cd36 commit f63aa3eCopy full SHA for f63aa3e
bpython/curtsiesfrontend/repl.py
@@ -944,6 +944,10 @@ def compress_paste_event(paste_event):
944
event = paste_event.events[0]
945
if len(event) > 1:# basically "is there a special curses names for this key?"
946
return event
947
+ elif ord(event) < 0x20:
948
+ return event
949
+ elif event == '\x7f':
950
951
else:
952
return None
953
0 commit comments