diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-04-05 21:44:48 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-04-05 21:44:48 (GMT) |
commit | 43a94c31aa49e59e4a51e15dbed5b5934253a1ed (patch) | |
tree | 2ecdc46856464b570114f1fc46481d7ab38ba858 | |
parent | 04f6a32dff60d6f22b56b887338dd6ebbdc68dfe (diff) | |
download | cpython-43a94c31aa49e59e4a51e15dbed5b5934253a1ed.zip cpython-43a94c31aa49e59e4a51e15dbed5b5934253a1ed.tar.gz cpython-43a94c31aa49e59e4a51e15dbed5b5934253a1ed.tar.bz2 |
Fix docs for r79813.
-rw-r--r-- | Doc/library/ssl.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 587df66..022a586 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -244,7 +244,7 @@ Functions, Constants, and Exceptions >>> ssl.OPENSSL_VERSION 'OpenSSL 0.9.8k 25 Mar 2009' - .. versionadded:: 2.7 + .. versionadded:: 3.2 .. data:: OPENSSL_VERSION_INFO @@ -254,18 +254,18 @@ Functions, Constants, and Exceptions >>> ssl.OPENSSL_VERSION_INFO (0, 9, 8, 11, 15) - .. versionadded:: 2.7 + .. versionadded:: 3.2 .. data:: OPENSSL_VERSION_NUMBER The raw version number of the OpenSSL library, as a single integer:: >>> ssl.OPENSSL_VERSION_NUMBER - 9470143L + 9470143 >>> hex(ssl.OPENSSL_VERSION_NUMBER) - '0x9080bfL' + '0x9080bf' - .. versionadded:: 2.7 + .. versionadded:: 3.2 SSLSocket Objects |