diff options
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 3 | ||||
-rw-r--r-- | Modules/_ssl.c | 2 |
3 files changed, 5 insertions, 1 deletions
@@ -623,6 +623,7 @@ Anders Qvist Burton Radons Brodie Rao Antti Rasinen +Sridhar Ratnakumar Eric Raymond Edward K. Ream Chris Rebert @@ -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. diff --git a/Modules/_ssl.c b/Modules/_ssl.c index e89e5b7..7579286 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -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 */ |