diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2021-12-29 10:51:43 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2021-12-29 10:51:43 -0500 |
| commit | 41f61f3cce618b594c3c76b78162945f26fa6b61 (patch) | |
| tree | d6dd950cd3d94608872a43fe73033ba6fb3ea4db /_distutils_hack | |
| parent | 15340a3f1ec40e4d7267518d04487d7b4108ee83 (diff) | |
| download | python-setuptools-git-41f61f3cce618b594c3c76b78162945f26fa6b61.tar.gz | |
Restore assertion about expected distutils.
Diffstat (limited to '_distutils_hack')
| -rw-r--r-- | _distutils_hack/__init__.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/_distutils_hack/__init__.py b/_distutils_hack/__init__.py index a5c8e1cf..cb694b34 100644 --- a/_distutils_hack/__init__.py +++ b/_distutils_hack/__init__.py @@ -58,9 +58,7 @@ def ensure_local_distutils(): # check that submodules load as expected core = importlib.import_module('distutils.core') - # FIXME: this assertion blows up if the MetaFinder below has no-opped on a - # setuptools from another path - # assert '_distutils' in core.__file__, core.__file__ + assert '_distutils' in core.__file__, core.__file__ def do_override(): |
