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 93437d6..94a6262 100644
--- a/Lib/compiler/ast.py
+++ b/Lib/compiler/ast.py
@@ -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