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.

classification
Title: SSL patch for Windows buildbots problem
Type: behavior Stage:
Components: Documentation, Library (Lib), Tests, Windows Versions: Python 2.6
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: janssen Nosy List: janssen
Priority: critical Keywords: patch

Created on 2007-08-29 00:42 by janssen, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
ssl-patch-5 janssen, 2007-08-29 00:42
Messages (2)
msg55394 - (view) Author: Bill Janssen (janssen) * (Python committer) Date: 2007-08-29 00:42
here's the patch to fix the Windows buildbots (I hope).

This contains a number of things:

1) Improve the documentation of the SSL module, with a fuller
   explanation of certificate usage, another reference, proper 
formatting
   of this and that.

2) Fix Windows bug in ssl.py, and general bug in sslsocket.close().  
Remove
   some unused code from ssl.py.  Allow accept() to be called on 
sslsocket
   sockets.

3) Use try-except-else in import of ssl in socket.py.  Deprecate use of
   socket.ssl().

4) Remove use of socket.ssl() in every library module, except for
   test_socket_ssl.py and test_ssl.py.
msg55445 - (view) Author: Bill Janssen (janssen) * (Python committer) Date: 2007-08-29 22:49
Checked in.
History
Date User Action Args
2022-04-11 14:56:26adminsetgithub: 45393
2007-08-29 22:49:11janssensetstatus: open -> closed
assignee: nnorwitz -> janssen
resolution: accepted
messages: + msg55445
2007-08-29 00:42:22janssencreate