From 976249be74462b5171703e0f57484e491f58f766 Mon Sep 17 00:00:00 2001 From: "Michael W. Hudson" Date: Thu, 16 Jan 2003 15:39:07 +0000 Subject: [PATCH] A. Lloyd Flanagan pointed out a spelling error on c.l.py. --- Python/compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/compile.c b/Python/compile.c index 57847803db..49e57d128c 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -995,7 +995,7 @@ none_assignment_check(struct compiling *c, char *name, int assigning) if (name[0] == 'N' && strcmp(name, "None") == 0) { char *msg; if (assigning) - msg = "assigment to None"; + msg = "assignment to None"; else msg = "deleting None"; if (issue_warning(msg, c->c_filename, c->c_lineno) < 0) { -- 2.50.1