diff options
author | Andre Delfino <adelfino@gmail.com> | 2019-05-03 16:53:22 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2019-05-03 16:53:21 (GMT) |
commit | cf48e55f7f7718482fa712552f0cbc0aea1c826f (patch) | |
tree | ce4947f79ac34a18480ef9132b5bd87eb55e3974 /Doc | |
parent | 4737b923df6fbdb9e2bf3fdccea2112270556e0a (diff) | |
download | cpython-cf48e55f7f7718482fa712552f0cbc0aea1c826f.zip cpython-cf48e55f7f7718482fa712552f0cbc0aea1c826f.tar.gz cpython-cf48e55f7f7718482fa712552f0cbc0aea1c826f.tar.bz2 |
bpo-33882: mention breakpoint() in debugger-related FAQ (GH-7759)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/faq/programming.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst index 3161418..f14e8cc 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 |