summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_xmlrpc.py
Commit message (Collapse)AuthorAgeFilesLines
* Whitespace normalization.Tim Peters2005-12-251-1/+1
|
* [Bug #1164912] Ensure Datetime wrapper class .value attribute is an 8-bit ↵Andrew M. Kuchling2005-12-041-0/+10
| | | | string, not a Unicode string
* Add better datetime support to xmlrpclib module. Closes patch #1120353.Skip Montanaro2005-05-141-6/+38
|
* test_default_encoding_issues(): Fully restore sys.setdefaultencoding.Tim Peters2005-04-081-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 encodingFred Drake2005-02-111-0/+42
| | | | (closes SF bug #1115989)
* accept datetime.datetime instances when marshalling;Fred Drake2005-02-101-0/+17
| | | | dateTime.iso8601 elements still unmarshal into xmlrpclib.DateTime objects
* [Bug #841757] Exercise handling of Unicode stringsAndrew M. Kuchling2004-06-051-0/+2
|
* [Patch #628208] Test the 'nil' extensionAndrew M. Kuchling2003-04-251-0/+8
|
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-231-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 Montanaro2001-10-191-0/+14
| | | | should have been checked in as part of patch #470254.
* simple dumps/loads test case for xmlrpclibSkip Montanaro2001-10-011-0/+23