From 87d5180b7abbb8cf6213361f6bdd57cb605894d2 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Mon, 29 Nov 2021 10:19:59 +0200 Subject: [PATCH] Remove misleading comment in the AST optimizer (#29825) --- Python/ast_opt.c | 1 - 1 file changed, 1 deletion(-) diff --git a/Python/ast_opt.c b/Python/ast_opt.c index 356f60e2d53..5f219c6f4bb 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;