summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-02-05 02:07:19 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-02-05 02:07:19 (GMT)
commit96e48d4698a54901eb362377d18774836c32b2a4 (patch)
tree1da663c0ce3d094ae97435654a1c204bc1c59905 /Python
parente3dd5b2c87dbab223d32fae544595cc5b54baf69 (diff)
downloadcpython-96e48d4698a54901eb362377d18774836c32b2a4.zip
cpython-96e48d4698a54901eb362377d18774836c32b2a4.tar.gz
cpython-96e48d4698a54901eb362377d18774836c32b2a4.tar.bz2
Use C-style comment
Diffstat (limited to 'Python')
-rw-r--r--Python/ast.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ast.c b/Python/ast.c
index a2b69f5..5d91344 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 "