ericjmorey@programming.dev to Python@programming.dev · 1 year agoSyntax Error Newsletter #5: Python breakpointswww.syntaxerror.techexternal-linkmessage-square1fedilinkarrow-up117arrow-down11file-text
arrow-up116arrow-down1external-linkSyntax Error Newsletter #5: Python breakpointswww.syntaxerror.techericjmorey@programming.dev to Python@programming.dev · 1 year agomessage-square1fedilinkfile-text
This month we look at debuggers in Python and how to choose your own debugger instead of relying on the built-in pdb.
minus-squarepnutzh4x0r@lemmy.ndlug.orglinkfedilinkEnglisharrow-up3·1 year agoI sometimes use gdb with C and C++, but never really use pdb with Python… mostly stick with logging (ok, print statements). This is good information to know though, and I should probably get better at using a debugger with Python.
I sometimes use
gdb
with C and C++, but never really usepdb
with Python… mostly stick with logging (ok,print
statements). This is good information to know though, and I should probably get better at using a debugger with Python.