Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 06e34a9

Browse files
committed
Merged revisions 80540 via svnmerge from
svn+ssh://[email protected]/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. ........
1 parent 05830aa commit 06e34a9

3 files changed

Lines changed: 5 additions & 1 deletion

File tree

Misc/ACKS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -623,6 +623,7 @@ Anders Qvist
623623
Burton Radons
624624
Brodie Rao
625625
Antti Rasinen
626+
Sridhar Ratnakumar
626627
Eric Raymond
627628
Edward K. Ream
628629
Chris Rebert

Misc/NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -339,6 +339,9 @@ C-API
339339
Library
340340
-------
341341

342+
- Issue #8549: Fix compiling the _ssl extension under AIX. Patch by
343+
Sridhar Ratnakumar.
344+
342345
- Issue #6656: fix locale.format_string to handle escaped percents
343346
and mappings.
344347

Modules/_ssl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ enum py_ssl_version {
6666
PY_SSL_VERSION_SSL2,
6767
PY_SSL_VERSION_SSL3,
6868
PY_SSL_VERSION_SSL23,
69-
PY_SSL_VERSION_TLS1,
69+
PY_SSL_VERSION_TLS1
7070
};
7171

7272
/* Include symbols from _socket module */

0 commit comments

Comments
 (0)