mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
new names for lots of new functions
This commit is contained in:
parent
8e8a525f22
commit
938178283c
19 changed files with 90 additions and 55 deletions
|
@ -72,7 +72,7 @@ PyFrameObject * PyFrame_New
|
|||
|
||||
/* The rest of the interface is specific for frame objects */
|
||||
|
||||
/* List access macros */
|
||||
/* Tuple access macros */
|
||||
|
||||
#ifdef NDEBUG
|
||||
#define GETITEM(v, i) PyTuple_GET_ITEM((PyTupleObject *)(v), (i))
|
||||
|
@ -103,8 +103,8 @@ PyObject **PyFrame_ExtendStack Py_PROTO((PyFrameObject *, int, int));
|
|||
|
||||
/* Conversions between "fast locals" and locals in dictionary */
|
||||
|
||||
void locals_2_fast Py_PROTO((PyFrameObject *, int));
|
||||
void fast_2_locals Py_PROTO((PyFrameObject *));
|
||||
void PyFrame_LocalsToFast Py_PROTO((PyFrameObject *, int));
|
||||
void PyFrame_FastToLocals Py_PROTO((PyFrameObject *));
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue