Tagged Questions
8
votes
3answers
942 views
Python Decorator Problem with Docstrings
I have a problem using docstrings with decorators. Given the following example:
def decorator(f):
def _decorator():
print 'decorator active'
f()
return _decorator
@decorator
...