diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2005-01-23 09:41:49 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2005-01-23 09:41:49 (GMT) |
commit | 8e3ca8af2641a47a83f02135a77193b0b80c545e (patch) | |
tree | efdc5c38d772e0873b0c4315d7ed2647263cf0ab /Misc | |
parent | c300175547ced0af17857a29462b0f9294e8c31c (diff) | |
download | cpython-8e3ca8af2641a47a83f02135a77193b0b80c545e.zip cpython-8e3ca8af2641a47a83f02135a77193b0b80c545e.tar.gz cpython-8e3ca8af2641a47a83f02135a77193b0b80c545e.tar.bz2 |
Flush std{in,out,err} before closing it. Fixes #1074011.
Will backport to 2.4 and 2.3.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 2.5 alpha 1? 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(). |