Skip to content

Commit 6fe04a5

Browse files
committed
self.push(_c.to_bytes())
1 parent f430f31 commit 6fe04a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/_pyrepl/base_eventqueue.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def push(self, char: bytes) -> None:
9696
self.keymap = self.compiled_keymap
9797
self.insert(Event('key', '\033', bytearray(b'\033')))
9898
for _c in self.flush_buf()[1:]:
99-
self.push(_c)
99+
self.push(_c.to_bytes())
100100

101101
else:
102102
try:

0 commit comments

Comments
 (0)