48
votes
5answers
5k views
What is a metaclass in Python?
I´ve mastered almost all the Python concepts (well, let´s say there are just OO concepts :-)) but this one is tricky.
I know it has something to do with introspection but it´s still unclear to me.
…
12
votes
3answers
986 views
“MetaClass”, “__new__”, “cls” and “super” - can someone explain the mechanism exactly
I have read posts like these:
What is a metaclass in Python?
What are your (concrete) use-cases for metaclasses in Python?
Python's Super is nifty, but you can't use it
but somehow I got …
6
votes
9answers
870 views
What are your (concrete) use-cases for metaclasses in Python?
I have a friend who likes to use metaclasses, and regularly offers them as a solution.
I am of the mind that you almost never need to use metaclasses. Why? because I figure if you are doing something …
4
votes
2answers
274 views
How to add method using metaclass
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":
def bar(self):
print "bar"
…
3
votes
1answer
87 views
python metaclasses vs class decorators
what are the main differences ? is there something i can do with one method but not with the other one ?
3
votes
1answer
49 views
Metaclass not being called in subclasses
Here is a python session.
>>> class Z(type):
def __new__(cls, name, bases, attrs):
print cls
print name
return type(name, bases, attrs)
...
>>> …
3
votes
2answers
93 views
How does a classmethod object work?
I'm having trouble to understand how a classmethod object works in Python, especially in the context of metaclasses and in __new__. In my special case I would like to get the name of a classmethod …
2
votes
3answers
79 views
Is there any reason to choose __new__ over __init__ when defining a metaclass?
I've always set up metaclasses something like this:
class SomeMetaClass(type):
def __new__(cls, name, bases, dict):
#do stuff here
But I just came across a metaclass that was defined …
2
votes
4answers
341 views
Python metaclasses
I've been hacking classes in python like this :
def hack(f,aClass) :
class MyClass(aClass) :
def f(self) :
f()
return MyClass
A = hack(afunc,A)
Which looks pretty clean to me. It …
2
votes
3answers
296 views
Is anyone using meta-meta-classes / meta-meta-meta-classes in Python/ other languages?
I recently discovered metaclasses in python.
Basically a metaclass in python is a class that creates a class. There are many useful reasons why you would want to do this - any kind of class …
1
vote
3answers
74 views
python modify __metaclass__ for whole program
EDIT: Note that this is a REALLY BAD idea to do in production code. This was just an interesting thing for me. Don't do this at home!
Is it possible to modify __metaclass__ variable for whole program …
1
vote
4answers
97 views
callable as instancemethod?
Let's say we've got a metaclass CallableWrappingMeta which walks the body of a new class, wrapping its methods with a class, InstanceMethodWrapper:
import types
class CallableWrappingMeta(type):
…
1
vote
5answers
340 views
How can I implement metaclasses in C++?
I've been reading a bit about what metaclasses are, but I would like to know if they can be achieved in C++.
I know that Qt library is using MetaObjects, but it uses an extension of C++ to achieve …
1
vote
1answer
161 views
How do I reference the GroovyObject instance from MetaClass methods in Groovy?
This is a contrived example of what I want to do, but minimally expresses the behavior desired. I want to reference the instance of the object on which the property access is being invoked. I tried …
1
vote
1answer
211 views
Groovy: Delegating metaclass for an Interface?
Using Groovy's package name convention, I can intercept Groovy method calls to a Java method like so:
package groovy.runtime.metaclass.org.myGang.myPackage
class FooMetaClass extends …
