D12362: hgdemandimport: delete check for Python 3.5
indygreg (Gregory Szorc)
phabricator at mercurial-scm.org
Thu Mar 10 01:08:02 UTC 2022
indygreg created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
We dropped support for Python 3.5. So we no longer need to do this.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D12362
AFFECTED FILES
hgdemandimport/demandimportpy3.py
CHANGE DETAILS
diff --git a/hgdemandimport/demandimportpy3.py b/hgdemandimport/demandimportpy3.py
--- a/hgdemandimport/demandimportpy3.py
+++ b/hgdemandimport/demandimportpy3.py
@@ -33,12 +33,6 @@
_deactivated = False
-# Python 3.5's LazyLoader doesn't work for some reason.
-# https://bugs.python.org/issue26186 is a known issue with extension
-# importing. But it appears to not have a meaningful effect with
-# Mercurial.
-_supported = sys.version_info[0:2] >= (3, 6)
-
class _lazyloaderex(importlib.util.LazyLoader):
"""This is a LazyLoader except it also follows the _deactivated global and
@@ -144,9 +138,6 @@
def enable():
- if not _supported:
- return
-
new_finders = []
for finder in sys.meta_path:
new_finders.append(
To: indygreg, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
More information about the Mercurial-devel
mailing list