summaryrefslogtreecommitdiffstats
path: root/Modules/parsermodule.c
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2011-03-15 16:55:01 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2011-03-15 16:55:01 (GMT)
commit24b07bcba350bb86c4d6ca446e1564647a199868 (patch)
tree1815b1c49a6aec401da86b33fa81d06a0c735679 /Modules/parsermodule.c
parent1aa999c49ed82c89257c13cba5e210c3ba34c130 (diff)
downloadcpython-24b07bcba350bb86c4d6ca446e1564647a199868.zip
cpython-24b07bcba350bb86c4d6ca446e1564647a199868.tar.gz
cpython-24b07bcba350bb86c4d6ca446e1564647a199868.tar.bz2
#11515: fix several typos. Patch by Piotr Kasprzyk.
Diffstat (limited to 'Modules/parsermodule.c')
-rw-r--r--Modules/parsermodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c
index f0ac5e9..632475c 100644
--- a/Modules/parsermodule.c
+++ b/Modules/parsermodule.c
@@ -1629,7 +1629,7 @@ validate_expr_stmt(node *tree)
|| strcmp(s, ">>=") == 0
|| strcmp(s, "**=") == 0);
if (!res)
- err_string("illegal augmmented assignment operator");
+ err_string("illegal augmented assignment operator");
}
}
else {