diff options
author | Georg Brandl <georg@python.org> | 2007-03-13 07:23:16 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-03-13 07:23:16 (GMT) |
commit | 3bb156722e97c31260b4da6c22594a7698e5cf04 (patch) | |
tree | 22171b075573102b4bd976d79efb3ec8776c148c /Objects/object.c | |
parent | 75c7c80ee5838a967abf815c08b60ef1eadc42d1 (diff) | |
download | cpython-3bb156722e97c31260b4da6c22594a7698e5cf04.zip cpython-3bb156722e97c31260b4da6c22594a7698e5cf04.tar.gz cpython-3bb156722e97c31260b4da6c22594a7698e5cf04.tar.bz2 |
Typo and grammar fixes.
Diffstat (limited to 'Objects/object.c')
-rw-r--r-- | Objects/object.c | 6 |
1 files changed, 3 insertions, 3 deletions
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 @@ error: 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) { |