[pypy-commit] pypy default: Temporarily disable sys._current_frames(). The tests are left failing

arigo noreply at buildbot.pypy.org
Sat Sep 10 19:52:19 CEST 2011


Author: Armin Rigo <arigo at 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():


More information about the pypy-commit mailing list