Skip to content

Commit 45e9a6d

Browse files
committed
pyframe fix 7
1 parent 3fafd77 commit 45e9a6d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Doc/c-api/frame.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ Unless using :pep:`523`, you will not need this.
256256
debugging and tracing.
257257
258258
Tools like debuggers and profilers can use this to identify the type of execution
259-
context associated with a frame (e.g. to filter out internal frames).
259+
context associated with a frame (For example: to filter out internal frames).
260260
The entries are indexed by the following constants:
261261
262262
.. list-table::
@@ -266,12 +266,10 @@ Unless using :pep:`523`, you will not need this.
266266
* - Constant
267267
- Description
268268
* - .. c:macro:: PyUnstable_EXECUTABLE_KIND_SKIP
269-
- The frame is internal (e.g. inlined) and should be skipped by tools.
269+
- The frame is internal (For example: inlined) and should be skipped by tools.
270270
* - .. c:macro:: PyUnstable_EXECUTABLE_KIND_PY_FUNCTION
271271
- The frame corresponds to a standard Python function.
272272
273-
.. versionadded:: 3.13
274-
275273
Example usage:
276274
277275
.. code-block:: c
@@ -283,6 +281,8 @@ Unless using :pep:`523`, you will not need this.
283281
continue;
284282
}
285283
284+
.. versionadded:: 3.13
285+
286286
287287
.. c:macro:: PyUnstable_EXECUTABLE_KIND_PY_FUNCTION
288288

0 commit comments

Comments
 (0)