[Python-3000-checkins] r51627 - python/branches/p3yk/Lib/compiler/ast.py

brett.cannon python-3000-checkins at python.org
Sun Aug 27 03:03:38 CEST 2006


Author: brett.cannon
Date: Sun Aug 27 03:03:34 2006
New Revision: 51627

Modified:
   python/branches/p3yk/Lib/compiler/ast.py
Log:
Vestige of code from removing backticks.

Closes patch #1500623.  Thanks, Collin Winter.


Modified: python/branches/p3yk/Lib/compiler/ast.py
==============================================================================
--- python/branches/p3yk/Lib/compiler/ast.py	(original)
+++ python/branches/p3yk/Lib/compiler/ast.py	Sun Aug 27 03:03:34 2006
@@ -203,20 +203,6 @@
     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


More information about the Python-3000-checkins mailing list