summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Python/bltinmodule.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index 15cca17..f2839ac 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -1349,7 +1349,9 @@ builtin_raw_input(self, args)
po = NULL;
prompt = "";
}
+ Py_BEGIN_ALLOW_THREADS
s = PyOS_Readline(prompt);
+ Py_END_ALLOW_THREADS
Py_XDECREF(po);
if (s == NULL) {
PyErr_SetNone(PyExc_KeyboardInterrupt);