summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-03-24 16:32:27 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-03-24 16:32:27 (GMT)
commit72bd327db0b26e542a327449bef77bd2bc059da4 (patch)
treeafd02416b97da57618656c464f292cda959453cd /Misc
parentb365a06a8444c90e4c79d4bff1c58cd9dd793569 (diff)
downloadcpython-72bd327db0b26e542a327449bef77bd2bc059da4.zip
cpython-72bd327db0b26e542a327449bef77bd2bc059da4.tar.gz
cpython-72bd327db0b26e542a327449bef77bd2bc059da4.tar.bz2
Issue #22687: Fixed some corner cases in breaking words in tetxtwrap.
Got rid of quadratic complexity in breaking long words.
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 7d888a2..3110aad 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -26,6 +26,9 @@ Core and Builtins
Library
-------
+- Issue #22687: Fixed some corner cases in breaking words in tetxtwrap.
+ Got rid of quadratic complexity in breaking long words.
+
- Issue #20289: The copy module now uses pickle protocol 4 (PEP 3154) and
supports copying of instances of classes whose __new__ method takes
keyword-only arguments.