summaryrefslogtreecommitdiffstats
path: root/Lib/xmlrpclib.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* add support for basic authentication, based on patch #624180Fredrik Lundh2002-10-221-12/+44
* Code modernization. Replace v=s[i]; del s[i] with single lookup v=s.pop(i)Raymond Hettinger2002-06-301-4/+2
* merged with SLAB codebase (version 1.0.1)Fredrik Lundh2002-06-271-78/+344
* Replaced boolean tests with is None.Raymond Hettinger2002-06-021-2/+2
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-011-1/+1
* re was already imported in the module, no need to re-importNeal Norwitz2002-03-261-1/+0
* partial merge with current pythonware codebase:Fredrik Lundh2001-12-191-3/+4
* test for int and long int overflow (allows operation on 64-bit platforms)Skip Montanaro2001-10-171-2/+11
* Remove unused import; reported by Neal Norwitz.Fred Drake2001-10-171-1/+1
* allow long ints to be marshalled as ints - no check is made to the incomingSkip Montanaro2001-10-101-0/+6
* Under certain conditions (sometimes triggered by the test suite),Guido van Rossum2001-10-021-0/+2
* restored 1.5.2 compatibilityFredrik Lundh2001-10-011-46/+39
* approximately double dump performance by moving import of cgi.escape back toSkip Montanaro2001-10-011-6/+4
* Properly detect recursive structures. Adopted from patch #465298.Martin v. Löwis2001-09-301-0/+6
* more xmlrpclib tweaks: fixed repr(Fault()); enable UTF-8 parsing inFredrik Lundh2001-09-101-12/+17
* sync with pythonware codebase: much faster import (doesn't importFredrik Lundh2001-09-101-65/+70
* Added docstring by Neal Norwitz. This closes SF bug #450981.Fred Drake2001-09-041-35/+86
* untabificationFredrik Lundh2001-08-231-5/+5
* updated to current PythonWare version (1.0b3). fixed type checks inFredrik Lundh2001-08-231-9/+15
* xmlrpclib for python 2.2; initial checkinFredrik Lundh2001-07-111-0/+934