summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-04-07 16:09:01 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-04-07 16:09:01 (GMT)
commit1515450440f901bdb15e1ad0211a498f54053c3f (patch)
tree9baa8cb78832d8b816ef2bb05120f425cbae22db /Misc
parent43a1bed3d21605081581f7f3eb8a731cd71ad51e (diff)
downloadcpython-1515450440f901bdb15e1ad0211a498f54053c3f.zip
cpython-1515450440f901bdb15e1ad0211a498f54053c3f.tar.gz
cpython-1515450440f901bdb15e1ad0211a498f54053c3f.tar.bz2
Issue #23411: Added DefragResult, ParseResult, SplitResult, DefragResultBytes,
ParseResultBytes, and SplitResultBytes to urllib.parse.__all__. Patch by Martin Panter.
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 5093208..91cc87c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -19,6 +19,10 @@ Core and Builtins
Library
-------
+- Issue #23411: Added DefragResult, ParseResult, SplitResult, DefragResultBytes,
+ ParseResultBytes, and SplitResultBytes to urllib.parse.__all__.
+ Patch by Martin Panter.
+
- Issue #23881: urllib.request.ftpwrapper constructor now closes the socket if
the FTP connection failed to fix a ResourceWarning.