summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2008-10-03 16:42:52 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2008-10-03 16:42:52 (GMT)
commit081bb457ab1f84beaed7c73754c32b87b06a3d40 (patch)
treecb8970a56897b6dc80873da06d20e9dbebab45fb /Lib
parentd7b7dde98e38f8ccbbe7cca736fd3b31ffb190f6 (diff)
downloadcpython-081bb457ab1f84beaed7c73754c32b87b06a3d40.zip
cpython-081bb457ab1f84beaed7c73754c32b87b06a3d40.tar.gz
cpython-081bb457ab1f84beaed7c73754c32b87b06a3d40.tar.bz2
Typo fix
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_datetime.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_datetime.py b/Lib/test/test_datetime.py
index 1674961..ff00d8b 100644
--- a/Lib/test/test_datetime.py
+++ b/Lib/test/test_datetime.py
@@ -253,7 +253,7 @@ class TestTimeDelta(HarmlessMixedComparison, unittest.TestCase):
self.assertRaises(TypeError, lambda: a // x)
self.assertRaises(TypeError, lambda: x // a)
- # Divison of int by timedelta doesn't make sense.
+ # Division of int by timedelta doesn't make sense.
# Division by zero doesn't make sense.
for zero in 0, 0L:
self.assertRaises(TypeError, lambda: zero // a)