diff options
author | 2014-08-12 14:00:29 +0300 | |
---|---|---|
committer | 2014-08-12 14:00:29 +0300 | |
commit | 1e133cab39a618e341e30e0ed7f266f238e73826 (patch) | |
tree | 7234fd344af170eb200ad49e2aa6153939eedff1 /Misc/NEWS | |
parent | Issue #17923: glob() patterns ending with a slash no longer match non-dirs on (diff) | |
parent | Issue #21448: Fixed FeedParser feed() to avoid O(N**2) behavior when parsing ... (diff) | |
download | cpython-1e133cab39a618e341e30e0ed7f266f238e73826.tar.gz cpython-1e133cab39a618e341e30e0ed7f266f238e73826.tar.bz2 cpython-1e133cab39a618e341e30e0ed7f266f238e73826.zip |
Issue #21448: Fixed FeedParser feed() to avoid O(N**2) behavior when parsing long line.
Original patch by Raymond Hettinger.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS index 4fe135c9c1d..aa7479696db 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -115,6 +115,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. |