Home | History | Annotate | Download | only in fixes
      1 """Fixer for sys.exc_{type, value, traceback}
      2 
      3 sys.exc_type -> sys.exc_info()[0]
      4 sys.exc_value -> sys.exc_info()[1]
      5 sys.exc_traceback -> sys.exc_info()[2]
      6 """
      7 
      8 # By Jeff Balogh and Benjamin Peterson
      9 
     10 # Local imports
     11 from .. import fixer_base
     12 from ..fixer_util import Attr, Call, Name, Number, Subscript, Node, syms
     13 
     14 class FixSysExc(fixer_base.BaseFix):
     15     # This order matches the ordering of sys.exc_info().
     16     exc_info = [u"exc_type", u"exc_value", u"exc_traceback"]
     17     BM_compatible = True
     18     PATTERN = """
     19               power< 'sys' trailer< dot='.' attribute=(%s) > >
     20               """ % '|'.join("'%s'" % e for e in exc_info)
     21 
     22     def transform(self, node, results):
     23         sys_attr = results["attribute"][0]
     24         index = Number(self.exc_info.index(sys_attr.value))
     25 
     26         call = Call(Name(u"exc_info"), prefix=sys_attr.prefix)
     27         attr = Attr(Name(u"sys"), call)
     28         attr[1].children[0].prefix = results["dot"].prefix
     29         attr.append(Subscript(index))
     30         return Node(syms.power, attr, prefix=node.prefix)
     31