bpo-33882: mention breakpoint() in debugger-related FAQ (GH-7759) · python/cpython@cf48e55 (original) (raw)

Original file line number Diff line number Diff line change
@@ -16,6 +16,9 @@ Is there a source code level debugger with breakpoints, single-stepping, etc.?
16 16
17 17 Yes.
18 18
19 +Several debuggers for Python are described below, and the built-in function
20 +:func:`breakpoint` allows you to drop into any of them.
21 +
19 22 The pdb module is a simple but adequate console-mode debugger for Python. It is
20 23 part of the standard Python library, and is :mod:`documented in the Library
21 24 Reference Manual `. You can also write your own debugger by using the code