From d9dfaf5a3b4f714857f16cf0d2a7637829dcb659 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 17 Feb 1995 15:04:57 +0000 Subject: fix typo (== for =) in assignment --- Python/compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/compile.c b/Python/compile.c index cb25da2..a178bdb 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) -- cgit v0.12