Submitter | phabricator |
---|---|
Date | Sept. 12, 2020, 6:25 p.m. |
Message ID | <differential-rev-PHID-DREV-iqvu463ve3dadum4ie2h-req@mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/47147/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/mercurial/utils/resourceutil.py b/mercurial/utils/resourceutil.py --- a/mercurial/utils/resourceutil.py +++ b/mercurial/utils/resourceutil.py @@ -55,6 +55,8 @@ try: + # importlib.resources exists from Python 3.7; see fallback in except clause + # further down from importlib import resources from .. import encoding @@ -78,6 +80,8 @@ except (ImportError, AttributeError): + # importlib.resources was not found (almost definitely because we're on a + # Python version before 3.7) def open_resource(package, name): path = os.path.join(_package_path(package), name)