summaryrefslogtreecommitdiff
path: root/Include/classobject.h
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2003-04-08 18:47:21 +0000
committerTim Peters <tim.peters@gmail.com>2003-04-08 18:47:21 +0000
commitf995cce4dfdc18f95d88718a4720168444649fce (patch)
tree9fa7c67854452aa64ce725e63aeaf1aad9552ff2 /Include/classobject.h
parent2c2068c4d1d8f0f06065e333f94958ca16145a0e (diff)
downloadcpython-git-f995cce4dfdc18f95d88718a4720168444649fce.tar.gz
Typo repair.
Diffstat (limited to 'Include/classobject.h')
-rw-r--r--Include/classobject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/classobject.h b/Include/classobject.h
index 1328c274d5..8f8db7d813 100644
--- a/Include/classobject.h
+++ b/Include/classobject.h
@@ -58,10 +58,10 @@ PyAPI_FUNC(PyObject *) PyMethod_Class(PyObject *);
* value associated with name in the dict in which name was found.
* The point of this routine is that it never calls arbitrary Python
* code, so is always "safe": all it does is dict lookups. The function
- * can't fail, never sets an exceptionm, and NULL is not an error (it just
+ * can't fail, never sets an exception, and NULL is not an error (it just
* means "not found").
*/
-PyAPI_FUNC(PyObject *)_PyInstance_Lookup(PyObject *pinst, PyObject *name);
+PyAPI_FUNC(PyObject *) _PyInstance_Lookup(PyObject *pinst, PyObject *name);
/* Macros for direct access to these values. Type checks are *not*
done, so use with care. */