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 dstufft
Recipients Lukasa, alex, christian.heimes, dstufft, giampaolo.rodola, janssen, martin.panter, ncoghlan, orsenthil, python-dev, vstinner
Date 2016-09-11.02:50:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1473562213.75.0.440604823718.issue28022@psf.upfronthosting.co.za>
In-reply-to
Content
Thinking about that more, it's a bit harder than the Random module as well. The only state the random module has to worry about is the seed and internal state of the RNG.

However, many of the arguments to ssl.wrap_socket change the SSLContext options for things like what ciphers are active, what trust stores, etc. So we couldn't have a single SSLContext at the global level without removing those options from wrap_socket. Otherwise we'd need some sort of dict of SSLContexts that keyed off of the options passed to wrap_socket.
History
Date User Action Args
2016-09-11 02:50:13dstufftsetrecipients: + dstufft, ncoghlan, janssen, orsenthil, vstinner, giampaolo.rodola, christian.heimes, alex, python-dev, martin.panter, Lukasa
2016-09-11 02:50:13dstufftsetmessageid: <1473562213.75.0.440604823718.issue28022@psf.upfronthosting.co.za>
2016-09-11 02:50:13dstufftlinkissue28022 messages
2016-09-11 02:50:13dstufftcreate