You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the Pdb command step is used after the last line of the script, Pdb will set the trace_dispath function as the trace function of the caller's frame. Consequently, the trace_dispath function will be called at line 48 after the script execution has finished.
If the Pdb command
step
is used after the last line of the script, Pdb will set thetrace_dispath
function as the trace function of the caller's frame. Consequently, thetrace_dispath
function will be called at line 48 after the script execution has finished.nextline/nextline/main.py
Lines 45 to 49 in a0ed6aa
The
trace_dispath
function is set inBdb.set_trace()
https://github.com/python/cpython/blob/v3.9.5/Lib/bdb.py#L298-L308
The text was updated successfully, but these errors were encountered: