summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorCédric Krier <cedk@users.noreply.github.com>2019-02-19 16:18:50 (GMT)
committerVictor Stinner <vstinner@redhat.com>2019-02-19 16:18:50 (GMT)
commitbeda52ed36e701e45f22903fc4d3bec0d085b25b (patch)
treee96db330072912b7dce724ffdc547291bae4758a /Misc
parent513e9b4425d09cb0b4889495f9b93dda341b8dd0 (diff)
downloadcpython-beda52ed36e701e45f22903fc4d3bec0d085b25b.zip
cpython-beda52ed36e701e45f22903fc4d3bec0d085b25b.tar.gz
cpython-beda52ed36e701e45f22903fc4d3bec0d085b25b.tar.bz2
bpo-35153: Add headers parameter to xmlrpc.client.ServerProxy (GH-10308)
Allow to add HTTP headers to XML-RPC requests sent to the server.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-11-03-12-38-03.bpo-35153.009pdF.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-11-03-12-38-03.bpo-35153.009pdF.rst b/Misc/NEWS.d/next/Library/2018-11-03-12-38-03.bpo-35153.009pdF.rst
new file mode 100644
index 0000000..7926024
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-11-03-12-38-03.bpo-35153.009pdF.rst
@@ -0,0 +1,3 @@
+Add *headers* optional keyword-only parameter to
+:class:`xmlrpc.client.ServerProxy`, :class:`xmlrpc.client.Transport` and
+:class:`xmlrpc.client.SafeTransport`. Patch by Cédric Krier.