stdlib/3/importlib/metadata: add missing "group" attribute to EntryPoint (#3795)

This commit is contained in:
Ran Benita
2020-02-29 15:26:24 +02:00
committed by GitHub
parent 83833116bd
commit 0705cd6435

View File

@@ -12,6 +12,7 @@ if sys.version_info >= (3, 8):
class EntryPointBase(NamedTuple):
name: str
value: str
group: str
class EntryPoint(EntryPointBase):
def load(self) -> Any: ... # Callable[[], Any] or an importable module
@property