From: Antoine Pitrou Date: Mon, 5 Apr 2010 21:44:48 +0000 (+0000) Subject: Fix docs for r79813. X-Git-Tag: v3.2a1~1221 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=43a94c31aa49e59e4a51e15dbed5b5934253a1ed;p=python Fix docs for r79813. --- diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 587df66d61..022a5866ec 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