[pypy-svn] r58357 - in pypy/branch/2.5-features/pypy: interpreter/pyparser/test rlib

fijal at codespeak.net fijal at codespeak.net
Tue Sep 23 01:07:10 CEST 2008


Author: fijal
Date: Tue Sep 23 01:07:10 2008
New Revision: 58357

Modified:
   pypy/branch/2.5-features/pypy/interpreter/pyparser/test/test_samples.py
   pypy/branch/2.5-features/pypy/rlib/rope.py
Log:
* Bump version number in a test (does not change much)
* remove forgotten import pdb


Modified: pypy/branch/2.5-features/pypy/interpreter/pyparser/test/test_samples.py
==============================================================================
--- pypy/branch/2.5-features/pypy/interpreter/pyparser/test/test_samples.py	(original)
+++ pypy/branch/2.5-features/pypy/interpreter/pyparser/test/test_samples.py	Tue Sep 23 01:07:10 2008
@@ -11,7 +11,7 @@
 from pypy.interpreter.pyparser.pythonlexer import TokenError
 grammar.DEBUG = False
 
-_, PYPY_VERSION = get_grammar_file("2.4")
+_, PYPY_VERSION = get_grammar_file("2.5")
 # these samples are skipped if the native version of Python does not match
 # the version of the grammar we use
 GRAMMAR_MISMATCH = PYTHON_VERSION != PYPY_VERSION

Modified: pypy/branch/2.5-features/pypy/rlib/rope.py
==============================================================================
--- pypy/branch/2.5-features/pypy/rlib/rope.py	(original)
+++ pypy/branch/2.5-features/pypy/rlib/rope.py	Tue Sep 23 01:07:10 2008
@@ -735,7 +735,6 @@
         return -1
     # invariant: stack should only contain nodes that can contain the int what
     stack = [node]
-    #import pdb; pdb.set_trace()
     i = 0
     while stack:
         curr = stack.pop()



More information about the Pypy-commit mailing list