summaryrefslogtreecommitdiffstats
path: root/Lib/importlib
diff options
context:
space:
mode:
authorEric Snow <ericsnowcurrently@gmail.com>2016-09-09 20:30:54 (GMT)
committerEric Snow <ericsnowcurrently@gmail.com>2016-09-09 20:30:54 (GMT)
commit50fd89806f685ab4be84721a1d8f37184f625739 (patch)
treebafa029a1ac856576a61c5ce6b3b0485f19d101a /Lib/importlib
parent9539963a4474f9c029b3a472fe80609e04f785a9 (diff)
downloadcpython-50fd89806f685ab4be84721a1d8f37184f625739.zip
cpython-50fd89806f685ab4be84721a1d8f37184f625739.tar.gz
cpython-50fd89806f685ab4be84721a1d8f37184f625739.tar.bz2
Issue #24320: Drop an old setuptools-induced hack.
Diffstat (limited to 'Lib/importlib')
-rw-r--r--Lib/importlib/_bootstrap_external.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/Lib/importlib/_bootstrap_external.py b/Lib/importlib/_bootstrap_external.py
index 4340c3b..9a7e6ec 100644
--- a/Lib/importlib/_bootstrap_external.py
+++ b/Lib/importlib/_bootstrap_external.py
@@ -1440,8 +1440,3 @@ def _install(_bootstrap_module):
if _os.__name__ == 'nt':
sys.meta_path.append(WindowsRegistryFinder)
sys.meta_path.append(PathFinder)
-
- # XXX We expose a couple of classes in _bootstrap for the sake of
- # a setuptools bug (https://bitbucket.org/pypa/setuptools/issue/378).
- _bootstrap_module.FileFinder = FileFinder
- _bootstrap_module.SourceFileLoader = SourceFileLoader