source: python/trunk/Lib/lib2to3/fixes/fix_repr.py

Last change on this file was 391, checked in by dmik, 11 years ago

python: Merge vendor 2.7.6 to trunk.

  • Property svn:eol-style set to native
File size: 614 bytes
Line 
1# Copyright 2006 Google, Inc. All Rights Reserved.
2# Licensed to PSF under a Contributor Agreement.
3
4"""Fixer that transforms `xyzzy` into repr(xyzzy)."""
5
6# Local imports
7from .. import fixer_base
8from ..fixer_util import Call, Name, parenthesize
9
10
11class FixRepr(fixer_base.BaseFix):
12
13 BM_compatible = True
14 PATTERN = """
15 atom < '`' expr=any '`' >
16 """
17
18 def transform(self, node, results):
19 expr = results["expr"].clone()
20
21 if expr.type == self.syms.testlist1:
22 expr = parenthesize(expr)
23 return Call(Name(u"repr"), [expr], prefix=node.prefix)
Note: See TracBrowser for help on using the repository browser.