Remove backtick syntax for repr.

This commit is contained in:
Mark Dickinson 2010-06-30 09:14:43 +00:00
parent b67e15c53c
commit af0e1544bf
1 changed files with 0 additions and 5 deletions

View File

@ -310,11 +310,6 @@ class Unparser:
def _Name(self, t):
self.write(t.id)
def _Repr(self, t):
self.write("`")
self.dispatch(t.value)
self.write("`")
def _Num(self, t):
if isinstance(t.n, float) and math.isinf(t.n):
# Subsitute overflowing decimal literal for AST infinity