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 techtonik
Recipients akuchling, gpolo, itkovian, mattgbrown, techtonik, vstinner
Date 2009-09-16.15:33:36
SpamBayes Score 1.7561671e-09
Marked as misclassified No
Message-id <1253115218.03.0.801340232787.issue1613573@psf.upfronthosting.co.za>
In-reply-to
Content
Yep, the patch at #6267 is an extension of this one except for the last 
chunk where I also check if sockets are ssl-enabled. I am not sure why 
it was needed. It also may have been already fixed somewhere else. As 
this bug doesn't have any tests attached it may be considered closed for 
now.

Would be nice to see these fixes in Python 2.6 though as it is the 
default version that seems to go in Ubuntu 9.10

+        import socket
+        if not socket._have_ssl:
             raise NotImplementedError(
                 "your version of httplib doesn't support HTTPS"
                 )
History
Date User Action Args
2009-09-16 15:33:38techtoniksetrecipients: + techtonik, akuchling, vstinner, mattgbrown, itkovian, gpolo
2009-09-16 15:33:38techtoniksetmessageid: <1253115218.03.0.801340232787.issue1613573@psf.upfronthosting.co.za>
2009-09-16 15:33:37techtoniklinkissue1613573 messages
2009-09-16 15:33:36techtonikcreate