diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2016-09-09 20:30:54 (GMT) |
---|---|---|
committer | Eric Snow <ericsnowcurrently@gmail.com> | 2016-09-09 20:30:54 (GMT) |
commit | 50fd89806f685ab4be84721a1d8f37184f625739 (patch) | |
tree | bafa029a1ac856576a61c5ce6b3b0485f19d101a /Lib | |
parent | 9539963a4474f9c029b3a472fe80609e04f785a9 (diff) | |
download | cpython-50fd89806f685ab4be84721a1d8f37184f625739.zip cpython-50fd89806f685ab4be84721a1d8f37184f625739.tar.gz cpython-50fd89806f685ab4be84721a1d8f37184f625739.tar.bz2 |
Issue #24320: Drop an old setuptools-induced hack.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/importlib/_bootstrap_external.py | 5 |
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 |