[issue30761] pdb: Add step / next count arguments

2017-08-26 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- nosy: +barry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue30761] pdb: Add step / next count arguments

2017-06-26 Thread Raymond Hettinger
Raymond Hettinger added the comment: FWIW, I've never needed this ever. -- nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-li

[issue30761] pdb: Add step / next count arguments

2017-06-26 Thread Xavier de Gaye
Xavier de Gaye added the comment: Thanks for this PR Louie, adding count to the pdb commands is useful. With gdb a very common use case is to set a breakpoint where the code runs very frequently and when only interested in the N(th) execution of this code, to enter the breakpoint command list:

[issue30761] pdb: Add step / next count arguments

2017-06-26 Thread STINNER Victor
STINNER Victor added the comment: @Xavier: Would you mind to review this enhancement? Thanks. -- nosy: +haypo, xdegaye ___ Python tracker ___

[issue30761] pdb: Add step / next count arguments

2017-06-26 Thread Louie Lu
Changes by Louie Lu : -- pull_requests: +2446 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue30761] pdb: Add step / next count arguments

2017-06-26 Thread Louie Lu
New submission from Louie Lu: This propose to add *count* times on step and next instruction in pdb. step [count] next [count] User can use `next [count]` to run next *count* times, or `step [count]` to run step *count* times, until it countdown, or occure a breakpoint. Similar functi