[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/

[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

[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 exp