diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2008-04-21 01:45:57 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2008-04-21 01:45:57 (GMT) |
commit | a5489d415e77d82b13a5fca1e28e2aa202c1814d (patch) | |
tree | 785ea9a5e8d8b050ee099a229db7220984b3716e /Lib | |
parent | 92483cd8daf626b83f8715ebcf220c308798138e (diff) | |
download | cpython-a5489d415e77d82b13a5fca1e28e2aa202c1814d.zip cpython-a5489d415e77d82b13a5fca1e28e2aa202c1814d.tar.gz cpython-a5489d415e77d82b13a5fca1e28e2aa202c1814d.tar.bz2 |
Comment typo
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_xmlrpc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_xmlrpc.py b/Lib/test/test_xmlrpc.py index 8c048d0..bbdb93e 100644 --- a/Lib/test/test_xmlrpc.py +++ b/Lib/test/test_xmlrpc.py @@ -56,7 +56,7 @@ class XMLRPCTestCase(unittest.TestCase): self.assertEquals(newdt, xmlrpclib.DateTime('20050210T11:41:23')) def test_datetime_before_1900(self): - # same as before but with an date before 1900 + # same as before but with a date before 1900 dt = datetime.datetime(1, 02, 10, 11, 41, 23) s = xmlrpclib.dumps((dt,)) (newdt,), m = xmlrpclib.loads(s, use_datetime=1) |