From: Guido van Rossum Date: Wed, 3 Apr 1991 19:03:22 +0000 (+0000) Subject: Added Getnamev() macro. X-Git-Tag: v0.9.8~1018 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d594c91293f92798c0ed856de53d0c803cf8050d;p=thirdparty%2FPython%2Fcpython.git Added Getnamev() macro. --- diff --git a/Include/frameobject.h b/Include/frameobject.h index 63e6046915dd..22bdfa9c11eb 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 */