commit | 3bb156722e97c31260b4da6c22594a7698e5cf04 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Tue Mar 13 07:23:16 2007 +0000 |
committer | Georg Brandl <georg@python.org> | Tue Mar 13 07:23:16 2007 +0000 |
tree | 22171b075573102b4bd976d79efb3ec8776c148c | |
parent | 75c7c80ee5838a967abf815c08b60ef1eadc42d1 [diff] [blame] |
Typo and grammar fixes.
diff --git a/Objects/object.c b/Objects/object.c index e304d2f..1b37a8d 100644 --- a/Objects/object.c +++ b/Objects/object.c
@@ -1790,9 +1790,9 @@ static PyObject * _dir_object(PyObject *obj) { - PyObject * result = NULL; - PyObject * dirfunc = PyObject_GetAttrString((PyObject*)obj->ob_type, - "__dir__"); + PyObject *result = NULL; + PyObject *dirfunc = PyObject_GetAttrString((PyObject *)obj->ob_type, + "__dir__"); assert(obj); if (dirfunc == NULL) {