view python/bind.py @ 501:f9a4e1572b54

add http://pietrushnic.blogspot.com/2012/02/arbtt-as-productivity-improver-for.html#.Uh_LB5WZi1E
author Jeff Hammel <jhammel@mozilla.com>
date Thu, 29 Aug 2013 15:36:08 -0700
parents efeb2cc78f30
children
line wrap: on
line source

#!/usr/bin/env python

"""
illlustrate e.g. method bind for python
"""

class Foo(object):

    @classmethod
    def create(cls):
        """create an instance and bind a method onto foo"""
        class decorator(object):
            def __init__(self, function):
                self.function = function
            def __call__(self):
                print "Bar!"
                return self.function()

        instance = cls()
        instance.foo = decorator(instance.foo)
        return instance

    def foo(self):
        print "Foo!"

if __name__ == '__main__':
    foo = Foo.create()
    foo.foo()