diff options
author | Walter Dörwald <walter@livinglogic.de> | 2003-06-17 20:22:24 (GMT) |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2003-06-17 20:22:24 (GMT) |
commit | 5ecd6c4db2b9d4b2d536b0210ad5aaf23bfc4dee (patch) | |
tree | fe3c3abd661be108fe60ef4f0d92e9524899f5ad /Objects | |
parent | e8049befdfa75501762f7b8afdf06335a2f6acba (diff) | |
download | cpython-5ecd6c4db2b9d4b2d536b0210ad5aaf23bfc4dee.zip cpython-5ecd6c4db2b9d4b2d536b0210ad5aaf23bfc4dee.tar.gz cpython-5ecd6c4db2b9d4b2d536b0210ad5aaf23bfc4dee.tar.bz2 |
Fix typo in comment.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/complexobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/complexobject.c b/Objects/complexobject.c index a346ac2..4367ff6 100644 --- a/Objects/complexobject.c +++ b/Objects/complexobject.c @@ -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 |