A. Lloyd Flanagan pointed out a spelling error on c.l.py.

This commit is contained in:
Michael W. Hudson 2003-01-16 15:39:07 +00:00
parent 6aa1c3f4cc
commit 976249be74

View file

@ -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) {