[pypy-commit] pypy optresult: missed a None here

fijal noreply at buildbot.pypy.org
Fri Jun 5 12:45:56 CEST 2015


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: optresult
Changeset: r77901:b4b7db4c6656
Date: 2015-06-05 12:46 +0200
http://bitbucket.org/pypy/pypy/changeset/b4b7db4c6656/

Log:	missed a None here

diff --git a/rpython/jit/metainterp/pyjitpl.py b/rpython/jit/metainterp/pyjitpl.py
--- a/rpython/jit/metainterp/pyjitpl.py
+++ b/rpython/jit/metainterp/pyjitpl.py
@@ -3082,7 +3082,7 @@
                                              argboxes, calldescr)
             self.history.record(rop.CALL_RELEASE_GIL_N,
                                          [savebox, funcbox] + argboxes[1:],
-                                         calldescr)
+                                         None, calldescr)
             resbox = None
         else:
             assert False, "no CALL_RELEASE_GIL_R"


More information about the pypy-commit mailing list