Commit af0e1544 authored by Mark Dickinson's avatar Mark Dickinson

Remove backtick syntax for repr.

parent b67e15c5
...@@ -310,11 +310,6 @@ class Unparser: ...@@ -310,11 +310,6 @@ class Unparser:
def _Name(self, t): def _Name(self, t):
self.write(t.id) self.write(t.id)
def _Repr(self, t):
self.write("`")
self.dispatch(t.value)
self.write("`")
def _Num(self, t): def _Num(self, t):
if isinstance(t.n, float) and math.isinf(t.n): if isinstance(t.n, float) and math.isinf(t.n):
# Subsitute overflowing decimal literal for AST infinity # Subsitute overflowing decimal literal for AST infinity
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment