Skip to content

Commit b33ae93

Browse files
committed
Make code execution interruptible again.
1 parent f84ece8 commit b33ae93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bpython/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -893,7 +893,7 @@ def prompt(self, more):
893893

894894
def push(self, s, insert_into_history=True):
895895
# curses.raw(True) prevents C-c from causing a SIGINT
896-
curses.raw(True)
896+
curses.raw(False)
897897
try:
898898
return Repl.push(self, s, insert_into_history)
899899
finally:

0 commit comments

Comments
 (0)