We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
debugpy
PYDEVD_IPYTHON_COMPATIBLE_DEBUGGING=1
A new flag is available in pydevd which allows a user to step into library code without getting inside of IPython internals while doing so.
pydevd
To make use of this, PYDEVD_IPYTHON_COMPATIBLE_DEBUGGING must be set to 1 in the os.environ prior to importing debugpy.
PYDEVD_IPYTHON_COMPATIBLE_DEBUGGING
1
os.environ
See: microsoft/debugpy#869 for more information.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
A new flag is available in
pydevd
which allows a user to step into library code without getting inside of IPython internals while doing so.To make use of this,
PYDEVD_IPYTHON_COMPATIBLE_DEBUGGING
must be set to1
in theos.environ
prior to importingdebugpy
.See: microsoft/debugpy#869 for more information.
The text was updated successfully, but these errors were encountered: