Home
last modified time | relevance | path

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

/third_party/python/Lib/
Dftplib.py391 def transfercmd(self, cmd, rest=None): member in FTP
436 with self.transfercmd(cmd, rest) as conn:
462 with self.transfercmd(cmd) as conn, \
498 with self.transfercmd(cmd, rest) as conn:
524 with self.transfercmd(cmd) as conn:
/third_party/python/Doc/library/
Dftplib.rst266 :meth:`transfercmd` method.
296 *rest* means the same thing as in the :meth:`transfercmd` method.
311 .. method:: FTP.transfercmd(cmd, rest=None)
322 skipping over the initial bytes. Note however that the :meth:`transfercmd`
326 will be raised. If this happens, simply call :meth:`transfercmd` without a
332 Like :meth:`transfercmd`, but returns a tuple of the data connection and the
335 in :meth:`transfercmd`.
/third_party/python/Lib/test/
Dtest_ftplib.py803 with self.client.transfercmd('list') as sock:
939 with self.client.transfercmd('list') as sock:
947 with self.client.transfercmd('list') as sock:
957 with self.client.transfercmd('list') as sock:
995 with self.client.transfercmd('list') as sock:
1024 with self.client.transfercmd("list") as sock:
1034 with self.client.transfercmd("list") as sock:
/third_party/python/Misc/
DHISTORY26476 ftplib -- ntransfercmd(), transfercmd(), and retrbinary() all now