Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f527940

Browse files
committed
Merged revisions 80228 via svnmerge from
svn+ssh://[email protected]/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://[email protected]/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 ........ ................
1 parent ccee356 commit f527940

2 files changed

Lines changed: 7 additions & 0 deletions

File tree

Lib/ftplib.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,8 @@ def makeport(self):
296296
resp = self.sendport(host, port)
297297
else:
298298
resp = self.sendeprt(host, port)
299+
if self.timeout is not _GLOBAL_DEFAULT_TIMEOUT:
300+
sock.settimeout(self.timeout)
299301
return sock
300302

301303
def makepasv(self):
@@ -348,6 +350,8 @@ def ntransfercmd(self, cmd, rest=None):
348350
if resp[0] != '1':
349351
raise error_reply(resp)
350352
conn, sockaddr = sock.accept()
353+
if self.timeout is not _GLOBAL_DEFAULT_TIMEOUT:
354+
conn.settimeout(self.timeout)
351355
if resp[:3] == '150':
352356
# this is conditional in case we received a 125
353357
size = parse150(resp)

Misc/NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ Core and Builtins
3333
Library
3434
-------
3535

36+
- Issue #4814: timeout parameter is now applied also for connections resulting
37+
from PORT/EPRT commands.
38+
3639
- Issue #3817: ftplib.FTP.abort() method now considers 225 a valid response
3740
code as stated in RFC-959 at chapter 5.4.
3841

0 commit comments

Comments
 (0)