diff options
author | Brett Cannon <bcannon@gmail.com> | 2006-08-25 05:05:30 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2006-08-25 05:05:30 (GMT) |
commit | e2e23ef97da1ce44c604d86d1f21c2701d7e581f (patch) | |
tree | bca7dc409238d532748ec23f9ffb89c7d4f99e01 /Python/ast.c | |
parent | 5f5cfd121db044b5adf5d9da29fed0d31fec1814 (diff) | |
download | cpython-e2e23ef97da1ce44c604d86d1f21c2701d7e581f.zip cpython-e2e23ef97da1ce44c604d86d1f21c2701d7e581f.tar.gz cpython-e2e23ef97da1ce44c604d86d1f21c2701d7e581f.tar.bz2 |
Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the
import MAGIC number.
Diffstat (limited to 'Python/ast.c')
-rw-r--r-- | Python/ast.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Python/ast.c b/Python/ast.c index b566ba3..1a43878 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -401,9 +401,6 @@ set_context(expr_ty e, expr_context_ty ctx, const node *n) case Compare_kind: expr_name = "comparison"; break; - case Repr_kind: - expr_name = "repr"; - break; case IfExp_kind: expr_name = "conditional expression"; break; |