summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2011-10-18 10:20:07 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2011-10-18 10:20:07 (GMT)
commit6bfecd1271b305afcbe3f3f68980f89aa44e1910 (patch)
tree312101304000d2e3b7942ffa9fb2894002675bdd /Misc
parent67494f22243803422a91634945ae405c5a858939 (diff)
downloadcpython-6bfecd1271b305afcbe3f3f68980f89aa44e1910.zip
cpython-6bfecd1271b305afcbe3f3f68980f89aa44e1910.tar.gz
cpython-6bfecd1271b305afcbe3f3f68980f89aa44e1910.tar.bz2
#12448: smtplib now flushes stdout while running ``python -m smtplib``
in order to display the prompt correctly. Patch by Petri Lehtinen.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index fbba9b1..d610ff4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -47,6 +47,9 @@ Core and Builtins
Library
-------
+- Issue #12448: smtplib now flushes stdout while running ``python -m smtplib``
+ in order to display the prompt correctly.
+
- Issue #13194: zlib.compressobj().copy() and zlib.decompressobj().copy() are
now available on Windows.