summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2008-08-15 21:03:21 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2008-08-15 21:03:21 (GMT)
commitb90a8be96f8b6725fd207c74cb6d3211bf9bd684 (patch)
treed9c13566b3c28b64bc494fba4b5672d4adc490ff /Misc
parenta174a37321aec46cbabb1f1296177cf23087bd56 (diff)
downloadcpython-b90a8be96f8b6725fd207c74cb6d3211bf9bd684.zip
cpython-b90a8be96f8b6725fd207c74cb6d3211bf9bd684.tar.gz
cpython-b90a8be96f8b6725fd207c74cb6d3211bf9bd684.tar.bz2
#2676: email/message.py [Message.get_content_type]: Trivial regex hangs on pathological input
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 70a06ff..de572d1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -48,6 +48,10 @@ Core and Builtins
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.