MCPcopy Create free account
hub / github.com/ipython/ipython / undoc

Function undoc

IPython/utils/decorators.py:51–57  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

49 return wrapper
50
51def 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected