From: Brett Cannon Date: Sun, 27 Jan 2013 23:58:20 +0000 (-0500) Subject: Tweak a comment to be in line with Python 3 X-Git-Tag: v3.4.0a1~1510 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a66c2eec5054cfaba633df839f9d948ab543bb74;p=thirdparty%2FPython%2Fcpython.git Tweak a comment to be in line with Python 3 --- diff --git a/Lib/test/test_bisect.py b/Lib/test/test_bisect.py index 7b9bd19fcbf8..e5cb3d0cacb7 100644 --- a/Lib/test/test_bisect.py +++ b/Lib/test/test_bisect.py @@ -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