mirror of
https://github.com/python/cpython.git
synced 2025-07-09 20:35:26 +00:00
Issue #4653: fix typo in flush_std_files()
Don't call sys.stderr.flush() if sys has no stderr attribute or if sys.stderr==None.
This commit is contained in:
parent
84df1e6c21
commit
9467b212f5
1 changed files with 1 additions and 1 deletions
|
@ -334,7 +334,7 @@ flush_std_files(void)
|
|||
Py_DECREF(tmp);
|
||||
}
|
||||
|
||||
if (ferr != NULL || ferr != Py_None) {
|
||||
if (ferr != NULL && ferr != Py_None) {
|
||||
tmp = PyObject_CallMethod(ferr, "flush", "");
|
||||
if (tmp == NULL)
|
||||
PyErr_Clear();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue