summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-05-11 11:42:17 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-05-11 11:42:17 (GMT)
commit9845c7ebc5cf5af495123701664f275562f45243 (patch)
treec0c52f85ae3cd6fb4862b34f74cc213d4d610626 /Misc
parent3d1bc608a842b375eb7921d57e417f2dfaa5b71e (diff)
downloadcpython-9845c7ebc5cf5af495123701664f275562f45243.zip
cpython-9845c7ebc5cf5af495123701664f275562f45243.tar.gz
cpython-9845c7ebc5cf5af495123701664f275562f45243.tar.bz2
Issue #21425: Fix flushing of standard streams in the interactive interpreter.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 4 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d0d9012..3c2ead0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -3,13 +3,16 @@ Python News
+++++++++++
What's New in Python 3.4.1?
-==========================
+===========================
Release date: TBA
Core and Builtins
-----------------
+- Issue #21425: Fix flushing of standard streams in the interactive
+ interpreter.
+
- Issue #21435: In rare cases, when running finalizers on objects in cyclic
trash a bad pointer dereference could occur due to a subtle flaw in
internal iteration logic.