From: Mark Dickinson Date: Wed, 30 Jun 2010 09:14:43 +0000 (+0000) Subject: Remove backtick syntax for repr. X-Git-Tag: v3.2a1~379 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=af0e1544bfce6ea500672d2140c88ad351a73c5e;p=thirdparty%2FPython%2Fcpython.git Remove backtick syntax for repr. --- diff --git a/Demo/parser/unparse.py b/Demo/parser/unparse.py index b37eb8281ae6..e1c27192c246 100644 --- a/Demo/parser/unparse.py +++ b/Demo/parser/unparse.py @@ -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