diff options
| author | Guido van Rossum <guido@python.org> | 1995-02-17 15:04:57 +0000 |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 1995-02-17 15:04:57 +0000 |
| commit | 90d189cd3aa4666cdc3a0a69726bd45ea4104bbf (patch) | |
| tree | c7cf478ba5a7959792cfc279ef1db49bce4d1ab7 /Python/compile.c | |
| parent | 029675dc12894c4944804b2bd56a7e88f1a54f5c (diff) | |
| download | cpython-90d189cd3aa4666cdc3a0a69726bd45ea4104bbf.tar.gz | |
fix typo (== for =) in assignment
Diffstat (limited to 'Python/compile.c')
| -rw-r--r-- | Python/compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c index cb25da2f96..a178bdb4ab 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -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) |
