Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: c0be5d472f6c9496e75f17579874b2e0ebb2176c authored by Benjamin Peterson on 13 August 2009, 19:17:01 UTC
remove 3.1.1rc tag
Tip revision: c0be5d4
fix_methodattrs.py
"""Fix bound method attributes (method.im_? -> method.__?__).
"""
# Author: Christian Heimes

# Local imports
from .. import fixer_base
from ..fixer_util import Name

MAP = {
    "im_func" : "__func__",
    "im_self" : "__self__",
    "im_class" : "__self__.__class__"
    }

class FixMethodattrs(fixer_base.BaseFix):
    PATTERN = """
    power< any+ trailer< '.' attr=('im_func' | 'im_self' | 'im_class') > any* >
    """

    def transform(self, node, results):
        attr = results["attr"][0]
        new = MAP[attr.value]
        attr.replace(Name(new, prefix=attr.prefix))
back to top