[Python-checkins] bpo-33882: mention breakpoint() in debugger-related FAQ (GH-7759)

Éric Araujo webhook-mailer at python.org
Fri May 3 12:53:29 EDT 2019


https://github.com/python/cpython/commit/cf48e55f7f7718482fa712552f0cbc0aea1c826f
commit: cf48e55f7f7718482fa712552f0cbc0aea1c826f
branch: master
author: Andre Delfino <adelfino at gmail.com>
committer: Éric Araujo <merwok at netwok.org>
date: 2019-05-03T12:53:21-04:00
summary:

bpo-33882: mention breakpoint() in debugger-related FAQ (GH-7759)

files:
M Doc/faq/programming.rst

diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst
index 31614189a62d..f14e8cc824ef 100644
--- a/Doc/faq/programming.rst
+++ b/Doc/faq/programming.rst
@@ -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



More information about the Python-checkins mailing list