diff options
author | Brett Cannon <bcannon@gmail.com> | 2006-08-27 01:03:34 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2006-08-27 01:03:34 (GMT) |
commit | ecfd0b2f3bfd622c3ba148e53d3feebb8c1ae721 (patch) | |
tree | a13f541d56a6287f096e23bbf59bde2a62330421 | |
parent | 0919a1a07b061ef9a8a94cc1d92c1895b00967cb (diff) | |
download | cpython-ecfd0b2f3bfd622c3ba148e53d3feebb8c1ae721.zip cpython-ecfd0b2f3bfd622c3ba148e53d3feebb8c1ae721.tar.gz cpython-ecfd0b2f3bfd622c3ba148e53d3feebb8c1ae721.tar.bz2 |
Vestige of code from removing backticks.
Closes patch #1500623. Thanks, Collin Winter.
-rw-r--r-- | Lib/compiler/ast.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/Lib/compiler/ast.py b/Lib/compiler/ast.py index 93437d6..94a6262 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 |