About 600 results
Open links in new tab
  1. pdb — The Python Debugger — Python 3.13.4 documentation

    2 days ago · The module pdb defines an interactive source code debugger for Python programs. It supports setting (conditional) breakpoints and single stepping at the source line level, …

  2. Debugging and Profiling — Python 3.13.5 documentation

    3 days ago · These libraries help you with Python development: the debugger enables you to step through code, analyze stack frames and set breakpoints etc., and the profilers run code and …

  3. IDLE — Python editor and shell — Python 3.15.0a0 documentation

    1 day ago · Debugger (toggle) When activated, code entered in the Shell or run from an Editor will run under the debugger. In the Editor, breakpoints can be set with the context menu. This …

  4. Logging HOWTO — Python 3.13.5 documentation

    When to use logging ¶ You can access logging functionality by creating a logger via logger = getLogger(__name__), and then calling the logger’s debug(), info(), warning(), error() and …

  5. The Python Profilers — Python 3.13.5 documentation

    2 days ago · python -m cProfile [-o output_file] [-s sort_order] (-m module | myscript.py) -o <output_file> ¶ Writes the profile results to a file instead of to stdout. -s <sort_order> ¶ …

  6. Debugging C API extensions and CPython Internals with GDB

    2 days ago · This document explains how the Python GDB extension, python-gdb.py, can be used with the GDB debugger to debug CPython extensions and the CPython interpreter itself.

  7. faulthandler — Dump the Python traceback — Python 3.13.5 …

    3 days ago · This module contains functions to dump Python tracebacks explicitly, on a fault, after a timeout, or on a user signal. Call faulthandler.enable() to install fault handlers for the …

  8. bdb — Debugger framework — Python 3.13.5 documentation

    3 days ago · The line of code (if it exists). The following two methods can be called by clients to use a debugger to debug a statement, given as a string. run(cmd, globals=None, locals=None) …

  9. Remote debugging attachment protocol — Python 3.14.0b2 …

    6 days ago · Remote debugging attachment protocol ¶ This section describes the low-level protocol that enables external tools to inject and execute a Python script within a running …

  10. tracemalloc — Trace memory allocations — Python 3.13.4 …

    2 days ago · The tracemalloc module is a debug tool to trace memory blocks allocated by Python. It provides the following information: Traceback where an object was allocated Statistics on …

Refresh