[pypy-commit] pypy callback-jit: oops

fijal noreply at buildbot.pypy.org
Wed Dec 26 22:12:55 CET 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: callback-jit
Changeset: r59577:e734f65a1707
Date: 2012-12-26 23:12 +0200
http://bitbucket.org/pypy/pypy/changeset/e734f65a1707/

Log:	oops

diff --git a/pypy/rpython/lltypesystem/rffi.py b/pypy/rpython/lltypesystem/rffi.py
--- a/pypy/rpython/lltypesystem/rffi.py
+++ b/pypy/rpython/lltypesystem/rffi.py
@@ -284,7 +284,7 @@
         def inner_wrapper(%(args)s):
             callback_hook = aroundstate.callback_hook
             if callback_hook:
-                callback_hook("%(callable_name_descr)s")
+                callback_hook(llstr("%(callable_name_descr)s"))
             return callable(%(args)s)
         inner_wrapper._never_inline_ = True
         


More information about the pypy-commit mailing list