[Python-checkins] r79814 - python/branches/py3k/Doc/library/ssl.rst

antoine.pitrou python-checkins at python.org
Mon Apr 5 23:44:49 CEST 2010


Author: antoine.pitrou
Date: Mon Apr  5 23:44:48 2010
New Revision: 79814

Log:
Fix docs for r79813.



Modified:
   python/branches/py3k/Doc/library/ssl.rst

Modified: python/branches/py3k/Doc/library/ssl.rst
==============================================================================
--- python/branches/py3k/Doc/library/ssl.rst	(original)
+++ python/branches/py3k/Doc/library/ssl.rst	Mon Apr  5 23:44:48 2010
@@ -244,7 +244,7 @@
     >>> ssl.OPENSSL_VERSION
     'OpenSSL 0.9.8k 25 Mar 2009'
 
-   .. versionadded:: 2.7
+   .. versionadded:: 3.2
 
 .. data:: OPENSSL_VERSION_INFO
 
@@ -254,18 +254,18 @@
     >>> 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


More information about the Python-checkins mailing list