]> granicus.if.org Git - python/commitdiff
Fix typo in comment.
authorWalter Dörwald <walter@livinglogic.de>
Tue, 17 Jun 2003 20:22:24 +0000 (20:22 +0000)
committerWalter Dörwald <walter@livinglogic.de>
Tue, 17 Jun 2003 20:22:24 +0000 (20:22 +0000)
Objects/complexobject.c

index a346ac25a6407ec4fc7a457f4724af0c8b5ad2ce..4367ff6570eb6e79bac669f42d0cf390bfe019fb 100644 (file)
@@ -831,7 +831,7 @@ complex_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
                                         &r, &i))
                return NULL;
 
-       /* Special-case for single argumet that is already complex */
+       /* Special-case for single argument that is already complex */
        if (PyComplex_CheckExact(r) && i == NULL &&
            type == &PyComplex_Type) {
                /* Note that we can't know whether it's safe to return