From e371422476f51a83d27d70dc45bbfba1544aad55 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Sun, 19 Jul 2020 21:36:33 -0400 Subject: Consolidate distutils importing hacks into _distutils_importer package. Generate distutils-precedence.pth inline. --- _distutils_importer/install.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 _distutils_importer/install.py (limited to '_distutils_importer/install.py') diff --git a/_distutils_importer/install.py b/_distutils_importer/install.py new file mode 100644 index 00000000..73f13b29 --- /dev/null +++ b/_distutils_importer/install.py @@ -0,0 +1,5 @@ +from . import enabled, add_shim + + +if enabled(): + add_shim() -- cgit v1.2.3