File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments