[issue13628] python-gdb.py: patch to improve support of optimized Python

2011-12-19 Thread STINNER Victor
STINNER Victor added the comment: > It is possible to retrieve "f" from the caller, PyEval_EvalCodeEx() It does not always work, but it works sometimes, so it's better to try :-) I applied my fix to Python 2.7, 3.2 and 3.3. lipython.py of Python 2.7 is outdated, it should be resynchronized wi

[issue13628] python-gdb.py: patch to improve support of optimized Python

2011-12-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1cc8e9565339 by Victor Stinner in branch '2.7': Issue #13628: python-gdb.py is now able to retrieve more frames in the Python http://hg.python.org/cpython/rev/1cc8e9565339 -- ___ Python tracker

[issue13628] python-gdb.py: patch to improve support of optimized Python

2011-12-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0b03cb97dac0 by Victor Stinner in branch '3.2': Issue #13628: python-gdb.py is now able to retrieve more frames in the Python http://hg.python.org/cpython/rev/0b03cb97dac0 New changeset 5e3a172bba89 by Victor Stinner in branch 'default': (Merge 3.2

[issue13628] python-gdb.py: patch to improve support of optimized Python

2011-12-18 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue13628] python-gdb.py: patch to improve support of optimized Python

2011-12-18 Thread Meador Inge
Changes by Meador Inge : -- nosy: +meador.inge ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue13628] python-gdb.py: patch to improve support of optimized Python

2011-12-18 Thread Meador Inge
Changes by Meador Inge : -- components: +Demos and Tools stage: -> patch review type: -> behavior ___ Python tracker ___ ___ Python-

[issue13628] python-gdb.py: patch to improve support of optimized Python

2011-12-18 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +dmalcolm ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue13628] python-gdb.py: patch to improve support of optimized Python

2011-12-18 Thread STINNER Victor
New submission from STINNER Victor : If Python is compiled with gcc -O3, gdb is unable to get the f argument of PyEval_EvalFrameEx(). It is possible to retrieve "f" from the caller, PyEval_EvalCodeEx(). Attached patch tries to implement this idea and enable more test_gdb tests on optimized Py