summaryrefslogtreecommitdiff
path: root/Lib/xmlrpc
Commit message (Expand)AuthorAgeFilesLines
* merge 3.3 (#16043)Benjamin Peterson2014-12-052-15/+17
|\
| * add context parameter to xmlrpclib.ServerProxy (#22960)Benjamin Peterson2014-11-291-3/+12
| * Issue #20976: pyflakes: Remove unused importsVictor Stinner2014-03-201-1/+0
| * merge from 3.3Senthil Kumaran2014-01-122-5/+19
| |\
| * | Issue #18571: Implementation of the PEP 446: file descriptors and file handlesVictor Stinner2013-08-281-7/+0
| * | Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-1/+1
| |\ \
| * \ \ 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
| | * | | 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 modul...Senthil Kumaran2014-01-122-5/+19
| | |_|/ | |/| |
| * | | Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-1/+1
| |/ /
| * | #8112: Update the documenting xmlrpc server to use getfullargspec.R David Murray2013-08-101-7/+10
| |/
| * Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-182-70/+96
| |\
| | * Merge 3.2Éric Araujo2012-03-051-1/+1
| | |\
| | * | #13973: move a couple of imports at module level. Patch by Tshepang Lekhonkh...Ezio Melotti2012-02-241-2/+1
| | * | Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in SimpleXMLRPCServerCharles-François Natali2012-02-182-68/+95
| | |\ \
| | | * | 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 sta...Florent Xicluna2011-10-302-5/+11
| | | * | Merge 3.2Florent Xicluna2011-10-302-33/+13
| | | |\ \
| | | * \ \ Merge 3.2Florent Xicluna2011-10-281-9/+3
| | | |\ \ \
| | | | * | | Cleanup code: remove int/long idioms and simplify a while statement.Florent Xicluna2011-10-231-9/+3
* | | | | | | add a default limit for the amount of data xmlrpclib.gzip_decode will return ...Benjamin Peterson2014-12-051-2/+11
|/ / / / / /
* | | | | | Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-181-1/+1
| |_|_|_|/ |/| | | |
* | | | | Use raw string for a docstring that uses a backslashÉric Araujo2012-03-051-1/+1
|/ / / /
* | | | Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in SimpleXMLRPCServerCharles-François Natali2012-02-181-1/+4
|\ \ \ \ | |_|_|/ |/| | |
| * | | Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in SimpleXMLRPCServerCharles-François Natali2012-02-181-1/+4
* | | | Issue #13293: Better error message when trying to marshal bytes using xmlrpc....Florent Xicluna2011-10-301-9/+1
* | | | Cleanup xmlrpc: remove obsolete comments, unused imports. Add test for bytes ...Florent Xicluna2011-10-302-20/+7
* | | | Closes #13291: NameError in xmlrpc package.Florent Xicluna2011-10-302-4/+5
| |/ / |/| |
* | | Closes #13258: Use callable() built-in in the standard library.Florent Xicluna2011-10-281-1/+1
| |/ |/|
* | #11565: Merge with 3.1.Ezio Melotti2011-03-162-79/+325
|\ \ | |/ |/|
| * Fix Issue8194 - Fix incompatible API change in the parse_respones for xmlrpc...Senthil Kumaran2010-12-081-2/+6
| * Code Changes as per review comments by Antoine Pitrou.Senthil Kumaran2010-11-181-1/+1
| * Fix Issue 9991: xmlrpc client ssl check faultySenthil Kumaran2010-11-181-1/+1
| * more fun with string exceptionsBenjamin Peterson2010-10-311-1/+1
| * #9032: XML-RPC client: Transport.request() retries on EPIPE errorVictor Stinner2010-07-241-1/+1
| * Issue #7606: XML-RPC traceback stored in X-traceback is now encoded to ASCIIVictor Stinner2010-04-161-1/+3
| * Merged revisions 74558 via svnmerge fromKristján Valur Jónsson2009-12-161-4/+43
| * Use true booleans and PEP8 for argdefaults.Georg Brandl2009-09-162-13/+13
| * Issue #6360: Simplify string decoding in xmlrpc.client.Alexandre Vassalotti2009-07-221-17/+4
| * merging revision 74100 from trunk:Kristján Valur Jónsson2009-07-191-1/+1
| * porting revision 74098 from trunk:Kristján Valur Jónsson2009-07-192-5/+20