3
votes
3answers
96 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
97 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
37 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
100 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
57 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)
...
>>> …
0
votes
1answer
113 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
2answers
101 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
1answer
52 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 …
0
votes
3answers
48 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
2answers
105 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
156 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 …
0
votes
3answers
211 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 …
1
vote
4answers
106 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
361 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 …
2
votes
4answers
354 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 …
