Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Whitespace normalization. | Tim Peters | 2005-12-25 | 1 | -1/+1 |
| | |||||
* | [Bug #1164912] Ensure Datetime wrapper class .value attribute is an 8-bit ↵ | Andrew M. Kuchling | 2005-12-04 | 1 | -0/+10 |
| | | | | string, not a Unicode string | ||||
* | Add better datetime support to xmlrpclib module. Closes patch #1120353. | Skip Montanaro | 2005-05-14 | 1 | -6/+38 |
| | |||||
* | test_default_encoding_issues(): Fully restore sys.setdefaultencoding. | Tim Peters | 2005-04-08 | 1 | -0/+7 |
| | | | | | | | | | | test_site often failed under "regrtest.py -r", because this xmlrpc test left sys with a setdefaultencoding attribute, but loading site.py removes that attribute and test_site.py verifies the attribute is gone. Changed this test to get rid of sys.setdefaultencoding if it didn't exist when this test started. Don't know whether this is a bugfix (backport) candidate. | ||||
* | fix decoding in _stringify to not depend on the default encoding | Fred Drake | 2005-02-11 | 1 | -0/+42 |
| | | | | (closes SF bug #1115989) | ||||
* | accept datetime.datetime instances when marshalling; | Fred Drake | 2005-02-10 | 1 | -0/+17 |
| | | | | dateTime.iso8601 elements still unmarshal into xmlrpclib.DateTime objects | ||||
* | [Bug #841757] Exercise handling of Unicode strings | Andrew M. Kuchling | 2004-06-05 | 1 | -0/+2 |
| | |||||
* | [Patch #628208] Test the 'nil' extension | Andrew M. Kuchling | 2003-04-25 | 1 | -0/+8 |
| | |||||
* | Get rid of relative imports in all unittests. Now anything that | Barry Warsaw | 2002-07-23 | 1 | -1/+1 |
| | | | | | | | | | | | imports e.g. test_support must do so using an absolute package name such as "import test.test_support" or "from test import test_support". This also updates the README in Lib/test, and gets rid of the duplicate data dirctory in Lib/test/data (replaced by Lib/email/test/data). Now Tim and Jack can have at it. :) | ||||
* | added tests for long ints and ints where they are > 32 bits. | Skip Montanaro | 2001-10-19 | 1 | -0/+14 |
| | | | | should have been checked in as part of patch #470254. | ||||
* | simple dumps/loads test case for xmlrpclib | Skip Montanaro | 2001-10-01 | 1 | -0/+23 |