[issue24140] In pdb using "until X" doesn't seem to have effect in commands

2015-05-09 Thread Xavier de Gaye
Xavier de Gaye added the comment: The bug occurs also on the default branch: '3.5.0a4+ (default:8bac00eadfda, May 6 2015, 17:40:12) \n[GCC 4.9.2 20150304 (prerelease)]' The reason is that 'do_until' is missing from the Pdb.commands_resuming list, which causes the Pdb.bp_commands() method to in

[issue24140] In pdb using "until X" doesn't seem to have effect in commands

2015-05-09 Thread vyktor
vyktor added the comment: In here: > /home/vyktor/src/error/minimal.py(1)() -> print('1') (Pdb) break 2 Breakpoint 1 at /home/vyktor/src/error/minimal.py:2 (Pdb) commands 1 (com) print('Triggered bp 1') (com) until 4 (com) end (Pdb) cont 1 Triggered bp 1 > /home/vyktor/src/error/minimal.py(2)()

[issue24140] In pdb using "until X" doesn't seem to have effect in commands

2015-05-09 Thread vyktor
vyktor added the comment: Adding test.py, but according to docs https://docs.python.org/3.2/library/pdb.html#pdbcommand-commands "Specifying any command resuming execution (currently continue, step, next, return, jump, quit and their abbreviations) terminates the command list (as if that comm

[issue24140] In pdb using "until X" doesn't seem to have effect in commands

2015-05-09 Thread Xavier de Gaye
Xavier de Gaye added the comment: test.py is missing. -- nosy: +xdegaye ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue24140] In pdb using "until X" doesn't seem to have effect in commands

2015-05-07 Thread Ned Deily
Changes by Ned Deily : -- nosy: +georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue24140] In pdb using "until X" doesn't seem to have effect in commands

2015-05-07 Thread vyktor
New submission from vyktor: When using pdb -m pdb test.py and entering: (Pdb) b A.f Breakpoint 1 at d:\tmp\stack\test.py:8 (Pdb) commands 2 (com) disable 2 (com) until 13 (com) end Until doesn't seem to have any effect. When statement is executed manually, everything works as expected (executi