[pypy-commit] pypy default: preserve the names for jit_unroll_iff, otherwise we end up with unreadable unwrap_spec

fijal noreply at buildbot.pypy.org
Tue Jul 24 11:06:50 CEST 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: 
Changeset: r56421:eec77c3e87d6
Date: 2012-07-24 11:06 +0200
http://bitbucket.org/pypy/pypy/changeset/eec77c3e87d6/

Log:	preserve the names for jit_unroll_iff, otherwise we end up with
	unreadable unwrap_spec

diff --git a/pypy/rlib/jit.py b/pypy/rlib/jit.py
--- a/pypy/rlib/jit.py
+++ b/pypy/rlib/jit.py
@@ -103,7 +103,6 @@
     import inspect
 
     args, varargs, varkw, defaults = inspect.getargspec(func)
-    args = ["v%s" % (i, ) for i in range(len(args))]
     assert varargs is None and varkw is None
     assert not defaults
     return args


More information about the pypy-commit mailing list