commit | 8e3ca8af2641a47a83f02135a77193b0b80c545e | [log] [tgz] |
---|---|---|
author | Martin v. Löwis <martin@v.loewis.de> | Sun Jan 23 09:41:49 2005 +0000 |
committer | Martin v. Löwis <martin@v.loewis.de> | Sun Jan 23 09:41:49 2005 +0000 |
tree | efdc5c38d772e0873b0c4315d7ed2647263cf0ab | |
parent | c300175547ced0af17857a29462b0f9294e8c31c [diff] [blame] |
Flush std{in,out,err} before closing it. Fixes #1074011. Will backport to 2.4 and 2.3.
diff --git a/Misc/NEWS b/Misc/NEWS index 7753df5..4f41e44 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Core and builtins ----------------- +- Bug #1074011: closing sys.std{in,out,err} now causes a flush() and + an ferror() call. + - min() and max() now support key= arguments with the same meaning as in list.sort().