From: Andrew M. Kuchling Date: Mon, 21 Apr 2008 01:45:57 +0000 (+0000) Subject: Comment typo X-Git-Tag: v2.6a3~138 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a5489d415e77d82b13a5fca1e28e2aa202c1814d;p=python Comment typo --- diff --git a/Lib/test/test_xmlrpc.py b/Lib/test/test_xmlrpc.py index 8c048d0222..bbdb93eddd 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)