Tagged Questions
2
votes
3answers
589 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 ...
1
vote
0answers
16 views
Python 2.x metaclass generated wrappers break inspect
I'm having an issue where I have wrapped some class methods using a metaclass, but now if I use the help() built-in the methods are displayed as the wrapper instead of the original method.
# Example:
...