diff options
Diffstat (limited to 'Doc/library/xmlrpclib.rst')
-rw-r--r-- | Doc/library/xmlrpclib.rst | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Doc/library/xmlrpclib.rst b/Doc/library/xmlrpclib.rst index 720da39..3aa8be0 100644 --- a/Doc/library/xmlrpclib.rst +++ b/Doc/library/xmlrpclib.rst @@ -34,11 +34,10 @@ between conformable Python objects and XML on the wire. constructed data. If you need to parse untrusted or unauthenticated data see :ref:`xml-vulnerabilities`. -.. warning:: - - In the case of https URIs, :mod:`xmlrpclib` does not do any verification of - the server's certificate. +.. versionchanged:: 2.7.9 + For https URIs, :mod:`xmlrpclib` now performs all the necessary certificate + and hostname checks by default .. class:: ServerProxy(uri[, transport[, encoding[, verbose[, allow_none[, use_datetime]]]]]) |