MCPcopy Create free account
hub / github.com/ZiniuLu/Python-100-Days / wrapper

Function wrapper

Day66-75/code/myutils.py:7–10  ·  view source on GitHub ↗
(*args, **kwargs)

Source from the content-addressed store, hash-verified

5
6 @wraps(fn)
7 def wrapper(*args, **kwargs):
8 gen = fn(*args, **kwargs)
9 next(gen)
10 return gen
11
12 return wrapper

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected