summaryrefslogtreecommitdiffstats
path: root/Objects/object.c
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-03-13 07:23:16 (GMT)
committerGeorg Brandl <georg@python.org>2007-03-13 07:23:16 (GMT)
commit3bb156722e97c31260b4da6c22594a7698e5cf04 (patch)
tree22171b075573102b4bd976d79efb3ec8776c148c /Objects/object.c
parent75c7c80ee5838a967abf815c08b60ef1eadc42d1 (diff)
downloadcpython-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.c6
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) {