fix typo (== for =) in assignment
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 @@
 			if (p + strlen(s) > buffer + (sizeof buffer) - 2) {
 				err_setstr(MemoryError,
 					   "dotted_name too long");
-				name == NULL;
+				name = NULL;
 				break;
 			}
 			if (p != buffer)