Author: Alex Gaynor <[email protected]> Branch: applevel-builder Changeset: r45050:f2c6fe7b62c2 Date: 2011-06-21 16:01 -0700 http://bitbucket.org/pypy/pypy/changeset/f2c6fe7b62c2/
Log: These can't be seen by the JIT. diff --git a/pypy/module/__pypy__/interp_debug.py b/pypy/module/__pypy__/interp_debug.py --- a/pypy/module/__pypy__/interp_debug.py +++ b/pypy/module/__pypy__/interp_debug.py @@ -1,15 +1,19 @@ from pypy.interpreter.gateway import interp2app, NoneNotWrapped, unwrap_spec from pypy.interpreter.error import OperationError -from pypy.rlib import debug +from pypy.rlib import debug, jit + [email protected]_look_inside @unwrap_spec(category=str) def debug_start(space, category): debug.debug_start(category) [email protected]_look_inside def debug_print(space, args_w): parts = [space.str_w(space.str(w_item)) for w_item in args_w] debug.debug_print(' '.join(parts)) [email protected]_look_inside @unwrap_spec(category=str) def debug_stop(space, category): debug.debug_stop(category) _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
