3
votes
1answer
45 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
98 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 wor …
3
votes
2answers
86 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 …
0
votes
1answer
39 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
print …
0
votes
3answers
31 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 …
45
votes
4answers
4k 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 sti …
0
votes
2answers
100 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 t …
0
votes
1answer
134 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 grail …
0
votes
3answers
190 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 …
1
vote
5answers
322 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 …
1
vote
4answers
96 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 CallableWra …
6
votes
9answers
836 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 …
2
votes
4answers
329 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 pret …
12
votes
3answers
940 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 so …
0
votes
2answers
174 views
UML 2 Profiles Package: How to extend Operation?
Hi, guys!
I'm in a big trouble with uml profile implementation. The problem is I can't get how can I extend uml Operation class from Infrastructure::Core::Constructs using Profi …
