Release interpreter lock around readline call in [raw_]input().
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 @@
 			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);