[pypy-commit] pypy py3k: typo

antocuni noreply at buildbot.pypy.org
Fri Feb 24 20:13:38 CET 2012


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: py3k
Changeset: r52881:fff27591cb0f
Date: 2012-02-24 20:01 +0100
http://bitbucket.org/pypy/pypy/changeset/fff27591cb0f/

Log:	typo

diff --git a/pypy/module/__builtin__/test/test_builtin.py b/pypy/module/__builtin__/test/test_builtin.py
--- a/pypy/module/__builtin__/test/test_builtin.py
+++ b/pypy/module/__builtin__/test/test_builtin.py
@@ -316,7 +316,7 @@
     def test_range_repr(self): 
         assert repr(range(1)) == 'range(1)'
         assert repr(range(1,2)) == 'range(1, 2)'
-        assert repr(range(1,2,3)) == 'range(1, 4, 3)'
+        assert repr(range(1,2,3)) == 'range(1, 2, 3)'
 
     def test_range_up(self):
         x = range(2)


More information about the pypy-commit mailing list