This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author corona10
Recipients Matthieu Pepin, christian.heimes, corona10, jonathan-lp, paul.moore, steve.dower, tim.golden, zach.ware
Date 2018-04-29.01:22:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1524964941.46.0.682650639539.issue31727@psf.upfronthosting.co.za>
In-reply-to
Content
I can not reproduce this issue on Python 3.8.0a0 with OpenSSL 0.9.8zh 14 Jan 2016 and OpenSSL 1.0.2o  27 Mar 2018


import ssl
import ftplib

print(ssl.OPENSSL_VERSION)

ftps = ftplib.FTP_TLS('test.rebex.net', timeout=2)
ftps.ssl_version = ssl.PROTOCOL_TLS
ftps.login('demo','password')

ftps.prot_p()
ftps.set_pasv(True)
ftps.dir()
ftps.nlst()
ftps.retrlines('LIST')
History
Date User Action Args
2018-04-29 01:22:21corona10setrecipients: + corona10, paul.moore, christian.heimes, tim.golden, zach.ware, steve.dower, Matthieu Pepin, jonathan-lp
2018-04-29 01:22:21corona10setmessageid: <1524964941.46.0.682650639539.issue31727@psf.upfronthosting.co.za>
2018-04-29 01:22:21corona10linkissue31727 messages
2018-04-29 01:22:20corona10create