Re: [sphinx-dev] Decorators

2012-09-05 Thread Jonathan Fine
It may be possible to fix this by wrapping the decorator. I'm reading you problem to mean that you wrote the module, and that you are using third party decorators. Instead of @wibble def fn(): '''Docstring''' perhaps try @wobble(wibble) def fn(): '''Docstring' Here @wibble is the third

[sphinx-dev] Decorators

2012-09-01 Thread Larry G. Wapnitsky
Has there been any further documentation on how to deal with decorated functions and Sphinx? I have an entire module filled with third-party-decorated functions that can't be auto-documented, hence adding a ton of extra work that should not need to be done. Thanks, Larry -- You received