How to add method using metaclass - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T23:06:27Z http://stackoverflow.com/feeds/question/65400 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/65400/how-to-add-method-using-metaclass 4 How to add method using metaclass Knut Eldhuset 2008-09-15T18:24:14Z 2008-09-15T19:08:32Z <p>How do I add an instance method to a class using a metaclass (yes I do need to use a metaclass)? The following kind of works, but the func_name will still be "foo":</p> <pre><code>def bar(self): print "bar" class MetaFoo(type): __new__(cls, name, bases, dict): dict["foobar"] = bar return type(name, bases, dict) class Foo(object): __metaclass__ = MetaFoo &gt;&gt;&gt; f = Foo() &gt;&gt;&gt; f.foobar() bar &gt;&gt;&gt; f.foobar.func_name 'bar' </code></pre> <p>My problem is that some library code actually uses the func_name and later fails to find the 'bar' method of the Foo instance. I could do:</p> <pre><code>dict["foobar"] = types.FunctionType(bar.func_code, {}, "foobar") </code></pre> <p>There is also types.MethodType, but I need an instance that does'nt exist yet to use that. Am I missing someting here?</p> http://stackoverflow.com/questions/65400/how-to-add-method-using-metaclass/65682#65682 2 Answer by Nathan Sanders for How to add method using metaclass Nathan Sanders 2008-09-15T18:57:29Z 2008-09-15T18:57:29Z <p>I think what you want to do is this:</p> <pre><code>&gt;&gt;&gt; class Foo(): ... def __init__(self, x): ... self.x = x ... &gt;&gt;&gt; def bar(self): ... print 'bar:', self.x ... &gt;&gt;&gt; bar.func_name = 'foobar' &gt;&gt;&gt; Foo.foobar = bar &gt;&gt;&gt; f = Foo(12) &gt;&gt;&gt; f.foobar() bar: 12 &gt;&gt;&gt; f.foobar.func_name 'foobar' </code></pre> <p>Now you are free to pass <code>Foo</code>s to a library that expects <code>Foo</code> instances to have a method named <code>foobar</code>.</p> <p>Unfortunately, (1) I don't know how to use metaclasses and (2) I'm not sure I read your question correctly, but I hope this helps. </p> <p>Note that <code>func_name</code> is only assignable in Python 2.4 and higher.</p> http://stackoverflow.com/questions/65400/how-to-add-method-using-metaclass/65716#65716 6 Answer by Aaron Maenpaa for How to add method using metaclass Aaron Maenpaa 2008-09-15T19:01:27Z 2008-09-15T19:08:33Z <p>Try dynamically extending the bases that way you can take advantage of the mro and the methods are actual methods:</p> <pre><code>class Parent(object): def bar(self): print "bar" class MetaFoo(type): def __new__(cls, name, bases, dict): return type(name, (Parent,) + bases, dict) class Foo(object): __metaclass__ = MetaFoo if __name__ == "__main__": f = Foo() f.bar() print f.bar.func_name </code></pre>