{{ message }}
bpo-31344: Per-frame control of trace events#3417
Merged
ncoghlan merged 7 commits intoSep 8, 2017
Merged
Conversation
zooba
approved these changes
Sep 7, 2017
zooba
left a comment
Member
There was a problem hiding this comment.
Looks good to me (with a post-8pm caveat)
Sorry, something went wrong.
|
This would potentially come in handy for debuggers; e.g. we could implement per-statement (rather than per-line) stepping with this. |
Sorry, something went wrong.
f_trace_lines: enable/disable line trace events f_trace_opcodes: enable/disable opcode trace events These are intended primarily for testing of the interpreter itself, as they make it much easier to emulate signals arriving at unfortunate times.
494f6e7 to
8c9fcba
Compare
September 7, 2017 17:14
gpshead
reviewed
Sep 7, 2017
gpshead
left a comment
Member
There was a problem hiding this comment.
overall good, some comments to address.
Sorry, something went wrong.
gpshead
approved these changes
Sep 7, 2017
Contributor
Author
|
Merging as the previous Appveyor run already passed: https://ci.appveyor.com/project/python/cpython/build/3.7.0a0.6126 |
Sorry, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.
f_trace_lines: enable/disable line trace events
f_trace_opcodes: enable/disable opcode trace events
These are intended primarily for testing of the interpreter
itself, as they make it much easier to emulate signals
arriving at unfortunate times.
https://bugs.python.org/issue31344