summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2005-01-23 09:41:49 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2005-01-23 09:41:49 (GMT)
commit8e3ca8af2641a47a83f02135a77193b0b80c545e (patch)
treeefdc5c38d772e0873b0c4315d7ed2647263cf0ab /Misc/NEWS
parentc300175547ced0af17857a29462b0f9294e8c31c (diff)
downloadcpython-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/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7753df5..4f41e44 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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().