Mark a function or class as undocumented. This is found by inspecting the AST, so for now it must be used directly as @undoc, not as e.g. @decorators.undoc
(func)
| 49 | return wrapper |
| 50 | |
| 51 | def undoc(func): |
| 52 | """Mark a function or class as undocumented. |
| 53 | |
| 54 | This is found by inspecting the AST, so for now it must be used directly |
| 55 | as @undoc, not as e.g. @decorators.undoc |
| 56 | """ |
| 57 | return func |
| 58 |
nothing calls this directly
no outgoing calls
no test coverage detected