From: Antoine Pitrou Date: Tue, 27 Apr 2010 19:09:59 +0000 (+0000) Subject: Issue #8549: Fix compiling the _ssl extension under AIX. Patch by X-Git-Tag: v2.7b2~179 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1dc6b08f9efe471cc5983cdfcdb391eea505a5e0;p=python Issue #8549: Fix compiling the _ssl extension under AIX. Patch by Sridhar Ratnakumar. --- diff --git a/Misc/ACKS b/Misc/ACKS index cb827da1e2..af56dd4997 100644 --- a/Misc/ACKS +++ b/Misc/ACKS @@ -619,6 +619,7 @@ Anders Qvist Burton Radons Brodie Rao Antti Rasinen +Sridhar Ratnakumar Eric Raymond Edward K. Ream Chris Rebert diff --git a/Misc/NEWS b/Misc/NEWS index 77fc78f18f..2c2d2f283b 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -27,6 +27,9 @@ Core and Builtins 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. diff --git a/Modules/_ssl.c b/Modules/_ssl.c index e81c219dbb..eef658843e 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -65,7 +65,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 */