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

vyktor report at bugs.python.org
Sat May 9 17:49:21 CEST 2015


vyktor added the comment:

In here:

> /home/vyktor/src/error/minimal.py(1)<module>()
-> 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)<module>()
-> print('2')
(Pdb) 


until has no effect.

Expected behavior would be executing print 2 and 3.

----------
Added file: http://bugs.python.org/file39327/minimal.py

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue24140>
_______________________________________


More information about the Python-bugs-list mailing list