summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-08-12 10:58:23 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-08-12 10:58:23 (GMT)
commitbc6f8de73badfbc1a0662cdf0b3c7539ebdb7bf6 (patch)
treed8b61cf5d9b0f9fc68ac4f3fb0851715cc4f9347 /Misc
parent3fdffc9fb69b8c2893c833c494132b00c26f5e8f (diff)
downloadcpython-bc6f8de73badfbc1a0662cdf0b3c7539ebdb7bf6.zip
cpython-bc6f8de73badfbc1a0662cdf0b3c7539ebdb7bf6.tar.gz
cpython-bc6f8de73badfbc1a0662cdf0b3c7539ebdb7bf6.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 fc88269..86deb58 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -19,6 +19,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.