summaryrefslogtreecommitdiff
path: root/Lib/xmlrpc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #26885: xmlrpc now supports unmarshalling additional data types usedSerhiy Storchaka2016-09-111-6/+26
| | | | by Apache XML-RPC implementation for numerics and None.
* Issue #23804: Merge spelling and NEWS fixes from 3.5Martin Panter2016-07-112-14/+13
|\
| * Issue #26873: xmlrpc now raises ResponseError on unsupported type tagsSerhiy Storchaka2016-05-041-0/+3
| |\ | | | | | | | | | instead of silently return incorrect result.
| * \ Issue #26778: Fixed "a/an/and" typos in code comment, documentation and errorSerhiy Storchaka2016-04-172-14/+13
| |\ \ | | | | | | | | | | | | messages.
| | * | Issue #26404: Add context manager to socketserver, by Aviv PalivodaMartin Panter2016-04-131-13/+12
| | | |
| | * | Issue #26402: Merge XML-RPC client fix from 3.5Martin Panter2016-02-251-1/+1
| | |\ \
| | | * | Issue #25985: sys.version_info is now used instead of sys.versionSerhiy Storchaka2016-02-111-1/+1
| | | | | | | | | | | | | | | | | | | | to format short Python version.
* | | | | English spelling and grammar fixesMartin Panter2016-07-111-1/+1
| |_|_|/ |/| | |
* | | | Issue #26873: xmlrpc now raises ResponseError on unsupported type tagsSerhiy Storchaka2016-05-041-0/+3
|/ / / | | | | | | | | | instead of silently return incorrect result.
* | | Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-1/+1
|/ /
* | Issue #26402: Fix XML-RPC client retrying after server disconnectionMartin Panter2016-02-251-3/+3
|/ | | | | This is a regression introduced in 3.5 by revision eba80326ba53. Fix by Jelte Fennema, test case by me.
* Issue #26147: xmlrpc now works with strings not encodable with usedSerhiy Storchaka2016-01-202-5/+3
| | | | non-UTF-8 encoding.
* Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5Martin Panter2015-11-021-34/+26
|\
| * Issue #23865: close() methods in multiple modules now are idempotent and moreSerhiy Storchaka2015-04-101-34/+26
| |\ | | | | | | | | | | | | robust at shutdown. If needs to release multiple resources, they are released even if errors are occured.
| | * #3566: Clean up handling of remote server disconnects.R David Murray2015-04-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This changeset does two things: introduces a new RemoteDisconnected exception (that subclasses ConnectionResetError and BadStatusLine) so that a remote server disconnection can be detected by client code (and provides a better error message for debugging purposes), and ensures that the client socket is closed if a ConnectionError happens, so that the automatic re-connection code can work if the application handles the error and continues on. Tests are added that confirm that a connection is re-used or not re-used as appropriate to the various combinations of protocol version and headers. Patch by Martin Panter, reviewed by Demian Brecht. (Tweaked only slightly by me.)
| | * Issue #22831: Use "with" to avoid possible fd leaks.Serhiy Storchaka2015-04-041-17/+11
| | |
| | * Issue #23326: Removed __ne__ implementations. Since fixing default __ne__Serhiy Storchaka2015-01-311-9/+0
| | | | | | | | | | | | implementation in issue #21408 they are redundant.
| | * merge 3.4 (#16043)Benjamin Peterson2014-12-051-2/+11
| | |\
| | * \ merge 3.4 (#22960)Benjamin Peterson2014-11-291-7/+14
| | |\ \
| | | * | Issue #22033: Reprs of most Python implemened classes now contain actualSerhiy Storchaka2014-07-251-7/+8
| | | | | | | | | | | | | | | | | | | | class name instead of hardcoded one.
| | | * | Issue #22031: Reprs now always use hexadecimal format with the "0x" prefixSerhiy Storchaka2014-07-221-2/+2
| | | | | | | | | | | | | | | | | | | | when contain an id in form " at 0x...".
| | | * | Issue #20627: xmlrpc.client.ServerProxy is now a context manager.Brett Cannon2014-03-211-0/+6
| | | | | | | | | | | | | | | | | | | | Patch by Claudiu Popa.
* | | | | Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-021-2/+2
|/ / / / | | | | | | | | | | | | | | | | | | | | This changes the main documentation, doc strings, source code comments, and a couple error messages in the test suite. In some cases the word was removed or edited some other way to fix the grammar.
* | | | Issue #23865: close() methods in multiple modules now are idempotent and moreSerhiy Storchaka2015-04-101-6/+14
| |_|/ |/| | | | | | | | | | | robust at shutdown. If needs to release multiple resources, they are released even if errors are occured.
* | | merge 3.3 (#16043)Benjamin Peterson2014-12-052-15/+17
|\ \ \ | |/ /
| * | add context parameter to xmlrpclib.ServerProxy (#22960)Benjamin Peterson2014-11-291-3/+12
| |/ | | | | | | Patch by Alex Gaynor.
| * Issue #20976: pyflakes: Remove unused importsVictor Stinner2014-03-201-1/+0
| |
| * merge from 3.3Senthil Kumaran2014-01-122-5/+19
| |\ | | | | | | | | | Issue #19082: Working xmlrpc.server and xmlrpc.client examples. Both in modules and in documentation.
| * | Issue #18571: Implementation of the PEP 446: file descriptors and file handlesVictor Stinner2013-08-281-7/+0
| | | | | | | | | | | | | | | are now created non-inheritable; add functions os.get/set_inheritable(), os.get/set_handle_inheritable() and socket.socket.get/set_inheritable().
| * | Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-1/+1
| |\ \ | | | | | | | | | | | | error messages and comments.
| * \ \ Merge #8112: Update the documenting xmlrpc server to use getfullargspec.R David Murray2013-08-101-4/+5
| |\ \ \
| | * | | Issue #15767: Excise the remaining instances of ModuleNotFoundErrorBrett Cannon2013-07-041-1/+1
| | | | |
| | * | | Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a)Brett Cannon2013-07-041-1/+1
| | | | |
| | * | | Issue #18200: Update the stdlib (except tests) to useBrett Cannon2013-06-131-1/+1
| | | | | | | | | | | | | | | | | | | | ModuleNotFoundError.
| | * | | Move test___all__ over to unittest.main() and use ModuleNotFoundErrorBrett Cannon2013-06-121-1/+1
| | | | |
| | * | | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-2/+2
| | | | |
| | * | | Issue #16717: get rid of socket.error, replace with OSErrorAndrew Svetlov2012-12-181-2/+3
| | | | |
* | | | | merge 3.2 (#16043)Benjamin Peterson2014-12-052-83/+126
|\ \ \ \ \ | | |_|_|/ | |/| | |
| * | | | Issue #19082: Working xmlrpc.server and xmlrpc.client examples. Both in ↵Senthil Kumaran2014-01-122-5/+19
| | |_|/ | |/| | | | | | | | | | modules and in documentation.
| * | | Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-1/+1
| |/ / | | | | | | | | | error messages and comments.
| * | #8112: Update the documenting xmlrpc server to use getfullargspec.R David Murray2013-08-101-7/+10
| |/ | | | | | | | | | | | | Before this patch it would raise an error when trying to display documentation for a method that used annotations. Patch by Claudiu Popa.
| * Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-182-70/+96
| |\ | | | | | | | | | Patch by Serhiy Storchaka.
| | * Merge 3.2Éric Araujo2012-03-051-1/+1
| | |\
| | * | #13973: move a couple of imports at module level. Patch by Tshepang ↵Ezio Melotti2012-02-241-2/+1
| | | | | | | | | | | | | | | | Lekhonkhobe.
| | * | Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in SimpleXMLRPCServerCharles-François Natali2012-02-182-68/+95
| | |\ \ | | | | | | | | | | | | | | | upon malformed POST request.
| | | * | Closes #2979: add parameter 'use_builtin_types' to the SimpleXMLRPCServer.Florent Xicluna2011-12-091-10/+15
| | | | |
| | | * | Closes #13297: use bytes type to send and receive binary data through XMLRPC.Florent Xicluna2011-11-151-16/+36
| | | | |
| | | * | Fix regression due to changeset 2096158376e5 (issue #13305).Florent Xicluna2011-11-011-6/+21
| | | | |
| | | * | Let's assume that the datetime module is always available.Florent Xicluna2011-10-301-23/+10
| | | | |
| | | * | Fix User-Agent for the xmlrpc.client, and catch KeyboardInterrupt for the ↵Florent Xicluna2011-10-302-5/+11
| | | | | | | | | | | | | | | | | | | | standalone xmlrpc.server.