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

Method find_spec

Lib/importlib/_bootstrap.py:986–990  ·  view source on GitHub ↗
(cls, fullname, path=None, target=None)

Source from the content-addressed store, hash-verified

984
985 @classmethod
986 def find_spec(cls, fullname, path=None, target=None):
987 if _imp.is_builtin(fullname):
988 return spec_from_loader(fullname, cls, origin=cls._ORIGIN)
989 else:
990 return None
991
992 @staticmethod
993 def create_module(spec):

Callers

nothing calls this directly

Calls 1

spec_from_loaderFunction · 0.70

Tested by

no test coverage detected