]> granicus.if.org Git - python/commitdiff
bpo-33882: mention breakpoint() in debugger-related FAQ (GH-7759)
authorAndre Delfino <adelfino@gmail.com>
Fri, 3 May 2019 16:53:22 +0000 (13:53 -0300)
committerÉric Araujo <merwok@netwok.org>
Fri, 3 May 2019 16:53:21 +0000 (12:53 -0400)
Doc/faq/programming.rst

index 31614189a62d2ceb723e445045c776d948259695..f14e8cc824ef747b8fe3d6ad7aba8d59eb97aa53 100644 (file)
@@ -16,6 +16,9 @@ Is there a source code level debugger with breakpoints, single-stepping, etc.?
 
 Yes.
 
+Several debuggers for Python are described below, and the built-in function
+:func:`breakpoint` allows you to drop into any of them.
+
 The pdb module is a simple but adequate console-mode debugger for Python. It is
 part of the standard Python library, and is :mod:`documented in the Library
 Reference Manual <pdb>`. You can also write your own debugger by using the code