summaryrefslogtreecommitdiffstats
path: root/Doc/library/xmlrpc.client.rst
Commit message (Collapse)AuthorAgeFilesLines
* gh-101100: Fix various Sphinx warnings for dunder references in the ↵Alex Waygood2023-12-151-4/+5
| | | | `library/` directory (#113163)
* GH-103484: Fix redirected permanently URLs (#104001)Rafael Fontenelle2023-05-021-1/+1
| | | | | Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com> Co-authored-by: Oleg Iarygin <dralife@yandex.ru>
* Docs: Fix backtick errors found by sphinx-lint (#97998)Hugo van Kemenade2022-10-071-1/+1
| | | Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
* gh-96959: Update more HTTP links (GH-97536)Serhiy Storchaka2022-09-271-1/+1
| | | | Use HTTPS for documents which are available by both HTTP and HTTPS links, but there is no redirection from HTTP to HTTPS or vice versa.
* gh-91838: Use HTTPS links in docs for resources which redirect to HTTPS ↵Serhiy Storchaka2022-08-041-2/+2
| | | | | | | | | | (GH-95527) If an HTTP link is redirected to a same looking HTTPS link, the latter can be used directly without changes in readability and behavior. It protects from a men-in-the-middle attack. This change does not affect Python examples.
* gh-95451: Update docs for wasm32-emscripten and -wasi platforms (GH-95452)Christian Heimes2022-08-021-0/+2
| | | | | | Co-authored-by: Éric <merwok@netwok.org> Co-authored-by: Michael Droettboom <mdboom@gmail.com> Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com> Co-authored-by: CAM Gerlach <CAM.Gerlach@Gerlach.CAM>
* Docs: remove redundant "adverb-adjective" hyphens from compound modifiers ↵Ned Batchelder2022-07-051-1/+1
| | | | | (GH-94551) Discussion: https://discuss.python.org/t/slight-grammar-fix-throughout-adverbs-dont-need-hyphen/17021
* Remove effbot urls (GH-26308)E-Paine2021-05-221-6/+0
|
* bpo-43354: xmlrpc: Fix type documentation for Fault.faultCode (GH-24707)Jürgen Gmach2021-03-261-1/+1
| | | | | | | The type of `faultCode` has to be an `int` instead of a `str`. cf http://xmlrpc.com/spec.md Pinging @pganssle
* bpo-35153: Add headers parameter to xmlrpc.client.ServerProxy (GH-10308)Cédric Krier2019-02-191-4/+10
| | | Allow to add HTTP headers to XML-RPC requests sent to the server.
* bpo-33859: Fix spelling mistakes in docs. (GH-7691)Xtreak2018-06-161-1/+1
|
* bpo-33641: Convert RFC references into links. (GH-7103)Serhiy Storchaka2018-05-311-1/+1
| | | | 85% of them are already links.
* Issue #28389: Merge from 3.5Berker Peksag2016-10-091-22/+16
|\
| * Issue #28389: Fix ProxiedTransport example in xmlrpc.client documentationBerker Peksag2016-10-091-22/+16
| |
* | Fixed a markup in docs.Serhiy Storchaka2016-09-111-1/+1
| |
* | Issue #26885: xmlrpc now supports unmarshalling additional data types usedSerhiy Storchaka2016-09-111-2/+15
|/ | | | by Apache XML-RPC implementation for numerics and None.
* Issue #22558: Add remaining doc links to source code for Python-coded modules.Terry Jan Reedy2016-06-111-2/+2
| | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi.
* Issue #26553: Capitalization of HTTP, HTTPS, FTP, and URLMartin Panter2016-05-281-2/+2
| | | | Patch by Anish Shah and Aatish Neupane.
* Issue #23921: Standardized documentation whitespace formatting.Serhiy Storchaka2016-05-101-2/+5
| | | | Original patch by James Edwards.
* Issue #26736: Used HTTPS for external links in the documentation if possible.Serhiy Storchaka2016-05-071-2/+2
|
* Issue #26889: Fixed hyperlinks formatting.Serhiy Storchaka2016-05-071-4/+4
|
* Issue #26889: Tweaked xmlrpc.client documentation.Serhiy Storchaka2016-05-071-89/+102
|
* Correct “an” → “a” with “Unicode”, “user”, “UTF”, etcMartin Panter2016-04-151-1/+1
| | | | This affects documentation, code comments, and a debugging messages.
* Closes #25910: fix dead and permanently redirected links in the docs. Thanks ↵Georg Brandl2016-02-261-1/+1
| | | | to SilentGhost for the patch.
* Fix errors in XML-RPC client example codeMartin Panter2016-02-221-4/+4
| | | | | | | * http.client.HTTP (does not exist in Python 3) → HTTPConnection * Server (deprecated) → ServerProxy * Transport.send_request() grew a new “debug” parameter in Python 3 (revision a528f7f8f97a)
* merge 3.4Benjamin Peterson2014-11-301-1/+1
|\
| * context is keyword-onlyBenjamin Peterson2014-11-301-1/+1
| |
* | merge 3.4 (#22960)Benjamin Peterson2014-11-301-3/+8
|\ \ | |/
| * add context parameter to xmlrpclib.ServerProxy (#22960)Benjamin Peterson2014-11-301-2/+7
| | | | | | | | Patch by Alex Gaynor.
* | merge 3.4 (#22417)Benjamin Peterson2014-11-031-4/+3
|\ \ | |/
| * PEP 476: enable HTTPS certificate verification by default (#22417)Benjamin Peterson2014-11-031-4/+3
| | | | | | | | Patch by Alex Gaynor with some modifications by me.
* | merge 3.4Benjamin Peterson2014-10-191-1/+1
|\ \ | |/
| * make plural s lowercaseBenjamin Peterson2014-10-191-1/+1
| |
* | merge 3.4Benjamin Peterson2014-10-131-0/+5
|\ \ | |/
| * note xmlrpclib doesn't verify certs (yet)Benjamin Peterson2014-10-131-0/+5
| |
* | Issue #20627: xmlrpc.client.ServerProxy is now a context manager.Brett Cannon2014-03-211-9/+14
|/ | | | Patch by Claudiu Popa.
* #18267: make whitespace consistent and fix an operator.Ezio Melotti2013-08-081-9/+9
|
* Closes #18267: use floor division in code exampleAndrew Kuchling2013-06-211-2/+2
|
* Closes #4159: add LaTeX tabular column specifications to tables that ↵Georg Brandl2013-03-281-0/+2
| | | | otherwise are cut off or have overlapping text.
* Issue 17538: Document XML vulnerabiltiesChristian Heimes2013-03-261-0/+7
|\
| * Issue 17538: Document XML vulnerabiltiesChristian Heimes2013-03-261-0/+7
| |
* | Closes #13297: use bytes type to send and receive binary data through XMLRPC.Florent Xicluna2011-11-151-18/+35
|/
* #12787: link original MultiCall proposal to webarchive and in a footnoteSandro Tosi2011-08-201-2/+9
|
* issue10403 - Let's not use members anymore. Use 'attribute' where it denotes ↵Senthil Kumaran2011-07-041-3/+3
| | | | attribute and 'methods' where it denotes methods. Context should clarify usage.
* Add missing source links.Raymond Hettinger2011-02-101-0/+4
|
* Merged revisions ↵Benjamin Peterson2010-02-031-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 77484,77487,77561,77570,77593,77603,77608,77667,77702-77703,77739,77858,77887,77889 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r77484 | skip.montanaro | 2010-01-13 19:12:34 -0600 (Wed, 13 Jan 2010) | 4 lines Update PyEval_EvalFrame to PyEval_EvalFrameEx. This looks to have been done partially before. Also add a comment describing how this might have to work with different versions of the interpreter. ........ r77487 | ezio.melotti | 2010-01-14 05:34:10 -0600 (Thu, 14 Jan 2010) | 1 line Fixed typo ........ r77561 | georg.brandl | 2010-01-17 02:42:30 -0600 (Sun, 17 Jan 2010) | 1 line #7699: improve datetime docs: straightforward linking to strftime/strptime section, mark classmethods as such. ........ r77570 | georg.brandl | 2010-01-17 06:14:42 -0600 (Sun, 17 Jan 2010) | 1 line Add note about usage of STRINGLIB_EMPTY. ........ r77593 | georg.brandl | 2010-01-17 17:33:53 -0600 (Sun, 17 Jan 2010) | 1 line Fix internal reference. ........ r77603 | benjamin.peterson | 2010-01-18 17:07:56 -0600 (Mon, 18 Jan 2010) | 8 lines data descriptors do not override the class dictionary if __get__ is not defined Adjust documentation and add a test to verify this behavior. See http://mail.python.org/pipermail/python-dev/2010-January/095637.html for discussion. ........ r77608 | gregory.p.smith | 2010-01-19 02:19:03 -0600 (Tue, 19 Jan 2010) | 6 lines Do not compile stubs for the sha2 series hashes in the openssl hashlib module when the openssl version is too old to support them. That leads both compiled code bloat and to unittests attempting to test implementations that don't exist for comparison purposes on such platforms. ........ r77667 | mark.dickinson | 2010-01-21 12:32:27 -0600 (Thu, 21 Jan 2010) | 1 line Add two more test_strtod test values. ........ r77702 | georg.brandl | 2010-01-23 02:43:31 -0600 (Sat, 23 Jan 2010) | 1 line #7762: fix refcount annotation of PyUnicode_Tailmatch(). ........ r77703 | georg.brandl | 2010-01-23 02:47:54 -0600 (Sat, 23 Jan 2010) | 1 line #7725: fix referencing issue. ........ r77739 | benjamin.peterson | 2010-01-24 21:52:52 -0600 (Sun, 24 Jan 2010) | 1 line mention from_float() in error message ........ r77858 | georg.brandl | 2010-01-30 11:57:48 -0600 (Sat, 30 Jan 2010) | 1 line #7802: fix invalid example (heh). ........ r77887 | georg.brandl | 2010-01-31 12:51:49 -0600 (Sun, 31 Jan 2010) | 5 lines Fix-up ftplib documentation: move exception descriptions to toplevel, not inside a class remove attribution in "versionadded" spell and grammar check docstring of FTP_TLS ........ r77889 | michael.foord | 2010-01-31 13:59:26 -0600 (Sun, 31 Jan 2010) | 1 line Minor modification to unittest documentation. ........
* #7801: fix xmlrpclib binary example, open the picture in binary modeVictor Stinner2010-01-301-6/+4
| | | | Use also the with syntax (consistent with python trunk example).
* Last round of adapting style of documenting argument default values.Georg Brandl2009-09-161-3/+3
|
* Merged revisions 74209 via svnmerge fromGeorg Brandl2009-07-261-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74209 | georg.brandl | 2009-07-26 16:37:28 +0200 (So, 26 Jul 2009) | 1 line builtin -> built-in. ........
* #6079: use 3k except syntax in examples.Georg Brandl2009-05-221-2/+2
|