diff options
Diffstat (limited to 'Include')
-rw-r--r-- | Include/ceval.h | 2 | ||||
-rw-r--r-- | Include/frameobject.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Include/ceval.h b/Include/ceval.h index ab7659e..992b63d 100644 --- a/Include/ceval.h +++ b/Include/ceval.h @@ -28,7 +28,7 @@ object *call_object PROTO((object *, object *)); object *getglobals PROTO((void)); object *getlocals PROTO((void)); -object *getclass PROTO((void)); +object *getowner PROTO((void)); void mergelocals PROTO((void)); void printtraceback PROTO((object *)); diff --git a/Include/frameobject.h b/Include/frameobject.h index 2056e06..c514de2 100644 --- a/Include/frameobject.h +++ b/Include/frameobject.h @@ -36,7 +36,7 @@ typedef struct _frame { codeobject *f_code; /* code segment */ object *f_globals; /* global symbol table (dictobject) */ object *f_locals; /* local symbol table (dictobject) */ - object *f_class; /* class context (classobject or NULL) */ + object *f_owner; /* owner (e.g. class or module) or NULL */ object *f_fastlocals; /* fast local variables (listobject) */ object *f_localmap; /* local variable names (dictobject) */ object **f_valuestack; /* malloc'ed array */ |