mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Tweak a comment to be in line with Python 3
This commit is contained in:
parent
6f90731552
commit
a66c2eec50
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ py_bisect = support.import_fresh_module('bisect', blocked=['_bisect'])
|
||||||
c_bisect = support.import_fresh_module('bisect', fresh=['_bisect'])
|
c_bisect = support.import_fresh_module('bisect', fresh=['_bisect'])
|
||||||
|
|
||||||
class Range(object):
|
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):
|
def __init__(self, start, stop):
|
||||||
self.start = start
|
self.start = start
|
||||||
self.stop = stop
|
self.stop = stop
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue