summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2012-01-13 18:41:25 (GMT)
committerGeorg Brandl <georg@python.org>2012-01-13 18:41:25 (GMT)
commitbc3b682923a22b89b0f5462ee2e807a4cc4ea81d (patch)
treed9842f6dfe5185783fe797d62c2e8e43efdff593 /Misc/NEWS
parent5136ac0ca21a05691978df8d0650f902c8ca3463 (diff)
downloadcpython-bc3b682923a22b89b0f5462ee2e807a4cc4ea81d.zip
cpython-bc3b682923a22b89b0f5462ee2e807a4cc4ea81d.tar.gz
cpython-bc3b682923a22b89b0f5462ee2e807a4cc4ea81d.tar.bz2
Closes #13761: add a "flush" keyword argument to print().
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 fddf5d4..d3930ed 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.3 Alpha 1?
Core and Builtins
-----------------
+- Issue #13761: Add a "flush" keyword argument to the print() function,
+ used to ensure flushing the output stream.
+
- Issue #13645: pyc files now contain the size of the corresponding source
code, to avoid timestamp collisions (especially on filesystems with a low
timestamp resolution) when checking for freshness of the bytecode.