Tagged Questions

2
votes
3answers
94 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 …
1
vote
3answers
87 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 …
0
votes
1answer
35 views

Inheriting methods from a metaclass

In the example enumeration code given in this question, reproduced below, why does TOKEN contain the implementations of __contains__ and __repr__ from the metaclass EnumerationType? from ctypes …
4
votes
1answer
92 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 ?
0
votes
1answer
108 views

Where are methods defined at the ruby top level?

EDIT: this post only applies to Ruby 1.9 Hi, At the toplevel method definition should result in private methods on Object, and tests seem to bear this out: def hello; "hello world"; end …
3
votes
1answer
53 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
97 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 …
0
votes
3answers
42 views

Groovy: adding methods to instances and classes with metaClass doesn’t work?

See the code below. Old instances of a class created before a method is added to the class using metaClass should not understand the method right? The assert statement below the 'PROBLEMATIC LINE' …
0
votes
1answer
49 views

How to add a new closure to a class in groovy.

From Snipplr Ok here is the script code, in the comments is the question and the exception thrown class Class1 { def closure = { println this.class.name println …
49
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. …
0
votes
2answers
102 views

Reverse mapping class attributes to classes in Python

Hi all, I have some code in Python where I'll have a bunch of classes, each of which will have an attribute _internal_attribute. I would like to be able to generate a mapping of those attributes to …
0
votes
1answer
151 views

Grails behavior difference between run-app and run-war

I'm relatively new to Groovy and Grails and am trying them out in my spare time. I've got a small test Grails application that I'm able to run fine using grails run-app, but grails run-war results in …
1
vote
5answers
347 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 …
0
votes
3answers
207 views

Shouldn’t __metaclass__ force the use of a metaclass in Python?

I've been trying to learn about metaclasses in Python. I get the main idea, but I can't seem to activate the mechanism. As I understand it, you can specify M to be as the metaclass when constructing a …
6
votes
9answers
885 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 …

1 2 next
15 30 50 per page