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
wget -P ~ https://github.com/cyrus-and/gdb-dashboard/raw/master/.gdbinit gdb -ex r --args python code/armstrong.py
armstrong.py:
[...] while temp > 0: digit = temp % 10 sum += digit ** order temp //= 10 breakpoint() [...]
Unfortunately the dashboard does not show up though breakpoint was set.
The text was updated successfully, but these errors were encountered:
GDB cannot debug Python code...
Sorry, something went wrong.
https://wiki.python.org/moin/DebuggingWithGdb
That's how you debug Python (the runtime), not Python (the language). Hence the above breakpoint() makes no sense for GDB.
breakpoint()
No branches or pull requests
armstrong.py:
Unfortunately the dashboard does not show up though breakpoint was set.
The text was updated successfully, but these errors were encountered: