summaryrefslogtreecommitdiff
path: root/Python/ast.c
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-08-05 01:51:39 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-08-05 01:51:39 +0000
commit02b75abf731831e32bbb8007a3278c14f6ad700a (patch)
tree3cb25748c067ffda3e2f1a718d9596a180821138 /Python/ast.c
parenta31ddb33511f92d20dfddb23d934a0b7f4ab6122 (diff)
parent69332c1a64d6bdb80ff813fab403be832e12ce64 (diff)
downloadcpython-git-02b75abf731831e32bbb8007a3278c14f6ad700a.tar.gz
Merge spelling and grammar fixes from 3.5
Diffstat (limited to 'Python/ast.c')
-rw-r--r--Python/ast.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ast.c b/Python/ast.c
index 8c13e0b29c..b56fadddda 100644
--- a/Python/ast.c
+++ b/Python/ast.c
@@ -2852,7 +2852,7 @@ ast_for_expr_stmt(struct compiling *c, const node *n)
testlist_star_expr: (test|star_expr) (',' test|star_expr)* [',']
augassign: '+=' | '-=' | '*=' | '@=' | '/=' | '%=' | '&=' | '|=' | '^='
| '<<=' | '>>=' | '**=' | '//='
- test: ... here starts the operator precendence dance
+ test: ... here starts the operator precedence dance
*/
if (NCH(n) == 1) {