MCPcopy Create free account
hub / github.com/ColdGrub1384/Pyto / dedent

Function dedent

site-packages/matplotlib/docstring.py:90–93  ·  view source on GitHub ↗

Dedent a docstring (if present)

(func)

Source from the content-addressed store, hash-verified

88
89
90def dedent(func):
91 "Dedent a docstring (if present)"
92 func.__doc__ = func.__doc__ and cbook.dedent(func.__doc__)
93 return func
94
95
96def copy(source):

Callers 15

dedent_interpdFunction · 0.70
copy_dedentFunction · 0.70
__init__Method · 0.50
SeriesClass · 0.50
ResamplerClass · 0.50
DataFrameClass · 0.50
_WindowClass · 0.50
WindowClass · 0.50
RollingClass · 0.50
ExpandingClass · 0.50

Calls

no outgoing calls

Tested by 3

test_deprecate_okFunction · 0.40