]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Typo fix
authorAndrew M. Kuchling <amk@amk.ca>
Fri, 3 Oct 2008 16:42:52 +0000 (16:42 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Fri, 3 Oct 2008 16:42:52 +0000 (16:42 +0000)
Doc/whatsnew/2.2.rst
Lib/test/test_datetime.py

index 4cf1438c81a98de95577629767e0fc396a35725f..138329830a210f6bc7883c1df78bb2b9ff3177fa 100644 (file)
@@ -714,7 +714,7 @@ Python's division operator, ``/``, behaves like C's division operator when
 presented with two integer arguments: it returns an integer result that's
 truncated down when there would be a fractional part.  For example, ``3/2`` is
 1, not 1.5, and ``(-1)/2`` is -1, not -0.5.  This means that the results of
-divison can vary unexpectedly depending on the type of the two operands and
+division can vary unexpectedly depending on the type of the two operands and
 because Python is dynamically typed, it can be difficult to determine the
 possible types of the operands.
 
index 16749610140bc22d475e63be0d44299346315e7e..ff00d8b0b0dadd2207841b780685bb6af5ca97e2 100644 (file)
@@ -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)