Commit 1dc6b08f authored by Antoine Pitrou's avatar Antoine Pitrou

Issue #8549: Fix compiling the _ssl extension under AIX. Patch by

Sridhar Ratnakumar.
parent 9bf5425f
...@@ -619,6 +619,7 @@ Anders Qvist ...@@ -619,6 +619,7 @@ Anders Qvist
Burton Radons Burton Radons
Brodie Rao Brodie Rao
Antti Rasinen Antti Rasinen
Sridhar Ratnakumar
Eric Raymond Eric Raymond
Edward K. Ream Edward K. Ream
Chris Rebert Chris Rebert
......
...@@ -27,6 +27,9 @@ Core and Builtins ...@@ -27,6 +27,9 @@ Core and Builtins
Library Library
------- -------
- Issue #8549: Fix compiling the _ssl extension under AIX. Patch by
Sridhar Ratnakumar.
- Issue #6656: fix locale.format_string to handle escaped percents - Issue #6656: fix locale.format_string to handle escaped percents
and mappings. and mappings.
......
...@@ -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