summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGiampaolo Rodola' <g.rodola@gmail.com>2012-12-17 13:20:27 (GMT)
committerGiampaolo Rodola' <g.rodola@gmail.com>2012-12-17 13:20:27 (GMT)
commitfc3278802c51bc8d56bc8a26cc9f95e4f6cfb5bd (patch)
treef4c0352003d557b7e69d16691807983389594977 /Misc
parentf635172c7222a6a6e1e2aa78c8ad987ec06cfded (diff)
downloadcpython-fc3278802c51bc8d56bc8a26cc9f95e4f6cfb5bd.zip
cpython-fc3278802c51bc8d56bc8a26cc9f95e4f6cfb5bd.tar.gz
cpython-fc3278802c51bc8d56bc8a26cc9f95e4f6cfb5bd.tar.bz2
Fix issue #16646: ftplib.FTP.makeport() might lose socket error details. (patch by Serhiy Storchaka)
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 9e172ca..2b50cbb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -179,6 +179,9 @@ Core and Builtins
Library
-------
+- Issue #16646: ftplib.FTP.makeport() might lose socket error details.
+ (patch by Serhiy Storchaka)
+
- Issue #16626: Fix infinite recursion in glob.glob() on Windows when the
pattern contains a wildcard in the drive or UNC path. Patch by Serhiy
Storchaka.