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

Class PackageNotFoundError

Lib/importlib/metadata/__init__.py:49–58  ·  view source on GitHub ↗

The package was not found.

Source from the content-addressed store, hash-verified

47
48
49class PackageNotFoundError(ModuleNotFoundError):
50 """The package was not found."""
51
52 def __str__(self) -> str:
53 return f"No package metadata was found for {self.name}"
54
55 @property
56 def name(self) -> str: # type: ignore[override]
57 (name,) = self.args
58 return name
59
60
61class Sectioned:

Callers 1

from_nameMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected