Author: Armin Rigo <[email protected]>
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
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to