diff options
author | Brett Cannon <brett@python.org> | 2013-01-27 23:58:20 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2013-01-27 23:58:20 (GMT) |
commit | a66c2eec5054cfaba633df839f9d948ab543bb74 (patch) | |
tree | b40a9589cfad8e253bb748ef83f3c43b4589c479 /Lib/test/test_bisect.py | |
parent | 6f9073155284174fb6a53b2038263a8d83ae5922 (diff) | |
download | cpython-a66c2eec5054cfaba633df839f9d948ab543bb74.zip cpython-a66c2eec5054cfaba633df839f9d948ab543bb74.tar.gz cpython-a66c2eec5054cfaba633df839f9d948ab543bb74.tar.bz2 |
Tweak a comment to be in line with Python 3
Diffstat (limited to 'Lib/test/test_bisect.py')
-rw-r--r-- | Lib/test/test_bisect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_bisect.py b/Lib/test/test_bisect.py index 7b9bd19..e5cb3d0 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 |