diff options
author | Brett Cannon <bcannon@gmail.com> | 2006-08-25 05:05:30 +0000 |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2006-08-25 05:05:30 +0000 |
commit | 3f7ac48bf603565fad92cbf565ac97801814e9e1 (patch) | |
tree | b292dab59b5c8c08ff167a4ba3668f25a34dc766 /Python/symtable.c | |
parent | bbf77970899b83bb0bf554067c49b21877c560d0 (diff) | |
download | cpython-3f7ac48bf603565fad92cbf565ac97801814e9e1.tar.gz |
Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the
import MAGIC number.
Diffstat (limited to 'Python/symtable.c')
-rw-r--r-- | Python/symtable.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Python/symtable.c b/Python/symtable.c index 05d504c2cb..bf15960785 100644 --- a/Python/symtable.c +++ b/Python/symtable.c @@ -1182,9 +1182,6 @@ symtable_visit_expr(struct symtable *st, expr_ty e) if (e->v.Call.kwargs) VISIT(st, expr, e->v.Call.kwargs); break; - case Repr_kind: - VISIT(st, expr, e->v.Repr.value); - break; case Num_kind: case Str_kind: /* Nothing to do here. */ |