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 Adam.Goodman
Recipients Adam.Goodman, christian.heimes
Date 2014-03-13.21:39:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1394746745.98.0.309237655851.issue20916@psf.upfronthosting.co.za>
In-reply-to
Content
I just tried installing the root certificate update from KB931125 on a clean VM. Now I have 369 trusted root CAs, according to certmgr.msc. (I imagine it would be unreasonable to expect all windows python users to do this, though...)

The https request to python.org does succeed - but the code I'd thrown together to print out the SSLContext state breaks somehow:

> Traceback (most recent call last):
>   File "C:/Users/IEUser/Desktop/win_ssl_test.py", line 8, in <module>
>     ca_certs = context.get_ca_certs()
> ssl.SSLError: unknown error (_ssl.c:636)

Peeking at _ssl.c, it seems like it might be failing to decode some attributes on one (or more) of the certs...?
History
Date User Action Args
2014-03-13 21:39:06Adam.Goodmansetrecipients: + Adam.Goodman, christian.heimes
2014-03-13 21:39:05Adam.Goodmansetmessageid: <1394746745.98.0.309237655851.issue20916@psf.upfronthosting.co.za>
2014-03-13 21:39:05Adam.Goodmanlinkissue20916 messages
2014-03-13 21:39:05Adam.Goodmancreate