summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2008-04-21 01:45:57 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2008-04-21 01:45:57 (GMT)
commita5489d415e77d82b13a5fca1e28e2aa202c1814d (patch)
tree785ea9a5e8d8b050ee099a229db7220984b3716e /Lib
parent92483cd8daf626b83f8715ebcf220c308798138e (diff)
downloadcpython-a5489d415e77d82b13a5fca1e28e2aa202c1814d.zip
cpython-a5489d415e77d82b13a5fca1e28e2aa202c1814d.tar.gz
cpython-a5489d415e77d82b13a5fca1e28e2aa202c1814d.tar.bz2
Comment typo
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_xmlrpc.py2
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)