[pypy-commit] pypy default: grammar

gutworth noreply at buildbot.pypy.org
Thu Mar 29 14:53:09 CEST 2012


Author: Benjamin Peterson <benjamin at python.org>
Branch: 
Changeset: r54063:b5cf20353d19
Date: 2012-03-29 08:52 -0400
http://bitbucket.org/pypy/pypy/changeset/b5cf20353d19/

Log:	grammar

diff --git a/pypy/rpython/lltypesystem/rstr.py b/pypy/rpython/lltypesystem/rstr.py
--- a/pypy/rpython/lltypesystem/rstr.py
+++ b/pypy/rpython/lltypesystem/rstr.py
@@ -766,7 +766,7 @@
         lgt = stop - start
         assert start >= 0
         # If start > stop, return a empty string. This can happen if the start
-        # is greater than the length of the string. Use < instead <= to avoid
+        # is greater than the length of the string. Use < instead of <= to avoid
         # creating another path for the JIT.
         if lgt < 0:
             return s1.empty()


More information about the pypy-commit mailing list