summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorFacundo Batista <facundobatista@gmail.com>2007-06-06 15:13:37 (GMT)
committerFacundo Batista <facundobatista@gmail.com>2007-06-06 15:13:37 (GMT)
commit92493120209565d6db37fe97c5bdb2f14d6a9c25 (patch)
tree2d6fc4c161435597e7937de186d953d5b85b777c /Misc
parent50b79ce8e6629eb995a0b2091efebe9a5d458273 (diff)
downloadcpython-92493120209565d6db37fe97c5bdb2f14d6a9c25.zip
cpython-92493120209565d6db37fe97c5bdb2f14d6a9c25.tar.gz
cpython-92493120209565d6db37fe97c5bdb2f14d6a9c25.tar.bz2
FTP.ntransfercmd method now uses create_connection when passive,
using the timeout received in connection time.
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 a477fb8..a627765 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -222,6 +222,10 @@ Core and builtins
Library
-------
+- In ftplib, the FTP.ntransfercmd method, when in passive mode, now uses
+ the socket.create_connection function, using the timeout specified at
+ connection time.
+
- Bug #1728403: Fix a bug that CJKCodecs StreamReader hangs when it
reads a file that ends with incomplete sequence and sizehint argument
for .read() is specified.