mirror of
https://github.com/python/cpython.git
synced 2025-10-21 22:22:48 +00:00
SF patch # 580411, move frame macros from frameobject.h into ceval.c
remove unused macros use co alias instead of f->f_code in macros
This commit is contained in:
parent
b6d29b7856
commit
a81d220625
2 changed files with 10 additions and 23 deletions
|
@ -521,11 +521,18 @@ eval_frame(PyFrameObject *f)
|
|||
char *filename;
|
||||
#endif
|
||||
|
||||
/* Tuple access macros */
|
||||
|
||||
#ifndef Py_DEBUG
|
||||
#define GETITEM(v, i) PyTuple_GET_ITEM((PyTupleObject *)(v), (i))
|
||||
#else
|
||||
#define GETITEM(v, i) PyTuple_GetItem((v), (i))
|
||||
#endif
|
||||
|
||||
/* Code access macros */
|
||||
|
||||
#define GETCONST(i) Getconst(f, i)
|
||||
#define GETNAME(i) Getname(f, i)
|
||||
#define GETNAMEV(i) Getnamev(f, i)
|
||||
#define GETCONST(i) (GETITEM(co->co_consts, (i)))
|
||||
#define GETNAMEV(i) (GETITEM(co->co_names, (i)))
|
||||
#define INSTR_OFFSET() (next_instr - first_instr)
|
||||
#define NEXTOP() (*next_instr++)
|
||||
#define NEXTARG() (next_instr += 2, (next_instr[-1]<<8) + next_instr[-2])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue