diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2020-07-19 21:53:39 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-07-19 21:53:39 -0400 |
commit | 1e53a2c14e7e0f788c9df2a542ac10f6b2f511d7 (patch) | |
tree | 88bfc588d035dcdeb6f45a39ba055cf25748d0fa | |
parent | 2986be4e55d6c8113344d5e184d40c6c3945a2bb (diff) | |
download | external_python_setuptools-1e53a2c14e7e0f788c9df2a542ac10f6b2f511d7.tar.gz external_python_setuptools-1e53a2c14e7e0f788c9df2a542ac10f6b2f511d7.tar.bz2 external_python_setuptools-1e53a2c14e7e0f788c9df2a542ac10f6b2f511d7.zip |
Move docstring closer to relevant context
-rw-r--r-- | _distutils_importer/__init__.py | 7 | ||||
-rw-r--r-- | _distutils_importer/override.py | 7 |
2 files changed, 7 insertions, 7 deletions
diff --git a/_distutils_importer/__init__.py b/_distutils_importer/__init__.py index 06674eb8..3ad70100 100644 --- a/_distutils_importer/__init__.py +++ b/_distutils_importer/__init__.py @@ -1,10 +1,3 @@ -""" -Ensure that the local copy of distutils is preferred over stdlib. - -See https://github.com/pypa/setuptools/issues/417#issuecomment-392298401 -for more motivation. -""" - import sys import os diff --git a/_distutils_importer/override.py b/_distutils_importer/override.py index 91738485..523139bb 100644 --- a/_distutils_importer/override.py +++ b/_distutils_importer/override.py @@ -1,3 +1,10 @@ +""" +Ensure that the local copy of distutils is preferred over stdlib. + +See https://github.com/pypa/setuptools/issues/417#issuecomment-392298401 +for more motivation. +""" + import sys import re import importlib |