MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / wrapper

Function wrapper

lib/matplotlib/__init__.py:342–348  ·  view source on GitHub ↗
(**kwargs)

Source from the content-addressed store, hash-verified

340
341 @functools.wraps(func)
342 def wrapper(**kwargs):
343 nonlocal called, ret
344 if not called:
345 ret = func(**kwargs)
346 called = True
347 _log.debug(fmt, ret)
348 return ret
349
350 return wrapper
351

Callers

nothing calls this directly

Calls 1

funcFunction · 0.50

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…