cpython: 33603f7949c5 (original) (raw)

Mercurial > cpython

changeset 93992:33603f7949c5

merge 3.4 (#23111) [#23111]

Benjamin Peterson benjamin@python.org
date Tue, 30 Dec 2014 15:16:13 -0600
parents d5f2bcfd544c(current diff)414c450e8406(diff)
children 01437956ea67
files Lib/ftplib.py Misc/NEWS
diffstat 2 files changed, 5 insertions(+), 2 deletions(-)[+] [-] Lib/ftplib.py 4 Misc/NEWS 3

line wrap: on

line diff

--- a/Lib/ftplib.py +++ b/Lib/ftplib.py @@ -713,7 +713,7 @@ else: '221 Goodbye.' >>> '''

def init(self, host='', user='', passwd='', acct='', keyfile=None, certfile=None, context=None, @@ -743,7 +743,7 @@ else: '''Set up secure control connection by using TLS/SSL.''' if isinstance(self.sock, ssl.SSLSocket): raise ValueError("Already using TLS")

--- a/Misc/NEWS +++ b/Misc/NEWS @@ -207,6 +207,9 @@ Library