[issue8479] test_gdb in Python3: No stack

2010-04-21 Thread Dave Malcolm
Changes by Dave Malcolm : -- resolution: -> duplicate status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue8479] test_gdb in Python3: No stack

2010-04-21 Thread Dave Malcolm
Dave Malcolm added the comment: Issue 8380 contains a port of the code and tests to python 3; it's awaiting review. -- superseder: -> Port of the gdb7 debugging hooks to the "py3k" branch ___ Python tracker _

[issue8479] test_gdb in Python3: No stack

2010-04-21 Thread STINNER Victor
STINNER Victor added the comment: The problem is that test_gdb is not compatible with Python3. test_gdb uses "print x" syntax instead of "print(x)", and "except XXX, xxx:" instead of "except XXX as xxx:". Note: "print range(1000)" => "print(list(range(1000)))". DebuggerOutput.run_gdb() shoul