From: Senthil Kumaran Date: Thu, 24 May 2012 13:57:38 +0000 (+0800) Subject: Issue #14036: return None when port in urlparse cross 65535 X-Git-Tag: v3.3.0a4~85 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4715ca560004b6df0d573084a07a9355b7ac189f;p=python Issue #14036: return None when port in urlparse cross 65535 --- 4715ca560004b6df0d573084a07a9355b7ac189f diff --cc Misc/NEWS index f0e1a55834,d9b8b5cf84..ee7deef962 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -42,14 -67,11 +42,17 @@@ Core and Builtin Library ------- + - Issue #14036: Add an additional check to validate that port in urlparse does + not go in illegal range and returns None. + +- Issue #14862: Add missing names to os.__all__ + - Issue #14875: Use float('inf') instead of float('1e66666') in the json module. +- Issue #13585: Added contextlib.ExitStack + +- PEP 3144, Issue #14814: Added the ipaddress module + - Issue #14426: Correct the Date format in Expires attribute of Set-Cookie Header in Cookie.py.