]> granicus.if.org Git - python/commitdiff
merge 3.4 (#22960)
authorBenjamin Peterson <benjamin@python.org>
Sun, 30 Nov 2014 04:34:30 +0000 (23:34 -0500)
committerBenjamin Peterson <benjamin@python.org>
Sun, 30 Nov 2014 04:34:30 +0000 (23:34 -0500)
1  2 
Doc/library/xmlrpc.client.rst
Lib/xmlrpc/client.py
Misc/NEWS

index 1d87f49f770c26b0e7493a718dab9c81ae3cc42b,87ac86a07afa10e6a1505acb516c249c496a51aa..cc40920644c507c202336625334b05c5a81e5563
@@@ -27,7 -27,7 +27,7 @@@ between conformable Python objects and 
     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::
  
Simple merge
diff --cc Misc/NEWS
index 86762f8452114b32ba282610cebc8032dce8a9be,924a8a205353d5a789cf839670b92a7047253c8b..21769d83304c18579588f9d00ac3c822b9c52cd8
+++ b/Misc/NEWS
@@@ -191,12 -36,8 +191,14 @@@ Core and Builtin
  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.