[New-bugs-announce] [issue7698] pystack macro in Misc/gdbinit incorrectly uses PyEval_EvalFrame

Jean-Paul Calderone report at bugs.python.org
Thu Jan 14 01:49:08 CET 2010


New submission from Jean-Paul Calderone <exarkun at divmod.com>:

pystack tries to detect C frames which it can extract Python frame info from.  However, it still references the old, now (supposedly) unused PyEval_EvalFrame function.  This leads it to never find any frames, since PyEval_EvalFrameEx is now what's actually on the stack.  It should be referring to that function.

Attached makes the necessary change.

----------
components: Demos and Tools
files: evalframeex.patch
keywords: patch
messages: 97744
nosy: exarkun
severity: normal
status: open
title: pystack macro in Misc/gdbinit incorrectly uses PyEval_EvalFrame
versions: Python 2.6
Added file: http://bugs.python.org/file15864/evalframeex.patch

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue7698>
_______________________________________


More information about the New-bugs-announce mailing list