diff options
Diffstat (limited to 'Objects/classobject.c')
-rw-r--r-- | Objects/classobject.c | 70 |
1 files changed, 39 insertions, 31 deletions
diff --git a/Objects/classobject.c b/Objects/classobject.c index e2a5e63..0a6fc7e 100644 --- a/Objects/classobject.c +++ b/Objects/classobject.c @@ -121,18 +121,24 @@ class_getattr(op, name) return v; } v = class_lookup(op, name, &class); - if (v != NULL) { - if (is_accessobject(v)) - v = getaccessvalue(v, getclass()); - else if (is_funcobject(v)) - v = newinstancemethodobject(v, (object *)NULL, + if (v == NULL) { + err_setstr(AttributeError, name); + return NULL; + } + if (is_accessobject(v)) { + v = getaccessvalue(v, getclass()); + if (v == NULL) + return NULL; + } + else + INCREF(v); + if (is_funcobject(v)) { + object *w = newinstancemethodobject(v, (object *)NULL, (object *)class); - else - INCREF(v); - return v; + DECREF(v); + v = w; } - err_setstr(AttributeError, name); - return NULL; + return v; } static int @@ -217,12 +223,6 @@ issubclass(class, base) /* Instance objects */ -typedef struct { - OB_HEAD - classobject *in_class; /* The class object */ - object *in_dict; /* A dictionary */ -} instanceobject; - static object *instance_getattr PROTO((instanceobject *, char *)); static int @@ -241,8 +241,11 @@ addaccess(class, inst) pos = 0; while (mappinggetnext(class->cl_dict, &pos, &key, &value)) { + object *v; if (!is_accessobject(value)) continue; + if (hasaccessvalue(value)) + continue; ac = dict2lookup(inst->in_dict, key); if (ac != NULL && is_accessobject(ac)) { err_setval(ConflictError, key); @@ -361,22 +364,27 @@ instance_getattr(inst, name) return (object *)inst->in_class; } v = dictlookup(inst->in_dict, name); - if (v != NULL) { - if (is_accessobject(v)) - v = getaccessvalue(v, getclass()); - else - INCREF(v); - return v; + if (v == NULL) { + v = class_lookup(inst->in_class, name, &class); + if (v == NULL) { + err_setstr(AttributeError, name); + return NULL; + } } - v = class_lookup(inst->in_class, name, &class); - if (v == NULL) - goto error; - if (is_funcobject(v)) - return newinstancemethodobject(v, (object *)inst, - (object *)class); - error: - err_setstr(AttributeError, name); - return NULL; + if (is_accessobject(v)) { + v = getaccessvalue(v, getclass()); + if (v == NULL) + return NULL; + } + else + INCREF(v); + if (is_funcobject(v)) { + object *w = newinstancemethodobject(v, (object *)inst, + (object *)class); + DECREF(v); + v = w; + } + return v; } static int |