Home
last modified time | relevance | path

Searched refs:retrbinary (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Lib/
Dftplib.py399 def retrbinary(self, cmd, callback, blocksize=8192, rest=None): member in FTP
716 def retrbinary(self, cmd, callback, blocksize=8192, rest=None): member in FTP_TLS
1072 ftp.retrbinary('RETR ' + file, \
/external/python/cpython2/Lib/test/
Dtest_ftplib.py506 self.client.retrbinary('retr', received.append)
512 self.client.retrbinary('retr', received.append, rest=rest)
622 self.client.retrbinary('retr', received.append)
/external/python/cpython2/Doc/library/
Dftplib.rst37 >>> ftp.retrbinary('RETR README', open('README', 'wb').write)
222 .. method:: FTP.retrbinary(command, callback[, maxblocksize[, rest]])
237 should be an appropriate ``RETR`` command (see :meth:`retrbinary`) or a
/external/python/cpython2/Misc/
DHISTORY9097 ftplib -- ntransfercmd(), transfercmd(), and retrbinary() all now
12486 - Provide default blocksize for retrbinary in ftplib.py (Skip