This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vyktor
Recipients georg.brandl, vyktor, xdegaye
Date 2015-05-09.15:49:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1431186561.14.0.449032187194.issue24140@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2015-05-09 15:49:21vyktorsetrecipients: + vyktor, georg.brandl, xdegaye
2015-05-09 15:49:21vyktorsetmessageid: <1431186561.14.0.449032187194.issue24140@psf.upfronthosting.co.za>
2015-05-09 15:49:21vyktorlinkissue24140 messages
2015-05-09 15:49:21vyktorcreate