MCPcopy Index your code
hub / github.com/RustPython/RustPython / inner

Function inner

Lib/typing.py:397–402  ·  view source on GitHub ↗
(*args, **kwds)

Source from the content-addressed store, hash-verified

395
396 @functools.wraps(func)
397 def inner(*args, **kwds):
398 try:
399 return _caches[func](*args, **kwds)
400 except TypeError:
401 pass # All real errors (not unhashable args) are raised below.
402 return func(*args, **kwds)
403 return inner
404
405 if func is not None:

Callers 2

process_pathMethod · 0.50
from_attributeMethod · 0.50

Calls 1

funcFunction · 0.50

Tested by

no test coverage detected