summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-05-24 13:54:34 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2012-05-24 13:54:34 (GMT)
commit37484dc324b442d1fdab10f05f657cef80845279 (patch)
tree97a52c7235afcb348b7d9d614402a187fe108c18 /Misc
parentcd8799f077d236a06a86a9cf707de2a246fb800d (diff)
downloadcpython-37484dc324b442d1fdab10f05f657cef80845279.zip
cpython-37484dc324b442d1fdab10f05f657cef80845279.tar.gz
cpython-37484dc324b442d1fdab10f05f657cef80845279.tar.bz2
Issue #14036: return None when port in urlparse cross 65535
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 e091706..943f9f8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -64,6 +64,9 @@ Core and Builtins
Library
-------
+- Issue #14036: Add an additional check to validate that port in urlparse does
+ not go in illegal range and returns None.
+
- Issue #14888: Fix misbehaviour of the _md5 module when called on data
larger than 2**32 bytes.