]> granicus.if.org Git - python/commitdiff
Tweak a comment to be in line with Python 3
authorBrett Cannon <brett@python.org>
Sun, 27 Jan 2013 23:58:20 +0000 (18:58 -0500)
committerBrett Cannon <brett@python.org>
Sun, 27 Jan 2013 23:58:20 +0000 (18:58 -0500)
Lib/test/test_bisect.py

index 7b9bd19fcbf86584c64e940acd2eafe5cea30d03..e5cb3d0cacb7394e86817277e4279a521a981fa7 100644 (file)
@@ -7,7 +7,7 @@ py_bisect = support.import_fresh_module('bisect', blocked=['_bisect'])
 c_bisect = support.import_fresh_module('bisect', fresh=['_bisect'])
 
 class Range(object):
-    """A trivial range()-like object without any integer width limitations."""
+    """A trivial range()-like object that has an insert() method."""
     def __init__(self, start, stop):
         self.start = start
         self.stop = stop