Skip to content

Commit 1efbe41

Browse files
committed
first unstable py
1 parent 51227b6 commit 1efbe41

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

Doc/c-api/frame.rst

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,3 +250,39 @@ Unless using :pep:`523`, you will not need this.
250250
.. versionadded:: 3.12
251251
252252
253+
.. c:macro:: PyUnstable_EXECUTABLE_KIND_SKIP
254+
255+
Index for the "skip" kind in :c:var:`PyUnstable_ExecutableKinds`.
256+
Indicates that the frame's code object should be skipped.
257+
258+
.. versionadded:: 3.12
259+
260+
261+
.. c:macro:: PyUnstable_EXECUTABLE_KIND_PY_FUNCTION
262+
263+
Index for the "Python function" kind in :c:var:`PyUnstable_ExecutableKinds`.
264+
265+
.. versionadded:: 3.12
266+
267+
268+
.. c:macro:: PyUnstable_EXECUTABLE_KIND_BUILTIN_FUNCTION
269+
270+
Index for the "built-in function" kind in :c:var:`PyUnstable_ExecutableKinds`.
271+
272+
.. versionadded:: 3.12
273+
274+
275+
.. c:macro:: PyUnstable_EXECUTABLE_KIND_METHOD_DESCRIPTOR
276+
277+
Index for the "method descriptor" kind in :c:var:`PyUnstable_ExecutableKinds`.
278+
279+
.. versionadded:: 3.12
280+
281+
282+
.. c:macro:: PyUnstable_EXECUTABLE_KINDS
283+
284+
The number of entries in :c:var:`PyUnstable_ExecutableKinds`.
285+
286+
.. versionadded:: 3.12
287+
288+

0 commit comments

Comments
 (0)