Remove misleading comment in the AST optimizer (#29825)

This commit is contained in:
Serhiy Storchaka 2021-11-29 10:19:59 +02:00 committed by GitHub
parent 934a826237
commit 87d5180b7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;