Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
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
pyframe fix 7
  • Loading branch information
Yashp002 committed Jan 22, 2026
commit 45e9a6d8a58d2bca8ac20ea442a3ac699bd50edd
8 changes: 4 additions & 4 deletions Doc/c-api/frame.rst
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ Unless using :pep:`523`, you will not need this.
debugging and tracing.

Tools like debuggers and profilers can use this to identify the type of execution
context associated with a frame (e.g. to filter out internal frames).
context associated with a frame (For example: to filter out internal frames).
The entries are indexed by the following constants:

.. list-table::
Expand All @@ -266,12 +266,10 @@ Unless using :pep:`523`, you will not need this.
* - Constant
- Description
* - .. c:macro:: PyUnstable_EXECUTABLE_KIND_SKIP
- The frame is internal (e.g. inlined) and should be skipped by tools.
- The frame is internal (For example: inlined) and should be skipped by tools.
* - .. c:macro:: PyUnstable_EXECUTABLE_KIND_PY_FUNCTION
- The frame corresponds to a standard Python function.

.. versionadded:: 3.13

Example usage:

.. code-block:: c
Expand All @@ -283,6 +281,8 @@ Unless using :pep:`523`, you will not need this.
continue;
}

.. versionadded:: 3.13


.. c:macro:: PyUnstable_EXECUTABLE_KIND_PY_FUNCTION

Expand Down
Loading