summaryrefslogtreecommitdiff
path: root/Objects
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-05-23 16:11:05 -0500
committerBenjamin Peterson <benjamin@python.org>2011-05-23 16:11:05 -0500
commit9687c64f9d19f5ae610cee770736330a3e1576be (patch)
tree6f89999b6a3c63c696da2e76bc7b1e013f3898e6 /Objects
parent544fb3c1aea093f3be6e0142679c0f01ab316758 (diff)
downloadcpython-9687c64f9d19f5ae610cee770736330a3e1576be.tar.gz
correctly lookup __dir__
Diffstat (limited to 'Objects')
-rw-r--r--Objects/object.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/Objects/object.c b/Objects/object.c
index b6ad5de477..1e033d25e8 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -1905,11 +1905,13 @@ static PyObject *
_dir_object(PyObject *obj)
{
PyObject *result = NULL;
- PyObject *dirfunc = PyObject_GetAttrString((PyObject *)obj->ob_type,
- "__dir__");
+ static PyObject *dir_str = NULL;
+ PyObject *dirfunc = _PyObject_LookupSpecial(obj, "__dir__", &dir_str);
assert(obj);
if (dirfunc == NULL) {
+ if (PyErr_Occurred())
+ return NULL;
/* use default implementation */
PyErr_Clear();
if (PyModule_Check(obj))
@@ -1921,7 +1923,7 @@ _dir_object(PyObject *obj)
}
else {
/* use __dir__ */
- result = PyObject_CallFunctionObjArgs(dirfunc, obj, NULL);
+ result = PyObject_CallFunctionObjArgs(dirfunc, NULL);
Py_DECREF(dirfunc);
if (result == NULL)
return NULL;