mirror of https://github.com/python/cpython
The previous fix was still broken; the Py_END_ALLOW_THREADS macro was
never executed because of a return statement. Sigh.
This commit is contained in:
parent
4d1874093f
commit
80c7bcf667
|
@ -140,10 +140,12 @@ char *
|
|||
PyOS_Readline(prompt)
|
||||
char *prompt;
|
||||
{
|
||||
char *rv;
|
||||
if (PyOS_ReadlineFunctionPointer == NULL) {
|
||||
PyOS_ReadlineFunctionPointer = PyOS_StdioReadline;
|
||||
}
|
||||
Py_BEGIN_ALLOW_THREADS
|
||||
return (*PyOS_ReadlineFunctionPointer)(prompt);
|
||||
rv = (*PyOS_ReadlineFunctionPointer)(prompt);
|
||||
Py_END_ALLOW_THREADS
|
||||
return rv;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue