[issue8480] test_gdb: No frame is currently selected.

2010-04-21 Thread STINNER Victor
STINNER Victor added the comment: Oops, I read "it doesn't fix", sorry :-) -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue8480] test_gdb: No frame is currently selected.

2010-04-21 Thread Martin v . Löwis
Martin v. Löwis added the comment: See msg103889. I said it's fixed, so I'm not sure what problem you are still trying to solve. -- ___ Python tracker ___ __

[issue8480] test_gdb: No frame is currently selected.

2010-04-21 Thread STINNER Victor
STINNER Victor added the comment: @Martin: What is your OS? In msg103442 you wrote that you have gdb 7.0.1. Did you try to remove python-gdb.py? (test_gdb should remove and/or update this file!) I tested test_gdb of py3k on Debian Sid (gdb 7.1) and Ubuntu 9.10 (gdb 7.0): I got a lot of error

[issue8480] test_gdb: No frame is currently selected.

2010-04-21 Thread Martin v . Löwis
Martin v. Löwis added the comment: Victor's patch look fine to me (at least, I can't see a problem with it). If so, we should keep it. In any case, it does fix the problem reported here. -- ___ Python tracker ___

[issue8480] test_gdb: No frame is currently selected.

2010-04-21 Thread Dave Malcolm
Dave Malcolm added the comment: There was a patch for this attached to issue 8380, and you've fixed things in a different way. Should I regenerate a patch against what's now in SVN, or should we use my patch? -- assignee: dmalcolm -> loewis ___ Py

[issue8480] test_gdb: No frame is currently selected.

2010-04-21 Thread STINNER Victor
STINNER Victor added the comment: libpython.py had a type "PyStringObjectPtr" referencing "PyStringObject" type, whereas Python3 uses "PybytesObject". That's why you got this error. It should be fixed by r80311 (and r80312). -- resolution: -> fixed status: open -> closed ___

[issue8480] test_gdb: No frame is currently selected.

2010-04-21 Thread STINNER Victor
STINNER Victor added the comment: I may be related to #8482 (compiler optimization level?). -- nosy: +haypo ___ Python tracker ___ ___

[issue8480] test_gdb: No frame is currently selected.

2010-04-20 Thread Martin v . Löwis
New submission from Martin v. Löwis : test_gdb fails on 3k; some tests with a message "Error occurred in Python command: No frame is currently selected." A separate problem was reported as #8479; I'm attaching the full test_gdb output. -- assignee: dmalcolm files: test_gdb.txt message