Breakpoints in non-stdlib modules named io.py
are always skipped
#542
Labels
info-needed
Issue requires more information from poster
triage-needed
Needs assignment to the proper sub-team
Any breakpoint within a non-stdlib module named
io.py
will always be skipped.e.g. consider the python package:
If you add a breakpoint inside
mypackage.io.foo
it will always be skipped, and you cannot step into that module.Renaming the module to anything else fixes the issue.
PDB honour's breakpoints in that module (i.e. add
breakpoint()
inmypackage.io.foo
and runningpython -m mypackage.main
)The text was updated successfully, but these errors were encountered: