Added Getnamev() macro.

This commit is contained in:
Guido van Rossum 1991-04-03 19:03:22 +00:00
parent a0c191eaa2
commit d594c91293
1 changed files with 1 additions and 0 deletions

View File

@ -72,6 +72,7 @@ frameobject * newframeobject PROTO(
#define Getconst(f, i) (GETITEM((f)->f_code->co_consts, (i)))
#define Getname(f, i) (GETITEMNAME((f)->f_code->co_names, (i)))
#define Getnamev(f, i) (GETITEM((f)->f_code->co_names, (i)))
/* Block management functions */