summaryrefslogtreecommitdiffstats
path: root/Include/frameobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1991-04-03 19:03:22 (GMT)
committerGuido van Rossum <guido@python.org>1991-04-03 19:03:22 (GMT)
commitd594c91293f92798c0ed856de53d0c803cf8050d (patch)
treea0a53e95286d9743b7daa149a48d8e0555078b98 /Include/frameobject.h
parenta0c191eaa2b39ad2286030f50014796ec371e272 (diff)
downloadcpython-d594c91293f92798c0ed856de53d0c803cf8050d.zip
cpython-d594c91293f92798c0ed856de53d0c803cf8050d.tar.gz
cpython-d594c91293f92798c0ed856de53d0c803cf8050d.tar.bz2
Added Getnamev() macro.
Diffstat (limited to 'Include/frameobject.h')
-rw-r--r--Include/frameobject.h1
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 */