summaryrefslogtreecommitdiffstats
path: root/Python/ast_opt.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/ast_opt.c')
-rw-r--r--Python/ast_opt.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/ast_opt.c b/Python/ast_opt.c
index 356f60e..5f219c6 100644
--- a/Python/ast_opt.c
+++ b/Python/ast_opt.c
@@ -618,7 +618,6 @@ fold_compare(expr_ty node, PyArena *arena, _PyASTOptimizeState *state)
ops = node->v.Compare.ops;
args = node->v.Compare.comparators;
- /* TODO: optimize cases with literal arguments. */
/* Change literal list or set in 'in' or 'not in' into
tuple or frozenset respectively. */
i = asdl_seq_LEN(ops) - 1;