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, giampaolo.rodola, janssen, vstinner
Date 2016-09-08.17:35:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to
Content
The patch removes ssl._import_symbols and adds more enums to the ssl module. Please review the patch. I'll update documentation in the next step.

With IntFlags it is much easier to understand flags like SSLContext.options

>>> import ssl
>>> ctx = ssl.create_default_context()
>>> ssl.Options(ctx.options)
<Options.OP_ALL|OP_NO_SSLv3|OP_NO_SSLv2|OP_NO_COMPRESSION: 2197947391>
History
Date User Action Args
2016-09-08 17:35:49christian.heimessetrecipients: + christian.heimes, janssen, vstinner, giampaolo.rodola, alex, dstufft
2016-09-08 17:35:49christian.heimessetmessageid: <[email protected]>
2016-09-08 17:35:49christian.heimeslinkissue28025 messages
2016-09-08 17:35:49christian.heimescreate