mirror of https://github.com/python/cpython
fix typo (== for =) in assignment
This commit is contained in:
parent
1d339e8c35
commit
d9dfaf5a3b
|
@ -499,7 +499,7 @@ com_addopname(c, op, n)
|
|||
if (p + strlen(s) > buffer + (sizeof buffer) - 2) {
|
||||
err_setstr(MemoryError,
|
||||
"dotted_name too long");
|
||||
name == NULL;
|
||||
name = NULL;
|
||||
break;
|
||||
}
|
||||
if (p != buffer)
|
||||
|
|
Loading…
Reference in New Issue