Tagged Questions
The metaclass tag has no wiki summary.
400
votes
9answers
64k 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.
...
42
votes
1answer
4k views
class << self idiom in Ruby
I suppose my question is exactly what the subject depicts, what does:
class << self
do in Ruby?
18
votes
8answers
801 views
What are Python metaclasses useful for?
What can be done with metaclasses that can't be in any other way?
Alex Martelli told that there are tasks that can't be achieved without metaclasses here ...
15
votes
3answers
4k 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 ...
14
votes
1answer
405 views
Triple inheritance causes metaclass conflict… Sometimes
Looks like I stumbled upon a metaclass hell even when I didn't wanted anything to do with it.
I'm writing an app in Qt4 using PySide. I want to separate event-driven part from UI definition, which is ...
13
votes
3answers
422 views
Architecture for providing different linear algebra back-ends
I am prototyping a new system in Python; the functionality is mostly numerical.
An important requirement is the ability to use different linear algebra back-ends: from individual user implementations ...
10
votes
12answers
2k 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 ...
9
votes
2answers
2k views
Ruby metaclass madness
I'm stuck. I'm trying to dynamically define a class method and I can't wrap my head around the ruby metaclass model. Consider the following class:
class Example
def self.meta; (class << ...
9
votes
1answer
699 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 ?
8
votes
1answer
423 views
When to inline definitions of metaclass in Python?
Today I have come across a surprising definition of a metaclass in Python here, with the metaclass definition effectively inlined. The relevant part is
class Plugin(object):
class ...
7
votes
5answers
814 views
Delphi class references… aka metaclasses… when to use them
I've read the official documentation and I understand what class references are but I fail to see when and why they are best solution compared to alternatives.
The example cited in the documentation ...
7
votes
2answers
264 views
Python: Metaclasses all the way down
I have an esoteric question involving Python metaclasses. I am creating a Python package for web-server-side code that will make it easy to access arbitrary Python classes via client-side proxies. ...
7
votes
1answer
684 views
metaclass multiple inheritance inconsistency
Why is this:
class MyType(type):
def __init__(cls, name, bases, attrs):
print 'created', cls
class MyMixin:
__metaclass__ = MyType
class MyList(list, MyMixin): pass
okay, and works ...
7
votes
2answers
1k views
Python: Class factory using user input as class names
I want to add class atttributes to a superclass dynamically. Furthermore, I want to create classes that inherit from this superclass dynamically, and the name of those subclasses should depend on user ...
6
votes
2answers
453 views
Metaclass Mixin or Chaining?
Is it possible to chain metaclasses?
I have class Model which uses __metaclass__=ModelBase to process its namespace dict. I'm going to inherit from it and "bind" another metaclass so it won't shade ...
6
votes
3answers
225 views
methods of metaclasses on class instances
I was wondering what happens to methods declared on a metaclass. I expected that if you declare a method on a metaclass, it will end up being a classmethod, however, the behavior is different. Example
...
6
votes
1answer
354 views
How does the Objective-C runtime instantiate the root metaclass and other class descriptions?
I'm trying to implement a basic object-oriented ANSI C runtime and using Objective-C as a guide.
They're seems to be three parts. A Class Description, Class Interface, and Class Implementation. In ...
5
votes
3answers
94 views
Why can't I change the __metaclass__ attribute of a class?
I have a weird and unusual use case for metaclasses where I'd like to change the __metaclass__ of a base class after it's been defined so that its subclasses will automatically use the new ...
5
votes
1answer
60 views
Groovy's classX.metaClass.getProperty in scala
Is there anything equivalent to Groovy's remarkable SomeClass.metaClass.getProperty function in scala? This would be very helpful in making domain specific languages. For example, I could then say: ...
5
votes
1answer
72 views
How can Class be of the Class class and not have Class instance methods?
I was studying how the Ruby interpreter is implemented, and one question occurred that didn't get an answer yet for me. That's the one in the title: since Class (r_cClass) has super set to itself ...
5
votes
3answers
234 views
Using the __call__ method of a metaclass instead of __new__?
When discussing metaclasses, the docs state:
You can of course also override other class methods (or add new
methods); for example defining a custom __call__() method in the
metaclass allows ...
5
votes
2answers
171 views
Metaclasses in Python: a couple of questions to clarify
After crashing with metaclasses i delved into the topic of metaprogramming in Python and I have a couple of questions that are, imho, not clearly anwered in available docs.
When using both __new__ ...
5
votes
2answers
190 views
How to auto register a class when it's defined
I want to have an instance of class registered when the class is defined. Ideally the code below would do the trick.
registry = {}
def register( cls ):
registry[cls.__name__] = cls() #problem ...
5
votes
3answers
357 views
What is the difference between type and type.__new__ in python?
I was writing a metaclass and accidentally did it like this:
class MetaCls(type):
def __new__(cls, name, bases, dict):
return type(name, bases, dict)
...instead of like this:
class ...
5
votes
3answers
477 views
What is the relationship between the metaclass of Base and Derived class in Ruby?
In Ruby, we could use super within singleton method to call the corresponding super class's singleton method, like the following code shows.
class Base
def self.class_method
puts "Base class ...
5
votes
2answers
216 views
What does class_getClassVariable() do?
If instance variables belong to an instance of a class, class variables would belong to an instance of a metaclass, I should think. But my experience with the Objective-C metaclass tells me that this ...
5
votes
4answers
507 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 ...
5
votes
4answers
651 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 ...
5
votes
2answers
872 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"
...
4
votes
1answer
61 views
Can I define a __repr__ for a class rather than an instance?
Can I define a __repr__ for a class rather than an instance? For example, I'm trying to do this
class A(object):
@classmethod
def __repr__(cls):
return 'My class %s' % cls
What I ...
4
votes
3answers
121 views
Intercept operator lookup on metaclass
I have a class that need to make some magic with every operator, like __add__, __sub__ and so on.
Instead of creating each function in the class, I have a metaclass which defines every operator in ...
4
votes
2answers
74 views
Python __metaclass__ inheritance issue
My issue is that I am using a metaclass to wrap certain class methods in a timer for logging purposes.
For example:
class MyMeta(type):
@staticmethod
def time_method(method):
def ...
4
votes
2answers
168 views
Dynamically define named classes in Ruby
I am writing an internal DSL in Ruby. For this, I need to programmatically create named classes and nested classes. What is the best way to do so? I recon that there are two ways to do so:
Use ...
4
votes
1answer
177 views
Use Groovy Category implicitly in all instance methods of class
I have simple Groovy category class which adds method to String instances:
final class SampleCategory {
static String withBraces(String self) {
"($self)"
}
}
I want to use this ...
4
votes
1answer
164 views
What are the advantages of using metaclasses in django-like form implementations?
First a little background ... I was going over the Django source code for forms to understand the implementation of forms in Django (and to learn some Python along the way). Django implements forms ...
4
votes
5answers
219 views
Is there a way to set metaclass after the class definition?
In order to set metaclass of a class, we use the __metaclass__ attribute. Metaclasses are used at the time the class is defined, so setting it explicitly after the class definition has no effect.
...
4
votes
5answers
424 views
Auto-register class methods using decorator
I want to be able to create a python decorator that automatically "registers" class methods in a global repository (with some properties).
Example code:
class my_class(object):
...
4
votes
1answer
214 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)
...
>>> ...
4
votes
2answers
381 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 ...
4
votes
3answers
1k 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 ...
3
votes
0answers
66 views
Setting metaclass of wrapped class with Boost.Python
I have an Event class defined in C++ that I expose to Python using Boost. My scripts are expected to derive from this class, and I'd like to do some initialization whenever a new child class is ...
3
votes
1answer
103 views
Ordered classes in Python 3
I am trying to use an 'ordered class' as described in PEP 3115 (that is, a class whose members can be accessed in the order they were declared). The implementation given there is
# The custom ...
3
votes
1answer
84 views
Unit testing metaclasses and inner classes in python
I usually unit test per class and this is no problem. However after messing around with python I have hit a problem that I have not encountered before in other languages, meta classes and inner ...
3
votes
2answers
110 views
Removing specific methods from child class which are inherited from parent class
The code is as below, just the basic structure:
class FooType(type):
def __new__( cls, name, bases, classdict ):
instance = type.__new__( cls, name, bases, classdict )
# What can ...
3
votes
2answers
186 views
scala: analogy to metaclasses in python?
in scala i need to implement something similar to python metaclasses. in my case the goal of using the metaclasses is usually to create a registry of all the subclasses of a particular base class - ...
3
votes
1answer
89 views
Test if class from a class reference (metaclass) variable is TMyClass
I want to know whether the object that would be created from a class reference is an instance of a particular class or any of its descendants.
In other words, I want a Boolean expression such as
var ...
3
votes
2answers
153 views
Python, Zope Component Architecture, Registering an adapter
In a stand-alone python application I use zope.interface, zope.component packages to register and access application's adapters.
I thought I could use metaclass concept to register adapters from ...
3
votes
3answers
340 views
Ways to make a class immutable in Python
I'm doing some distributed computing in which several machines communicate under the assumption that they all have identical versions of various classes. Thus, it seems to be good design to make these ...
3
votes
3answers
544 views
Decorating a class method after @property
I want to wrap every method of various objects except __init__ using a decorator.
class MyObject(object):
def method(self):
print "method called on %s" % str(self)
@property
def ...
3
votes
1answer
156 views
python: timing of __new__ in metaclass
The following code doesn't compile; it says
NameError: name 'fields' is not
defined
in the last line. Is it because __new__ isn't called until after the fields assignment is reached? What ...