Created
August 4, 2012 06:57
Revisions
-
podhmo revised this gist
Aug 4, 2012 . 1 changed file with 1 addition and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -16,11 +16,8 @@ def __init__(self, name): def intercept(cls, method): def doaction(caller, *args, **kwargs): caller.__class__ = cls return method.im_func(caller, *args, **kwargs) return doaction -
podhmo created this gist
Aug 4, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,38 @@ class A(object): fmt = "tweets %s" def hello(self): return "hello " + self.name @classmethod def tweets(cls, mes): return cls.fmt % mes def __init__(self, name): self.name = name class B(object): fmt = "called with B: %s" def __init__(self, name): self.name = name def intercept(cls, method): def doaction(caller, *args, **kwargs): original_type = caller.__class__ caller.__class__ = cls v = method(caller, *args, **kwargs) caller.__class = original_type return v return doaction print A("foo").hello() try: print A.hello(B("bar")) except TypeError, e: print e print intercept(A, A.hello)(B("bar")) print "==" print A.tweets("hey") B.tweets = A.__dict__["tweets"] print B.tweets("bar")