summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-08-12 10:59:11 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-08-12 10:59:11 (GMT)
commit320a1c0ff715b6c04034722393efe510973430ee (patch)
tree6f9d2e40433afd332a4a9e4c26f2136394ffc8ac /Misc
parent6f2017076293f0e1ea807260434053a58be6667b (diff)
downloadcpython-320a1c0ff715b6c04034722393efe510973430ee.zip
cpython-320a1c0ff715b6c04034722393efe510973430ee.tar.gz
cpython-320a1c0ff715b6c04034722393efe510973430ee.tar.bz2
Issue #21448: Fixed FeedParser feed() to avoid O(N**2) behavior when parsing long line.
Original patch by Raymond Hettinger.
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 45bbe6b..1c87874 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,6 +27,9 @@ Core and Builtins
Library
-------
+- Issue #21448: Changed FeedParser feed() to avoid O(N**2) behavior when
+ parsing long line. Original patch by Raymond Hettinger.
+
- Issue #17923: glob() patterns ending with a slash no longer match non-dirs on
AIX. Based on patch by Delhallt.