]> granicus.if.org Git - python/commitdiff
Comment typo
authorAndrew M. Kuchling <amk@amk.ca>
Mon, 21 Apr 2008 01:45:57 +0000 (01:45 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Mon, 21 Apr 2008 01:45:57 +0000 (01:45 +0000)
Lib/test/test_xmlrpc.py

index 8c048d02220786f8aede2532773b81c72309d5f2..bbdb93eddd2ee66335cd01c7b447fa7e657cfcde 100644 (file)
@@ -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)