Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | SF patch 1495675: Remove types.InstanceType and new.instance | 2006-05-26 | 1 | -1/+0 | |
| | | | | (Collin Winter) | ||||
* | Fix the unit tests by adding dispatch tables for DateTime and Binary. | 2006-04-21 | 1 | -0/+2 | |
| | | | | I'm not convinced this is the right thing to do... InstanceType makes no sense any longer. | ||||
* | [Bug #1164912] Ensure Datetime wrapper class .value attribute is an 8-bit ↵ | 2005-12-04 | 1 | -0/+1 | |
| | | | | string, not a Unicode string | ||||
* | Add better datetime support to xmlrpclib module. Closes patch #1120353. | 2005-05-14 | 1 | -11/+49 | |
| | |||||
* | fix decoding in _stringify to not depend on the default encoding | 2005-02-11 | 1 | -1/+1 | |
| | | | | (closes SF bug #1115989) | ||||
* | accept datetime.datetime instances when marshalling; | 2005-02-10 | 1 | -1/+16 | |
| | | | | dateTime.iso8601 elements still unmarshal into xmlrpclib.DateTime objects | ||||
* | Revert previous checkin. | 2005-02-07 | 1 | -19/+19 | |
| | |||||
* | Reduce the usage of the types module. | 2005-02-07 | 1 | -19/+19 | |
| | |||||
* | removed info@pythonware.com reference | 2004-10-13 | 1 | -2/+1 | |
| | | | | | (should probably remove all traces of _xmlrpclib, but I'll leave that for another day.) | ||||
* | Replace yield with sequence class. Fixes #1009803. | 2004-08-22 | 1 | -8/+21 | |
| | |||||
* | Bump minimum Python version to 2.1. Fixes #1009803. | 2004-08-20 | 1 | -4/+2 | |
| | |||||
* | [Bug #841757] Patch from /F to allow Unicode strings as struct keys | 2004-06-05 | 1 | -3/+6 | |
| | |||||
* | SF patch #834015: Remove imports of unused modules | 2003-11-02 | 1 | -9/+8 | |
| | | | | (Contributed by George Yoshida.) | ||||
* | Patch #531629: Add multicall support. | 2003-10-31 | 1 | -1/+65 | |
| | |||||
* | Fix a bunch of typos in documentation, docstrings and comments. | 2003-10-20 | 1 | -1/+1 | |
| | | | | (From SF patch #810751) | ||||
* | Patch #764470: Fix marshalling of faults. Will backport to 2.2. | 2003-07-12 | 1 | -1/+9 | |
| | |||||
* | Made DateTime's constructor accept a time.struct_time class, | 2003-06-16 | 1 | -1/+1 | |
| | | | | besides plain tuples. | ||||
* | Whitespace normalization. | 2003-05-12 | 1 | -5/+5 | |
| | |||||
* | [Patch #628208] Add optional support for the 'nil' extension | 2003-04-25 | 1 | -8/+24 | |
| | |||||
* | move imports in Binary class to top level to avoid repeated imports. | 2003-04-24 | 1 | -2/+6 | |
| | | | | use cStringIO if available. | ||||
* | Get rid of many apply() calls. | 2003-02-27 | 1 | -2/+2 | |
| | |||||
* | add support for Python's bool type to xmlrpclib - patch # 559288 | 2003-01-22 | 1 | -37/+56 | |
| | |||||
* | patch #624180 (part 2 of 2): | 2002-11-01 | 1 | -1/+1 | |
| | | | | | use unquote on authentication strings, to allow users to embed @ and : in user names and passwords (from Phillip Eby) | ||||
* | add support for basic authentication, based on patch #624180 | 2002-10-22 | 1 | -12/+44 | |
| | | | | by Phillip J. Eby | ||||
* | Code modernization. Replace v=s[i]; del s[i] with single lookup v=s.pop(i) | 2002-06-30 | 1 | -4/+2 | |
| | |||||
* | merged with SLAB codebase (version 1.0.1) | 2002-06-27 | 1 | -78/+344 | |
| | |||||
* | Replaced boolean tests with is None. | 2002-06-02 | 1 | -2/+2 | |
| | |||||
* | SF 563203. Replaced 'has_key()' with 'in'. | 2002-06-01 | 1 | -1/+1 | |
| | |||||
* | re was already imported in the module, no need to re-import | 2002-03-26 | 1 | -1/+0 | |
| | |||||
* | partial merge with current pythonware codebase: | 2001-12-19 | 1 | -3/+4 | |
| | | | | | - use repr instead of implied str for doubles - updated version number to 1.0.0 (for 2.2 final) | ||||
* | test for int and long int overflow (allows operation on 64-bit platforms) | 2001-10-17 | 1 | -2/+11 | |
| | | | | closes patch 470254 | ||||
* | Remove unused import; reported by Neal Norwitz. | 2001-10-17 | 1 | -1/+1 | |
| | |||||
* | allow long ints to be marshalled as ints - no check is made to the incoming | 2001-10-10 | 1 | -0/+6 | |
| | | | | | | | value, so the programmer will have to catch OverflowError. I'm not sure what /F's perspective is on this. Perhaps it should be caught and mapped to an xmlrpclib-specific exception. None of the other type-specific dump methods seem to do any exception handling though. | ||||
* | Under certain conditions (sometimes triggered by the test suite), | 2001-10-02 | 1 | -0/+2 | |
| | | | | | "from xml.parsers import expat" succeeds but the imported expat module is an empty shell. Make sure we don't be fooled by that. | ||||
* | restored 1.5.2 compatibility | 2001-10-01 | 1 | -46/+39 | |
| | | | | | added local escape method (made the dumps method some 50-80% faster) minor tweaks to the unmarshalling code | ||||
* | approximately double dump performance by moving import of cgi.escape back to | 2001-10-01 | 1 | -6/+4 | |
| | | | | top level. | ||||
* | Properly detect recursive structures. Adopted from patch #465298. | 2001-09-30 | 1 | -0/+6 | |
| | |||||
* | more xmlrpclib tweaks: fixed repr(Fault()); enable UTF-8 parsing in | 2001-09-10 | 1 | -12/+17 | |
| | | | | xmllib (on 2.0 and later) | ||||
* | sync with pythonware codebase: much faster import (doesn't import | 2001-09-10 | 1 | -65/+70 | |
| | | | | | xmllib unless needed), merged docstring patches, added overridable Transport.getparser to simplify plugging in different parsers. | ||||
* | Added docstring by Neal Norwitz. This closes SF bug #450981. | 2001-09-04 | 1 | -35/+86 | |
| | |||||
* | untabification | 2001-08-23 | 1 | -5/+5 | |
| | |||||
* | updated to current PythonWare version (1.0b3). fixed type checks in | 2001-08-23 | 1 | -9/+15 | |
| | | | | | DateTime constructor. use ServerProxy instead of Server in sample code. | ||||
* | xmlrpclib for python 2.2; initial checkin | 2001-07-11 | 1 | -0/+934 | |