summaryrefslogtreecommitdiff
path: root/Python/ast.c
diff options
context:
space:
mode:
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 a2b69f5ce7..5d91344ed0 100644
--- a/Python/ast.c
+++ b/Python/ast.c
@@ -1808,7 +1808,7 @@ ast_for_expr_stmt(struct compiling *c, const node *n)
if (!expr1)
return NULL;
- // TODO(jhylton): Figure out why set_context() can't be used here.
+ /* TODO(jhylton): Figure out why set_context() can't be used here. */
switch (expr1->kind) {
case GeneratorExp_kind:
ast_error(ch, "augmented assignment to generator "