changeset: 73762:37300a1df7d7 parent: 73760:5243752e19aa parent: 73761:150e096095e5 user: Antoine Pitrou date: Sat Nov 26 22:02:29 2011 +0100 files: Lib/test/test_cmd_line.py Misc/NEWS Python/pythonrun.c description: Issue #13444: When stdout has been closed explicitly, we should not attempt to flush it at shutdown and print an error. This also adds a test for issue #5319, whose resolution introduced the issue. diff -r 5243752e19aa -r 37300a1df7d7 Lib/test/test_cmd_line.py --- a/Lib/test/test_cmd_line.py Sat Nov 26 11:39:49 2011 -0600 +++ b/Lib/test/test_cmd_line.py Sat Nov 26 22:02:29 2011 +0100 @@ -266,6 +266,25 @@ self.assertRegex(err.decode('ascii', 'ignore'), 'SyntaxError') self.assertEqual(b'', out) + def test_stdout_flush_at_shutdown(self): + # Issue #5319: if stdout.flush() fails at shutdown, an error should + # be printed out. + code = """if 1: + import os, sys + sys.stdout.write('x') + os.close(sys.stdout.fileno())""" + rc, out, err = assert_python_ok('-c', code) + self.assertEqual(b'', out) + self.assertRegex(err.decode('ascii', 'ignore'), + 'Exception OSError: .* ignored') + + def test_closed_stdout(self): + # Issue #13444: if stdout has been explicitly closed, we should + # not attempt to flush it at shutdown. + code = "import sys; sys.stdout.close()" + rc, out, err = assert_python_ok('-c', code) + self.assertEqual(b'', err) + def test_main(): test.support.run_unittest(CmdLineTest) diff -r 5243752e19aa -r 37300a1df7d7 Misc/NEWS --- a/Misc/NEWS Sat Nov 26 11:39:49 2011 -0600 +++ b/Misc/NEWS Sat Nov 26 22:02:29 2011 +0100 @@ -395,6 +395,9 @@ Library ------- +- Issue #13444: When stdout has been closed explicitly, we should not attempt + to flush it at shutdown and print an error. + - Issue #12567: The curses module uses Unicode functions for Unicode arguments when it is linked to the ncurses library. It encodes also Unicode strings to the locale encoding instead of UTF-8. diff -r 5243752e19aa -r 37300a1df7d7 Python/pythonrun.c --- a/Python/pythonrun.c Sat Nov 26 11:39:49 2011 -0600 +++ b/Python/pythonrun.c Sat Nov 26 22:02:29 2011 +0100 @@ -348,6 +348,22 @@ /* Flush stdout and stderr */ +static int +file_is_closed(PyObject *fobj) +{ + int r; + PyObject *tmp = PyObject_GetAttrString(fobj, "closed"); + if (tmp == NULL) { + PyErr_Clear(); + return 0; + } + r = PyObject_IsTrue(tmp); + Py_DECREF(tmp); + if (r < 0) + PyErr_Clear(); + return r > 0; +} + static void flush_std_files(void) { @@ -356,7 +372,7 @@ PyObject *tmp; _Py_IDENTIFIER(flush); - if (fout != NULL && fout != Py_None) { + if (fout != NULL && fout != Py_None && !file_is_closed(fout)) { tmp = _PyObject_CallMethodId(fout, &PyId_flush, ""); if (tmp == NULL) PyErr_WriteUnraisable(fout); @@ -364,7 +380,7 @@ Py_DECREF(tmp); } - if (ferr != NULL && ferr != Py_None) { + if (ferr != NULL && ferr != Py_None && !file_is_closed(ferr)) { tmp = _PyObject_CallMethodId(ferr, &PyId_flush, ""); if (tmp == NULL) PyErr_Clear();