Added Getnamev() macro.
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 @@
 
 #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 */