summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-10-28 19:39:36 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-10-28 19:39:36 (GMT)
commitea4cb63e68d96697ff8eb9ea86da6158f27b95a2 (patch)
tree017471658ea2343cce55ac59a16926db4c0b60e1 /Misc/NEWS
parent68b6874f59d80c41785a4d4a6874be89ad08fcd5 (diff)
downloadcpython-ea4cb63e68d96697ff8eb9ea86da6158f27b95a2.zip
cpython-ea4cb63e68d96697ff8eb9ea86da6158f27b95a2.tar.gz
cpython-ea4cb63e68d96697ff8eb9ea86da6158f27b95a2.tar.bz2
Issue #21827: Fixed textwrap.dedent() for the case when largest common
whitespace is a substring of smallest leading whitespace. Based on patch by Robert Li.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7d673b2..3d4cbcb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -96,6 +96,10 @@ Core and Builtins
Library
-------
+- Issue #21827: Fixed textwrap.dedent() for the case when largest common
+ whitespace is a substring of smallest leading whitespace.
+ Based on patch by Robert Li.
+
- Issue #25471: Sockets returned from accept() shouldn't appear to be
nonblocking.