This file contains 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
python -c "breakpoint()" | |
# Will pause execution at the breakpoint and start the debugger | |
PYTHONBREAKPOINT=0 python -c "breakpoint()" | |
# Skips the breakpoint |
NewerOlder