From e2e23ef97da1ce44c604d86d1f21c2701d7e581f Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Fri, 25 Aug 2006 05:05:30 +0000 Subject: Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the import MAGIC number. --- Python/ast.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'Python/ast.c') diff --git a/Python/ast.c b/Python/ast.c index b566ba3e39..1a43878943 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; -- cgit v1.2.1