summaryrefslogtreecommitdiff
path: root/Lib/xmlrpclib.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-021-2/+2
* Issue #26873: xmlrpclib now raises ResponseError on unsupported type tagsSerhiy Storchaka2016-05-041-0/+3
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-2/+2
* Issue #26147: xmlrpclib now works with unicode not encodable with usedSerhiy Storchaka2016-01-201-9/+9
* Issue #21847: Fixed xmlrpclib and tests on Unicode-disabled builds.Serhiy Storchaka2016-01-181-2/+2
* Issue #23865: close() methods in multiple modules now are idempotent and moreSerhiy Storchaka2015-04-101-6/+14
* add a default limit for the amount of data xmlrpclib.gzip_decode will return ...Benjamin Peterson2014-12-051-2/+11
* this is why tests are greatBenjamin Peterson2014-11-291-1/+1
* add context parameter to xmlrpclib.ServerProxy (#22960)Benjamin Peterson2014-11-291-3/+7
* Issue #19082: Working SimpleXMLRPCServer and xmlrpclib examples, both in modu...Senthil Kumaran2014-01-121-11/+4
* Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-181-1/+1
* Issue #12931: xmlrpclib now encodes Unicode URI to ISO-8859-1, instead ofVictor Stinner2011-09-231-0/+3
* Fix Issue8194 - Fix incompatible API change in the parse_respones for xmlrpc...Senthil Kumaran2010-12-071-2/+7
* Backport of 83120 (#9032)Victor Stinner2010-07-241-1/+1
* issue 6769Kristján Valur Jónsson2009-08-241-1/+1
* http://bugs.python.org/issue6499Kristján Valur Jónsson2009-07-191-1/+1
* http://bugs.python.org/issue6499Kristján Valur Jónsson2009-07-191-3/+13
* http://bugs.python.org/issue6267Kristján Valur Jónsson2009-07-031-1/+1
* http://bugs.python.org/issue6267Kristján Valur Jónsson2009-07-031-5/+5
* http://bugs.python.org/issue6267Kristján Valur Jónsson2009-06-281-35/+194
* #5767: remove sgmlop support from xmlrpclib; the sgmlop parser does not do mu...Georg Brandl2009-06-041-56/+2
* fix test_xmlrpc failures #4939Benjamin Peterson2009-01-131-1/+1
* Issue 4879: Allow buffering for HTTPResponseKristján Valur Jónsson2009-01-111-25/+3
* Send HTTP headers and message body in a single send() call.Jeremy Hylton2008-11-291-3/+1
* Remove assignment to True/False and use of dict.has_key() to silence warningsBrett Cannon2008-08-041-4/+10
* #2985: allow i8 in XMLRPC responses.Georg Brandl2008-05-291-0/+1
* resolve issue 2014Skip Montanaro2008-04-181-11/+19
* #1330538: Improve comparison of xmlrpclib.DateTime and datetime instances.Andrew M. Kuchling2008-02-231-23/+50
* Patch #1070046: Marshal new-style objects like InstanceTypeMartin v. Löwis2006-11-191-3/+13
* [Bug #1164912] Ensure Datetime wrapper class .value attribute is an 8-bit str...Andrew M. Kuchling2005-12-041-0/+1
* Add better datetime support to xmlrpclib module. Closes patch #1120353.Skip Montanaro2005-05-141-11/+49
* fix decoding in _stringify to not depend on the default encodingFred Drake2005-02-111-1/+1
* accept datetime.datetime instances when marshalling;Fred Drake2005-02-101-1/+16
* Revert previous checkin.Raymond Hettinger2005-02-071-19/+19
* Reduce the usage of the types module.Raymond Hettinger2005-02-071-19/+19
* removed info@pythonware.com referenceFredrik Lundh2004-10-131-2/+1
* Replace yield with sequence class. Fixes #1009803.Martin v. Löwis2004-08-221-8/+21
* Bump minimum Python version to 2.1. Fixes #1009803.Martin v. Löwis2004-08-201-4/+2
* [Bug #841757] Patch from /F to allow Unicode strings as struct keysAndrew M. Kuchling2004-06-051-3/+6
* SF patch #834015: Remove imports of unused modulesRaymond Hettinger2003-11-021-9/+8
* Patch #531629: Add multicall support.Martin v. Löwis2003-10-311-1/+65
* Fix a bunch of typos in documentation, docstrings and comments.Walter Dörwald2003-10-201-1/+1
* Patch #764470: Fix marshalling of faults. Will backport to 2.2.Martin v. Löwis2003-07-121-1/+9
* Made DateTime's constructor accept a time.struct_time class,Gustavo Niemeyer2003-06-161-1/+1
* Whitespace normalization.Tim Peters2003-05-121-5/+5
* [Patch #628208] Add optional support for the 'nil' extensionAndrew M. Kuchling2003-04-251-8/+24
* move imports in Binary class to top level to avoid repeated imports.Skip Montanaro2003-04-241-2/+6
* Get rid of many apply() calls.Guido van Rossum2003-02-271-2/+2
* add support for Python's bool type to xmlrpclib - patch # 559288Skip Montanaro2003-01-221-37/+56
* patch #624180 (part 2 of 2):Fredrik Lundh2002-11-011-1/+1