commit | b90a8be96f8b6725fd207c74cb6d3211bf9bd684 | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Fri Aug 15 21:03:21 2008 +0000 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Fri Aug 15 21:03:21 2008 +0000 |
tree | d9c13566b3c28b64bc494fba4b5672d4adc490ff | |
parent | a174a37321aec46cbabb1f1296177cf23087bd56 [diff] [blame] |
#2676: email/message.py [Message.get_content_type]: Trivial regex hangs on pathological input
diff --git a/Misc/NEWS b/Misc/NEWS index 70a06ff..de572d1 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -48,6 +48,10 @@ Library ------- +- Issue #2676: in the email package, content-type parsing was hanging on + pathological input because of quadratic or exponential behaviour of a + regular expression. + - Issue #3476: binary buffered reading through the new "io" library is now thread-safe.