diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-11-30 04:38:17 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-11-30 04:38:17 (GMT) |
commit | b7138e24e3359810158a88e285aae6f34e8d4255 (patch) | |
tree | f1f75351be6a9ff80bfd02078a08b388d0c700d0 | |
parent | c1da3d1ed86284cc49cd7880a57a404de8965b24 (diff) | |
download | cpython-b7138e24e3359810158a88e285aae6f34e8d4255.zip cpython-b7138e24e3359810158a88e285aae6f34e8d4255.tar.gz cpython-b7138e24e3359810158a88e285aae6f34e8d4255.tar.bz2 |
context is keyword-only
-rw-r--r-- | Doc/library/xmlrpc.client.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/xmlrpc.client.rst b/Doc/library/xmlrpc.client.rst index 87ac86a..cc5e83a 100644 --- a/Doc/library/xmlrpc.client.rst +++ b/Doc/library/xmlrpc.client.rst @@ -34,7 +34,7 @@ between conformable Python objects and XML on the wire. .. class:: ServerProxy(uri, transport=None, encoding=None, verbose=False, \ allow_none=False, use_datetime=False, \ - use_builtin_types=False, context=None) + use_builtin_types=False, *, context=None) .. versionchanged:: 3.3 The *use_builtin_types* flag was added. |