Home
last modified time | relevance | path

Searched refs:FTP_TLS (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Doc/library/
Dftplib.rst58 .. class:: FTP_TLS([host[, user[, passwd[, acct[, keyfile[, certfile[, context[, timeout]]]]]]]])
78 Here's a sample session using the :class:`FTP_TLS` class:
80 >>> from ftplib import FTP_TLS
81 >>> ftps = FTP_TLS('ftp.python.org')
388 FTP_TLS Objects
391 :class:`FTP_TLS` class inherits from :class:`FTP`, defining these additional objects:
393 .. attribute:: FTP_TLS.ssl_version
397 .. method:: FTP_TLS.auth()
402 .. method:: FTP_TLS.prot_p()
406 .. method:: FTP_TLS.prot_c()
/external/python/cpython2/Lib/test/
Dtest_ftplib.py639 self.client = ftplib.FTP_TLS(timeout=10)
653 self.client = ftplib.FTP_TLS(timeout=TIMEOUT)
709 self.assertRaises(ValueError, ftplib.FTP_TLS, keyfile=CERTFILE,
711 self.assertRaises(ValueError, ftplib.FTP_TLS, certfile=CERTFILE,
713 self.assertRaises(ValueError, ftplib.FTP_TLS, certfile=CERTFILE,
716 self.client = ftplib.FTP_TLS(context=ctx, timeout=TIMEOUT)
737 self.client = ftplib.FTP_TLS(context=ctx, timeout=TIMEOUT)
/external/python/cpython2/Lib/
Dftplib.py613 class FTP_TLS(FTP): class
/external/python/cpython2/Misc/
DNEWS1366 - Backport the context argument to ftplib.FTP_TLS.
1368 - Issue #23111: Maximize compatibility in protocol versions of ftplib.FTP_TLS.
7771 ``storbinary()`` method of FTP and FTP_TLS objects gains an optional "rest"
7799 - Issue #2054: ftplib now provides an FTP_TLS class to do secure FTP using TLS
/external/python/cpython2/Doc/whatsnew/
D2.7.rst1243 * New class: :class:`~ftplib.FTP_TLS` in