]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Merged revisions 80228 via svnmerge from
authorGiampaolo Rodolà <g.rodola@gmail.com>
Mon, 19 Apr 2010 22:10:56 +0000 (22:10 +0000)
committerGiampaolo Rodolà <g.rodola@gmail.com>
Mon, 19 Apr 2010 22:10:56 +0000 (22:10 +0000)
svn+ssh://pythondev@svn.python.org/python/branches/py3k

................
  r80228 | giampaolo.rodola | 2010-04-20 00:05:54 +0200 (mar, 20 apr 2010) | 9 lines

  Merged revisions 80226 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk

  ........
    r80226 | giampaolo.rodola | 2010-04-19 23:46:28 +0200 (lun, 19 apr 2010) | 1 line

    Fix Issue #4841: timeout is now applied for connections resulting from PORT/EPRT commands
  ........
................

Lib/ftplib.py
Misc/NEWS

index bcfa652a66ecf3a5635e4f6241b039c676a5bc20..ea91c1707c137dfcd6185facfc7e37786dfcb4cd 100644 (file)
@@ -296,6 +296,8 @@ class FTP:
             resp = self.sendport(host, port)
         else:
             resp = self.sendeprt(host, port)
+        if self.timeout is not _GLOBAL_DEFAULT_TIMEOUT:
+            sock.settimeout(self.timeout)
         return sock
 
     def makepasv(self):
@@ -348,6 +350,8 @@ class FTP:
             if resp[0] != '1':
                 raise error_reply(resp)
             conn, sockaddr = sock.accept()
+            if self.timeout is not _GLOBAL_DEFAULT_TIMEOUT:
+                conn.settimeout(self.timeout)
         if resp[:3] == '150':
             # this is conditional in case we received a 125
             size = parse150(resp)
index 085edc03e6fcfd50ccd26c8693f79ae5a2a8ad5f..8ae4a65e25fc597871a35bbf42e19efc5508ba25 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -33,6 +33,9 @@ Core and Builtins
 Library
 -------
 
+- Issue #4814: timeout parameter is now applied also for connections resulting
+  from PORT/EPRT commands.
+
 - Issue #3817: ftplib.FTP.abort() method now considers 225 a valid response
   code as stated in RFC-959 at chapter 5.4.