[Python-checkins] cpython: whatsnew: SSLSocket.getpeercert new values returned. (#18379)

r.david.murray python-checkins at python.org
Sun Mar 9 20:17:49 CET 2014


http://hg.python.org/cpython/rev/7885876b6503
changeset:   89531:7885876b6503
user:        R David Murray <rdmurray at bitdance.com>
date:        Sun Mar 09 12:55:58 2014 -0400
summary:
  whatsnew: SSLSocket.getpeercert new values returned. (#18379)

files:
  Doc/library/ssl.rst  |  4 +---
  Doc/whatsnew/3.4.rst |  4 ++++
  2 files changed, 5 insertions(+), 3 deletions(-)


diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst
--- a/Doc/library/ssl.rst
+++ b/Doc/library/ssl.rst
@@ -841,10 +841,8 @@
 
    .. versionchanged:: 3.4
       :exc:`ValueError` is raised when the handshake isn't done.
-
-   .. versionchanged:: 3.4
       The returned dictionary includes additional X509v3 extension items
-      such as ``crlDistributionPoints``, ``caIssuers`` and ``OCSP`` URIs.
+        such as ``crlDistributionPoints``, ``caIssuers`` and ``OCSP`` URIs.
 
 .. method:: SSLSocket.cipher()
 
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst
--- a/Doc/whatsnew/3.4.rst
+++ b/Doc/whatsnew/3.4.rst
@@ -1297,6 +1297,10 @@
 :meth:`ssl.SSLContext.set_servername_callback` method.
 (Contributed by Daniel Black in :issue:`8109`.)
 
+The dictionary returned by :meth:`.SSLSocket.getpeercert` contains additional
+``X509v3`` extension items: ``crlDistributionPoints``, ``calIssuers``, and
+``OCSP`` URIs.  (Contributed by Christian Heimes in :issue:`18379`.)
+
 
 stat
 ----

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list