diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-08-12 10:58:23 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-08-12 10:58:23 (GMT) |
commit | bc6f8de73badfbc1a0662cdf0b3c7539ebdb7bf6 (patch) | |
tree | d8b61cf5d9b0f9fc68ac4f3fb0851715cc4f9347 /Misc | |
parent | 3fdffc9fb69b8c2893c833c494132b00c26f5e8f (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |