Author: Armin Rigo <ar...@tunes.org> Branch: Changeset: r47198:dec57323f88b Date: 2011-09-10 19:51 +0200 http://bitbucket.org/pypy/pypy/changeset/dec57323f88b/
Log: Temporarily disable sys._current_frames(). The tests are left failing to remind us that it needs to be fixed. diff --git a/pypy/module/sys/vm.py b/pypy/module/sys/vm.py --- a/pypy/module/sys/vm.py +++ b/pypy/module/sys/vm.py @@ -52,6 +52,8 @@ current stack frame. This function should be used for specialized purposes only.""" + raise OperationError(space.w_NotImplementedError, + space.wrap("XXX sys._current_frames() incompatible with the JIT")) w_result = space.newdict() ecs = space.threadlocals.getallvalues() for thread_ident, ec in ecs.items(): _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit