Comment typo

This commit is contained in:
Andrew M. Kuchling 2008-04-21 01:45:57 +00:00
parent 92483cd8da
commit a5489d415e
1 changed files with 1 additions and 1 deletions

View 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)