@@ -33,47 +33,28 @@ bound into a function.
33
33
34
34
Return the number of free variables in *co *.
35
35
36
- .. c :function :: PyCodeObject* PyUnstable_Code_New (int argcount, int kwonlyargcount, int nlocals, int stacksize, int flags, PyObject *code, PyObject *consts, PyObject *names, PyObject *varnames, PyObject *freevars, PyObject *cellvars, PyObject *filename, PyObject *name, int firstlineno, PyObject *linetable, PyObject *exceptiontable)
36
+ .. c :function :: PyCodeObject* PyCode_New (int argcount, int kwonlyargcount, int nlocals, int stacksize, int flags, PyObject *code, PyObject *consts, PyObject *names, PyObject *varnames, PyObject *freevars, PyObject *cellvars, PyObject *filename, PyObject *name, int firstlineno, PyObject *linetable, PyObject *exceptiontable)
37
37
38
38
Return a new code object. If you need a dummy code object to create a frame,
39
- use :c:func: `PyCode_NewEmpty ` instead.
40
-
41
- Since the definition of the bytecode changes often, calling
42
- :c:func: `PyCode_New ` directly can bind you to a precise Python version.
43
-
44
- The many arguments of this function are inter-dependent in complex
39
+ use :c:func: `PyCode_NewEmpty ` instead. Calling :c:func: `PyCode_New ` directly
40
+ will bind you to a precise Python version since the definition of the bytecode
41
+ changes often. The many arguments of this function are inter-dependent in complex
45
42
ways, meaning that subtle changes to values are likely to result in incorrect
46
43
execution or VM crashes. Use this function only with extreme care.
47
44
48
45
.. versionchanged :: 3.11
49
46
Added ``exceptiontable `` parameter.
50
47
51
- .. index :: single: PyCode_New
52
-
53
- .. versionchanged :: 3.12
54
-
55
- Renamed from ``PyCode_New `` as part of :ref: `unstable-c-api `.
56
- The old name is deprecated, but will remain available until the
57
- signature changes again.
58
-
59
- .. c :function :: PyCodeObject* PyUnstable_Code_NewWithPosOnlyArgs (int argcount, int posonlyargcount, int kwonlyargcount, int nlocals, int stacksize, int flags, PyObject *code, PyObject *consts, PyObject *names, PyObject *varnames, PyObject *freevars, PyObject *cellvars, PyObject *filename, PyObject *name, int firstlineno, PyObject *linetable, PyObject *exceptiontable)
48
+ .. c :function :: PyCodeObject* PyCode_NewWithPosOnlyArgs (int argcount, int posonlyargcount, int kwonlyargcount, int nlocals, int stacksize, int flags, PyObject *code, PyObject *consts, PyObject *names, PyObject *varnames, PyObject *freevars, PyObject *cellvars, PyObject *filename, PyObject *name, int firstlineno, PyObject *linetable, PyObject *exceptiontable)
60
49
61
50
Similar to :c:func: `PyCode_New `, but with an extra "posonlyargcount" for positional-only arguments.
62
51
The same caveats that apply to ``PyCode_New `` also apply to this function.
63
52
64
- .. index :: single: PyCode_NewWithPosOnlyArgs
65
-
66
- .. versionadded :: 3.8 as ``PyCode_NewWithPosOnlyArgs``
53
+ .. versionadded :: 3.8
67
54
68
55
.. versionchanged :: 3.11
69
56
Added ``exceptiontable `` parameter.
70
57
71
- .. versionchanged :: 3.12
72
-
73
- Renamed to ``PyUnstable_Code_NewWithPosOnlyArgs ``.
74
- The old name is deprecated, but will remain available until the
75
- signature changes again.
76
-
77
58
.. c :function :: PyCodeObject* PyCode_NewEmpty (const char *filename, const char *funcname, int firstlineno)
78
59
79
60
Return a new empty code object with the specified filename,
@@ -136,129 +117,3 @@ bound into a function.
136
117
the free variables. On error, ``NULL `` is returned and an exception is raised.
137
118
138
119
.. versionadded :: 3.11
139
-
140
- .. c :function :: int PyCode_AddWatcher (PyCode_WatchCallback callback)
141
-
142
- Register *callback* as a code object watcher for the current interpreter.
143
- Return an ID which may be passed to :c:func:`PyCode_ClearWatcher`.
144
- In case of error (e.g. no more watcher IDs available),
145
- return ``-1`` and set an exception.
146
-
147
- .. versionadded:: 3.12
148
-
149
- .. c:function:: int PyCode_ClearWatcher(int watcher_id)
150
-
151
- Clear watcher identified by *watcher_id* previously returned from
152
- :c:func:`PyCode_AddWatcher` for the current interpreter.
153
- Return ``0`` on success, or ``-1`` and set an exception on error
154
- (e.g. if the given *watcher_id * was never registered.)
155
-
156
- .. versionadded:: 3.12
157
-
158
- .. c:type:: PyCodeEvent
159
-
160
- Enumeration of possible code object watcher events:
161
- - ``PY_CODE_EVENT_CREATE``
162
- - ``PY_CODE_EVENT_DESTROY``
163
-
164
- .. versionadded:: 3.12
165
-
166
- .. c:type:: int (*PyCode_WatchCallback)(PyCodeEvent event, PyCodeObject * co)
167
-
168
- Type of a code object watcher callback function.
169
-
170
- If *event* is ``PY_CODE_EVENT_CREATE``, then the callback is invoked
171
- after `co` has been fully initialized. Otherwise, the callback is invoked
172
- before the destruction of *co* takes place, so the prior state of *co*
173
- can be inspected.
174
-
175
- If *event* is ``PY_CODE_EVENT_DESTROY``, taking a reference in the callback
176
- to the about-to-be-destroyed code object will resurrect it and prevent it
177
- from being freed at this time. When the resurrected object is destroyed
178
- later, any watcher callbacks active at that time will be called again.
179
-
180
- Users of this API should not rely on internal runtime implementation
181
- details. Such details may include, but are not limited to, the exact
182
- order and timing of creation and destruction of code objects. While
183
- changes in these details may result in differences observable by watchers
184
- (including whether a callback is invoked or not), it does not change
185
- the semantics of the Python code being executed.
186
-
187
- If the callback sets an exception, it must return ``-1``; this exception will
188
- be printed as an unraisable exception using :c:func: `PyErr_WriteUnraisable `.
189
- Otherwise it should return ``0 ``.
190
-
191
- There may already be a pending exception set on entry to the callback. In
192
- this case, the callback should return ``0 `` with the same exception still
193
- set. This means the callback may not call any other API that can set an
194
- exception unless it saves and clears the exception state first, and restores
195
- it before returning.
196
-
197
- .. versionadded :: 3.12
198
-
199
-
200
- Extra information
201
- -----------------
202
-
203
- To support low-level extensions to frame evaluation, such as external
204
- just-in-time compilers, it is possible to attach arbitrary extra data to
205
- code objects.
206
-
207
- These functions are part of the unstable C API tier:
208
- this functionality is a CPython implementation detail, and the API
209
- may change without deprecation warnings.
210
-
211
- .. c :function :: Py_ssize_t PyUnstable_Eval_RequestCodeExtraIndex (freefunc free)
212
-
213
- Return a new an opaque index value used to adding data to code objects.
214
-
215
- You generally call this function once (per interpreter) and use the result
216
- with ``PyCode_GetExtra`` and ``PyCode_SetExtra`` to manipulate
217
- data on individual code objects.
218
-
219
- If *free* is not ``NULL``: when a code object is deallocated,
220
- *free* will be called on non-``NULL`` data stored under the new index.
221
- Use :c:func:`Py_DecRef` when storing :c:type:`PyObject`.
222
-
223
- .. index:: single: _PyEval_RequestCodeExtraIndex
224
-
225
- .. versionadded:: 3.6 as ``_PyEval_RequestCodeExtraIndex``
226
-
227
- .. versionchanged:: 3.12
228
-
229
- Renamed to ``PyUnstable_Eval_RequestCodeExtraIndex``.
230
- The old private name is deprecated, but will be available until the API
231
- changes.
232
-
233
- .. c:function:: int PyUnstable_Code_GetExtra(PyObject *code, Py_ssize_t index, void **extra)
234
-
235
- Set *extra * to the extra data stored under the given index.
236
- Return 0 on success. Set an exception and return -1 on failure.
237
-
238
- If no data was set under the index, set *extra * to ``NULL `` and return
239
- 0 without setting an exception.
240
-
241
- .. index :: single: _PyCode_GetExtra
242
-
243
- .. versionadded :: 3.6 as ``_PyCode_GetExtra``
244
-
245
- .. versionchanged :: 3.12
246
-
247
- Renamed to ``PyUnstable_Code_GetExtra ``.
248
- The old private name is deprecated, but will be available until the API
249
- changes.
250
-
251
- .. c :function :: int PyUnstable_Code_SetExtra (PyObject *code, Py_ssize_t index, void *extra)
252
-
253
- Set the extra data stored under the given index to *extra *.
254
- Return 0 on success. Set an exception and return -1 on failure.
255
-
256
- .. index :: single: _PyCode_SetExtra
257
-
258
- .. versionadded :: 3.6 as ``_PyCode_SetExtra``
259
-
260
- .. versionchanged :: 3.12
261
-
262
- Renamed to ``PyUnstable_Code_SetExtra ``.
263
- The old private name is deprecated, but will be available until the API
264
- changes.
0 commit comments