From: Brett Cannon Date: Sun, 27 Aug 2006 01:03:34 +0000 (+0000) Subject: Vestige of code from removing backticks. X-Git-Tag: v3.0a1~1320 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ecfd0b2f3bfd622c3ba148e53d3feebb8c1ae721;p=thirdparty%2FPython%2Fcpython.git Vestige of code from removing backticks. Closes patch #1500623. Thanks, Collin Winter. --- diff --git a/Lib/compiler/ast.py b/Lib/compiler/ast.py index 93437d6ceef0..94a6262d6844 100644 --- a/Lib/compiler/ast.py +++ b/Lib/compiler/ast.py @@ -203,20 +203,6 @@ class AugAssign(Node): def __repr__(self): return "AugAssign(%s, %s, %s)" % (repr(self.node), repr(self.op), repr(self.expr)) -class Backquote(Node): - def __init__(self, expr, lineno=None): - self.expr = expr - self.lineno = lineno - - def getChildren(self): - return self.expr, - - def getChildNodes(self): - return self.expr, - - def __repr__(self): - return "Backquote(%s)" % (repr(self.expr),) - class Bitand(Node): def __init__(self, nodes, lineno=None): self.nodes = nodes