From: Michael W. Hudson Date: Thu, 16 Jan 2003 15:39:07 +0000 (+0000) Subject: A. Lloyd Flanagan pointed out a spelling error on c.l.py. X-Git-Tag: v2.3c1~2432 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=976249be74462b5171703e0f57484e491f58f766;p=thirdparty%2FPython%2Fcpython.git A. Lloyd Flanagan pointed out a spelling error on c.l.py. --- diff --git a/Python/compile.c b/Python/compile.c index 57847803dbbf..49e57d128cc8 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) {