Commit 14dbfc1e authored by Antoine Pitrou's avatar Antoine Pitrou

Merged revisions 80540 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80540 | antoine.pitrou | 2010-04-27 21:09:59 +0200 (mar., 27 avril 2010) | 4 lines

  Issue #8549: Fix compiling the _ssl extension under AIX.  Patch by
  Sridhar Ratnakumar.
........
parent eafc70cf
...@@ -581,6 +581,7 @@ Brian Quinlan ...@@ -581,6 +581,7 @@ Brian Quinlan
Anders Qvist Anders Qvist
Burton Radons Burton Radons
Antti Rasinen Antti Rasinen
Sridhar Ratnakumar
Eric Raymond Eric Raymond
Edward K. Ream Edward K. Ream
Chris Rebert Chris Rebert
......
...@@ -33,6 +33,9 @@ Core and Builtins ...@@ -33,6 +33,9 @@ Core and Builtins
Library Library
------- -------
- Issue #8549: Fix compiling the _ssl extension under AIX. Patch by
Sridhar Ratnakumar.
- Issue #2302: Fix a race condition in SocketServer.BaseServer.shutdown, - Issue #2302: Fix a race condition in SocketServer.BaseServer.shutdown,
where the method could block indefinitely if called just before the where the method could block indefinitely if called just before the
event loop started running. This also fixes the occasional freezes event loop started running. This also fixes the occasional freezes
......
...@@ -65,7 +65,7 @@ enum py_ssl_version { ...@@ -65,7 +65,7 @@ enum py_ssl_version {
PY_SSL_VERSION_SSL2, PY_SSL_VERSION_SSL2,
PY_SSL_VERSION_SSL3, PY_SSL_VERSION_SSL3,
PY_SSL_VERSION_SSL23, PY_SSL_VERSION_SSL23,
PY_SSL_VERSION_TLS1, PY_SSL_VERSION_TLS1
}; };
/* Include symbols from _socket module */ /* Include symbols from _socket module */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment