constructed data. If you need to parse untrusted or unauthenticated data see
:ref:`xml-vulnerabilities`.
--.. versionchanged:: 3.4.3
++.. versionchanged:: 3.5
For https URIs, :mod:`xmlrpc.client` now performs all the necessary
certificate and hostname checks by default
:class:`Server` is retained as an alias for :class:`ServerProxy` for backwards
compatibility. New code should use :class:`ServerProxy`.
- .. versionchanged:: 3.4.3
++ .. versionchanged:: 3.5
+ Added the *context* argument.
+
.. seealso::
Library
-------
+ - Issue #22960: Add a context argument to xmlrpclib.ServerProxy constructor.
+
+- Issue #22389: Add contextlib.redirect_stderr().
+
+- Issue #21356: Make ssl.RAND_egd() optional to support LibreSSL. The
+ availability of the function is checked during the compilation. Patch written
+ by Bernard Spil.
+
- Issue #22915: SAX parser now supports files opened with file descriptor or
bytes path.