mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
bpo-44210: make importlib.metadata._meta.PackageMetadata public (GH-26299)
Signed-off-by: Filipe Laíns <lains@riseup.net> Automerge-Triggered-By: GH:jaraco
This commit is contained in:
parent
8b01067318
commit
df7eeacd83
2 changed files with 3 additions and 0 deletions
|
@ -15,6 +15,7 @@ import posixpath
|
|||
import collections
|
||||
|
||||
from . import _adapters, _meta
|
||||
from ._meta import PackageMetadata
|
||||
from ._collections import FreezableDefaultDict, Pair
|
||||
from ._functools import method_cache
|
||||
from ._itertools import unique_everseen
|
||||
|
@ -29,6 +30,7 @@ from typing import List, Mapping, Optional, Union
|
|||
__all__ = [
|
||||
'Distribution',
|
||||
'DistributionFinder',
|
||||
'PackageMetadata',
|
||||
'PackageNotFoundError',
|
||||
'distribution',
|
||||
'distributions',
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Make importlib.metadata._meta.PackageMetadata public.
|
Loading…
Add table
Add a link
Reference in a new issue