mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Fix typo in comment.
This commit is contained in:
parent
e8049befdf
commit
5ecd6c4db2
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue