From b8824952cb616bdb1b60bcf9fb3b486e91c7d42b Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 3 Apr 1991 18:59:50 +0000 Subject: [PATCH] Define and use GETNAMEV macro. --- Python/ceval.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Python/ceval.c b/Python/ceval.c index 7213d5b75b9..5a9723fc27b 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -647,6 +647,7 @@ eval_code(co, globals, locals, arg) #define GETCONST(i) Getconst(f, i) #define GETNAME(i) Getname(f, i) +#define GETNAMEV(i) Getnamev(f, i) #define FIRST_INSTR() (GETUSTRINGVALUE(f->f_code->co_code)) #define INSTR_OFFSET() (next_instr - FIRST_INSTR()) #define NEXTOP() (*next_instr++) @@ -1090,9 +1091,9 @@ eval_code(co, globals, locals, arg) break; case STORE_NAME: - name = GETNAME(oparg); + w = GETNAMEV(oparg); v = POP(); - err = dictinsert(f->f_locals, name, v); + err = dict2insert(f->f_locals, w, v); DECREF(v); break;