|
2 |
in response to "double negative" feedback
|
||
Why doesn't Shouldn't __metaclass__ not force the use of a metaclass in Python? |
||||
|
1 |
|
||
Why doesn't __metaclass__ not 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 class K by setting
However, when I run it, I get the following output: C:\Documents and Settings\Daniel Wong\Desktop>python --version Python 3.0.1 C:\Documents and Settings\Daniel Wong\Desktop>python meta.py 1 2 3 The rain in Spain 4 Shouldn't I see "The rain in Spain" after 1 and 2? What's going on here?
|
||||
