Skip to content

Commit aa259c5

Browse files
author
doerwalter
committed
Fix typo in comment.
git-svn-id: http://svn.python.org/projects/python/trunk@33183 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent de1b70f commit aa259c5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Objects/complexobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -831,7 +831,7 @@ complex_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
831831
&r, &i))
832832
return NULL;
833833

834-
/* Special-case for single argumet that is already complex */
834+
/* Special-case for single argument that is already complex */
835835
if (PyComplex_CheckExact(r) && i == NULL &&
836836
type == &PyComplex_Type) {
837837
/* Note that we can't know whether it's safe to return

0 commit comments

Comments
 (0)