In pdb debugger, add "c LINE" to continue and break at LINE number

I have Python 3.12 on Windows 10 and Windows 11.

Currently in the pdb CLI debugger, if we type “c 23” it will not break at line 23. We have to do 2 steps: 1) b 23 then 2) c.

I’d like to propose that “c 23” would break at line 23, or any line number the programmer specifies.

until 23 (or unt 23) exists for this purpose.