Reuven M. Lerner @lernerpython.com · 8d

Old #Python: import pdb; pdb.set_trace() New Python: breakpoint() The breakpoint() builtin (3.7) drops you into the debugger. Shorter, and you can configure which debugger it opens.

2 likes 0 replies

?