diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-09-04 19:09:42 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-09-04 19:09:42 -0400 |
commit | d6efc9424328b42a3c7aeae758bab35bc7df5014 (patch) | |
tree | ef9071de6b6694904b7e3247bb03ac123cd5a0e5 /setuptools/extension.py | |
parent | 64b10c60755b6c7d70d178aeb7ff79ae9daf56bd (diff) | |
download | external_python_setuptools-d6efc9424328b42a3c7aeae758bab35bc7df5014.tar.gz external_python_setuptools-d6efc9424328b42a3c7aeae758bab35bc7df5014.tar.bz2 external_python_setuptools-d6efc9424328b42a3c7aeae758bab35bc7df5014.zip |
Introduce a new monkey module to encapsulate the monkeypatching.
Diffstat (limited to 'setuptools/extension.py')
-rw-r--r-- | setuptools/extension.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/extension.py b/setuptools/extension.py index f8058b72..7ef3fad2 100644 --- a/setuptools/extension.py +++ b/setuptools/extension.py @@ -7,7 +7,7 @@ import distutils.extension from setuptools.extern.six.moves import map -from .dist import _get_unpatched +from .monkey import _get_unpatched from . import msvc _Extension = _get_unpatched(distutils.core.Extension) |