]> granicus.if.org Git - python/commitdiff
Issue #8549: Fix compiling the _ssl extension under AIX. Patch by
authorAntoine Pitrou <solipsis@pitrou.net>
Tue, 27 Apr 2010 19:09:59 +0000 (19:09 +0000)
committerAntoine Pitrou <solipsis@pitrou.net>
Tue, 27 Apr 2010 19:09:59 +0000 (19:09 +0000)
Sridhar Ratnakumar.

Misc/ACKS
Misc/NEWS
Modules/_ssl.c

index cb827da1e21179af5617d52913e1bc8104fd4f45..af56dd4997be8ac07f39d37e995ce4d327cec095 100644 (file)
--- 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
index 77fc78f18f11949a5838a69bcbe04f9164c0f262..2c2d2f283b6f49d54e682afdfae246247d6e8740 100644 (file)
--- 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.
 
index e81c219dbbb727dfd525186ecdb175deb017a785..eef658843e67731226ce77fa7525ba78548c4461 100644 (file)
@@ -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 */