summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-05-19 14:15:19 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-05-19 14:15:19 (GMT)
commit6709b7d5d1b8643856a3e0f864c0657a927f427a (patch)
tree56ca8f96edcb3a3e158e42c7003efdae583f1a11 /Misc/NEWS
parent5fa4a896016e8a265b6afee64c61a1083c6ffa47 (diff)
downloadcpython-6709b7d5d1b8643856a3e0f864c0657a927f427a.zip
cpython-6709b7d5d1b8643856a3e0f864c0657a927f427a.tar.gz
cpython-6709b7d5d1b8643856a3e0f864c0657a927f427a.tar.bz2
#14072: Fix parsing of tel URIs in urlparse by making the check for ports stricter.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4cbea24..ead1bbf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -66,6 +66,9 @@ Library
- Issue #14721: Send the correct 'Content-length: 0' header when the body is an
empty string ''. Initial Patch contributed by Arve Knudsen.
+- Issue #14072: Fix parsing of 'tel' URIs in urlparse by making the check for
+ ports stricter.
+
- Issue #9374: Generic parsing of query and fragment portions of url for any
scheme. Supported both by RFC3986 and RFC2396.