diff options
author | Guido van Rossum <guido@python.org> | 1991-04-03 19:03:22 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-04-03 19:03:22 (GMT) |
commit | d594c91293f92798c0ed856de53d0c803cf8050d (patch) | |
tree | a0a53e95286d9743b7daa149a48d8e0555078b98 /Include/frameobject.h | |
parent | a0c191eaa2b39ad2286030f50014796ec371e272 (diff) | |
download | cpython-d594c91293f92798c0ed856de53d0c803cf8050d.zip cpython-d594c91293f92798c0ed856de53d0c803cf8050d.tar.gz cpython-d594c91293f92798c0ed856de53d0c803cf8050d.tar.bz2 |
Added Getnamev() macro.
Diffstat (limited to 'Include/frameobject.h')
-rw-r--r-- | Include/frameobject.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/frameobject.h b/Include/frameobject.h index 63e6046..22bdfa9 100644 --- a/Include/frameobject.h +++ b/Include/frameobject.h @@ -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 */ |