MCPcopy Create free account
hub / github.com/dgrunwald/rust-cpython / wrap1

Function wrap1

src/py_class/py_class_impl.py:636–639  ·  view source on GitHub ↗
(*args, **kwargs)

Source from the content-addressed store, hash-verified

634
635def special_method(decorated_function):
636 def wrap1(*args, **kwargs):
637 def wrap2(special_name):
638 return decorated_function(special_name, *args, **kwargs)
639 return wrap2
640 return wrap1
641
642@special_method

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected