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.
........
This commit is contained in:
Antoine Pitrou 2010-04-27 19:14:15 +00:00
parent 05830aa4ff
commit 06e34a9476
3 changed files with 5 additions and 1 deletions

View File

@ -623,6 +623,7 @@ Anders Qvist
Burton Radons
Brodie Rao
Antti Rasinen
Sridhar Ratnakumar
Eric Raymond
Edward K. Ream
Chris Rebert

View File

@ -339,6 +339,9 @@ C-API
Library
-------
- Issue #8549: Fix compiling the _ssl extension under AIX. Patch by
Sridhar Ratnakumar.
- Issue #6656: fix locale.format_string to handle escaped percents
and mappings.

View File

@ -66,7 +66,7 @@ enum py_ssl_version {
PY_SSL_VERSION_SSL2,
PY_SSL_VERSION_SSL3,
PY_SSL_VERSION_SSL23,
PY_SSL_VERSION_TLS1,
PY_SSL_VERSION_TLS1
};
/* Include symbols from _socket module */