3
votes
2answers
79 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
31 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
24 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 …
43
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
95 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
124 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
181 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
301 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
90 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
811 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
315 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 …
0
votes
2answers
170 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 …
12
votes
3answers
904 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 …
2
votes
3answers
278 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 ki …
1
vote
1answer
193 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 ext …
