Commit 43a94c31 authored by Antoine Pitrou's avatar Antoine Pitrou

Fix docs for r79813.

parent 04f6a32d
...@@ -244,7 +244,7 @@ Functions, Constants, and Exceptions ...@@ -244,7 +244,7 @@ Functions, Constants, and Exceptions
>>> ssl.OPENSSL_VERSION >>> ssl.OPENSSL_VERSION
'OpenSSL 0.9.8k 25 Mar 2009' 'OpenSSL 0.9.8k 25 Mar 2009'
.. versionadded:: 2.7 .. versionadded:: 3.2
.. data:: OPENSSL_VERSION_INFO .. data:: OPENSSL_VERSION_INFO
...@@ -254,18 +254,18 @@ Functions, Constants, and Exceptions ...@@ -254,18 +254,18 @@ Functions, Constants, and Exceptions
>>> ssl.OPENSSL_VERSION_INFO >>> ssl.OPENSSL_VERSION_INFO
(0, 9, 8, 11, 15) (0, 9, 8, 11, 15)
.. versionadded:: 2.7 .. versionadded:: 3.2
.. data:: OPENSSL_VERSION_NUMBER .. data:: OPENSSL_VERSION_NUMBER
The raw version number of the OpenSSL library, as a single integer:: The raw version number of the OpenSSL library, as a single integer::
>>> ssl.OPENSSL_VERSION_NUMBER >>> ssl.OPENSSL_VERSION_NUMBER
9470143L 9470143
>>> hex(ssl.OPENSSL_VERSION_NUMBER) >>> hex(ssl.OPENSSL_VERSION_NUMBER)
'0x9080bfL' '0x9080bf'
.. versionadded:: 2.7 .. versionadded:: 3.2
SSLSocket Objects SSLSocket Objects
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment