diff options
author | Guido van Rossum <guido@python.org> | 2001-09-21 19:29:08 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-09-21 19:29:08 (GMT) |
commit | 867a8d2e2688d837c67bf87eb9164528780f7bdc (patch) | |
tree | 17384a0aba0c05752f3d10e2ca18838d1ed815f7 /Objects/typeobject.c | |
parent | dbb718fa8775731666bb9cbc73662fadee41ea8f (diff) | |
download | cpython-867a8d2e2688d837c67bf87eb9164528780f7bdc.zip cpython-867a8d2e2688d837c67bf87eb9164528780f7bdc.tar.gz cpython-867a8d2e2688d837c67bf87eb9164528780f7bdc.tar.bz2 |
Change the name of the __getattr__ special method for new-style
classes to __getattribute__, to make it crystal-clear that it doesn't
have the same semantics as overriding __getattr__ on classic classes.
This is a halfway checkin -- I'll proceed to add a __getattr__ hook
that works the way it works in classic classes.
Diffstat (limited to 'Objects/typeobject.c')
-rw-r--r-- | Objects/typeobject.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 9e6d3df..5f8fd01 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -2061,8 +2061,8 @@ static struct wrapperbase tab_repr[] = { }; static struct wrapperbase tab_getattr[] = { - {"__getattr__", (wrapperfunc)wrap_binaryfunc, - "x.__getattr__('name') <==> x.name"}, + {"__getattribute__", (wrapperfunc)wrap_binaryfunc, + "x.__getattribute__('name') <==> x.name"}, {0} }; @@ -2877,7 +2877,7 @@ slot_tp_getattro(PyObject *self, PyObject *name) static PyObject *getattr_str = NULL; if (getattr_str == NULL) { - getattr_str = PyString_InternFromString("__getattr__"); + getattr_str = PyString_InternFromString("__getattribute__"); if (getattr_str == NULL) return NULL; } @@ -3196,7 +3196,7 @@ override_slots(PyTypeObject *type, PyObject *dict) TPSLOT("__hash__", tp_hash, slot_tp_hash); TPSLOT("__call__", tp_call, slot_tp_call); TPSLOT("__str__", tp_str, slot_tp_str); - TPSLOT("__getattr__", tp_getattro, slot_tp_getattro); + TPSLOT("__getattribute__", tp_getattro, slot_tp_getattro); TPSLOT("__setattr__", tp_setattro, slot_tp_setattro); TPSLOT("__lt__", tp_richcompare, slot_tp_richcompare); TPSLOT("__le__", tp_richcompare, slot_tp_richcompare); |