8000 gh-111744: Support opcode events in bdb by gaogaotiantian · Pull Request #111834 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-111744: Support opcode events in bdb #111834

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
May 4, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix a missing piece
  • Loading branch information
gaogaotiantian committed May 4, 2024
commit 05072f49f79188c6c9cd5adae73d556f314831c2
3 changes: 1 addition & 2 deletions Lib/bdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,8 +397,7 @@ def set_continue(self):
frame = frame.f_back
for frame, (trace_lines, trace_opcodes) in self.frame_trace_lines_opcodes.items():
frame.f_trace_lines, frame.f_trace_opcodes = trace_lines, trace_opcodes
self.frame_trace_lines = {}
self.frame_trace_opcodes = {}
self.frame_trace_lines_opcodes = {}

def set_quit(self):
"""Set quitting attribute to True.
Expand Down
0