Is it possible to access the docstrings of controller functions? i tried the following:
I added __init__.py to the controllers folder
and wrote
import applications.myapp.controllers.mycontroller
print dir(applications.myapp.controllers.mycontroller)
however this gives me
...
@auth.requires_login()
NameError: name 'auth' is not defined
because I use the @auth decorators
is there another way?

