[pypy-commit] pypy better-jit-hooks: wtf

fijal noreply at buildbot.pypy.org
Fri Jan 6 11:31:51 CET 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: better-jit-hooks
Changeset: r51061:307dbbf5067d
Date: 2012-01-06 12:31 +0200
http://bitbucket.org/pypy/pypy/changeset/307dbbf5067d/

Log:	wtf

diff --git a/pypy/module/pypyjit/interp_resop.py b/pypy/module/pypyjit/interp_resop.py
--- a/pypy/module/pypyjit/interp_resop.py
+++ b/pypy/module/pypyjit/interp_resop.py
@@ -90,7 +90,7 @@
         op = ResOperation(no, [AbstractValue()], AbstractValue(),
                           descr=AbstractDescr())
     else:
-        op = ResOperation(no, [], None, descr=None)
+        op = ResOperation(no, [None], None, descr=None)
     return space.wrap(WrappedOp(op, NonConstant(13), NonConstant('repr')))
 
 class WrappedOp(Wrappable):


More information about the pypy-commit mailing list