diff options
-rw-r--r-- | Python/ast.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Python/ast.c b/Python/ast.c index fc42823..eb8aed2 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -1174,12 +1174,6 @@ ast_for_arg(struct compiling *c, const node *n) } return arg(name, annotation, c->c_arena); -#if 0 - result = Tuple(args, Store, LINENO(n), n->n_col_offset, c->c_arena); - if (!set_context(c, result, Store, n)) - return NULL; - return result; -#endif } /* returns -1 if failed to handle keyword only arguments |