summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-05-19 14:12:17 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-05-19 14:12:17 (GMT)
commit6d9c1b1617b30ee24eaa358f4142706148d21922 (patch)
treeb0d0a64a88c1a77eda61fbaf79e2a6036a922c64 /Misc
parent618802d55e19c1f2da28c9409256a7f2fbf59e99 (diff)
downloadcpython-6d9c1b1617b30ee24eaa358f4142706148d21922.zip
cpython-6d9c1b1617b30ee24eaa358f4142706148d21922.tar.gz
cpython-6d9c1b1617b30ee24eaa358f4142706148d21922.tar.bz2
#14072: Fix parsing of tel URIs in urlparse by making the check for ports stricter.
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 503e2f8..be55960 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -63,6 +63,9 @@ Library
- Issue #14721: Send proper header, Content-length: 0 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.