From d594c91293f92798c0ed856de53d0c803cf8050d Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 3 Apr 1991 19:03:22 +0000 Subject: Added Getnamev() macro. --- Include/frameobject.h | 1 + 1 file changed, 1 insertion(+) 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 */ -- cgit v0.12