[pypy-commit] pypy gc_no_cleanup_nursery: Clarify which cls goes with which argument

arigo noreply at buildbot.pypy.org
Wed Sep 24 18:15:08 CEST 2014


Author: Armin Rigo <arigo at tunes.org>
Branch: gc_no_cleanup_nursery
Changeset: r73679:85803d8e9c23
Date: 2014-09-24 18:14 +0200
http://bitbucket.org/pypy/pypy/changeset/85803d8e9c23/

Log:	Clarify which cls goes with which argument

diff --git a/rpython/jit/backend/test/runner_test.py b/rpython/jit/backend/test/runner_test.py
--- a/rpython/jit/backend/test/runner_test.py
+++ b/rpython/jit/backend/test/runner_test.py
@@ -4515,10 +4515,8 @@
                     for cls2 in [ConstInt, BoxInt]:
                         print 'a_int:', a_int
                         print 'of:', OF
-                        print 'start:', start
-                        print 'length:', length
-                        print 'cls1:', cls1.__name__
-                        print 'cls2:', cls2.__name__
+                        print 'start:', cls1.__name__, start
+                        print 'length:', cls2.__name__, length
                         for i in range(100):
                             if OF == PAIR:
                                 a[i].a = a[i].b = -123456789


More information about the pypy-commit mailing list