[Python-checkins] cpython: Tweak a comment to be in line with Python 3

brett.cannon python-checkins at python.org
Mon Jan 28 00:58:27 CET 2013


http://hg.python.org/cpython/rev/a375c3d88c7e
changeset:   81788:a375c3d88c7e
user:        Brett Cannon <brett at python.org>
date:        Sun Jan 27 18:58:20 2013 -0500
summary:
  Tweak a comment to be in line with Python 3

files:
  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
--- a/Lib/test/test_bisect.py
+++ b/Lib/test/test_bisect.py
@@ -7,7 +7,7 @@
 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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list