The Computer Oracle

show all breakpoints when debug a python code with pdb

--------------------------------------------------
Hire the world's top talent on demand or became one of them at Toptal: https://topt.al/25cXVn
and get $2,000 discount on your first invoice
--------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: Isolated

--

Chapters
00:00 Show All Breakpoints When Debug A Python Code With Pdb
00:16 Accepted Answer Score 35
00:35 Thank you

--

Full question
https://superuser.com/questions/723514/s...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#python #debug #ipython

#avk47



ACCEPTED ANSWER

Score 35


Use the b command with no arguments.

Without argument, list all breaks, including for each breakpoint, the number of times that breakpoint has been hit, the current ignore count, and the associated condition if any.

from http://docs.python.org/2/library/pdb.html