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 christian.heimes
Recipients alex, christian.heimes, dstufft, ethan.furman, giampaolo.rodola, janssen, vstinner
Date 2016-09-08.21:06:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1473368819.97.0.899927514045.issue28025@psf.upfronthosting.co.za>
In-reply-to
Content
Too bad, but the ugly variant will suffice.

>>> import ssl
>>> ctx = ssl.create_default_context()
>>> ctx.options
<Options.OP_ALL|OP_NO_SSLv3|OP_NO_SSLv2|OP_NO_COMPRESSION: 2197947391>
>>> ctx.verify_flags
<VerifyFlags.VERIFY_X509_TRUSTED_FIRST: 32768>
>>> ctx.verify_mode
<VerifyMode.CERT_REQUIRED: 2>

Latest patch: https://github.com/tiran/cpython/commits/feature/ssl_enum
History
Date User Action Args
2016-09-08 21:07:00christian.heimessetrecipients: + christian.heimes, janssen, vstinner, giampaolo.rodola, alex, ethan.furman, dstufft
2016-09-08 21:06:59christian.heimessetmessageid: <1473368819.97.0.899927514045.issue28025@psf.upfronthosting.co.za>
2016-09-08 21:06:59christian.heimeslinkissue28025 messages
2016-09-08 21:06:59christian.heimescreate