summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael W. Hudson <mwh@python.net>2003-01-16 15:39:07 (GMT)
committerMichael W. Hudson <mwh@python.net>2003-01-16 15:39:07 (GMT)
commit976249be74462b5171703e0f57484e491f58f766 (patch)
treeae096910515ea4517ef888cc7dc86adf65e81a78
parent6aa1c3f4cc1e59e7aa5806c49916e2846aaceeb0 (diff)
downloadcpython-976249be74462b5171703e0f57484e491f58f766.zip
cpython-976249be74462b5171703e0f57484e491f58f766.tar.gz
cpython-976249be74462b5171703e0f57484e491f58f766.tar.bz2
A. Lloyd Flanagan pointed out a spelling error on c.l.py.
-rw-r--r--Python/compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c
index 5784780..49e57d1 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) {