[pypy-commit] pypy py3.3: Fix.

mjacob pypy.commits at gmail.com
Fri Feb 12 16:15:47 EST 2016


Author: Manuel Jacob <me at manueljacob.de>
Branch: py3.3
Changeset: r82192:7fc36d3705b5
Date: 2016-02-12 22:09 +0100
http://bitbucket.org/pypy/pypy/changeset/7fc36d3705b5/

Log:	Fix.

diff --git a/pypy/interpreter/test/test_pycode.py b/pypy/interpreter/test/test_pycode.py
--- a/pypy/interpreter/test/test_pycode.py
+++ b/pypy/interpreter/test/test_pycode.py
@@ -15,5 +15,5 @@
         sys.stdout = stdout
     print '>>>\n' + output + '\n<<<'
     assert ' 1 (7)' in output
-    assert ' 3 (None)' in output
-    assert ' 16 RETURN_VALUE ' in output
+    assert ' 4 (None)' in output
+    assert ' 19 RETURN_VALUE ' in output


More information about the pypy-commit mailing list