4
votes
Getting method parameter names in python
Here is something I think will work for what you want, using a decorator.
class LogWrappedFunction(object):
def __init__(self, function):
self.function = function
d …
7
votes
Javascript style dot notation for dictionary keys unpythonic?
With regards to the DictObj, would the following work for you? A blank class will allow you to arbitrarily add to or replace stuff in a container object.
class Contain …
