Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove 'Python' from docs which previously distinguishing from c events
  • Loading branch information
FredericDT committed Jul 23, 2025
commit 8bfd9684c17b2cb11081188597e86706d92d1b1c
2 changes: 1 addition & 1 deletion Doc/library/bdb.rst
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ The :mod:`bdb` module also defines two classes:
* ``"return"``: A function or other code block is about to return.
* ``"exception"``: An exception has occurred.

For the Python events, specialized functions (see below) are called.
For all the events, specialized functions (see below) are called.

The *arg* parameter depends on the previous event.

Expand Down
2 changes: 1 addition & 1 deletion Lib/bdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ def trace_dispatch(self, frame, event, arg):
return: A function or other code block is about to return.
exception: An exception has occurred.

For the Python events, specialized functions (see the dispatch_*()
For all the events, specialized functions (see the dispatch_*()
methods) are called.

The arg parameter depends on the previous event.
Expand Down
Loading