We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
When used as an entry point, the trace module opens code files without using io.open_code:
trace
io.open_code
https://github.com/python/cpython/blob/main/Lib/trace.py#L719
This should use the io.open_code method instead of open(..., 'rb').
open(..., 'rb')
io.open_code()
When used as an entry point, the
tracemodule opens code files without usingio.open_code:https://github.com/python/cpython/blob/main/Lib/trace.py#L719
This should use the
io.open_codemethod instead ofopen(..., 'rb').Linked PRs
io.open_code()to open executable file #103947io.open_code()when executing code in trace and profile modules (GH-103947) #103950io.open_code()when executing code in trace and profile modules (GH-103947) #103952io.open_code()when executing code in trace and profile modules (GH-103947) #103953io.open_code()when executing code in trace and profile modules (GH-103947) #103954