diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-09-04 19:30:10 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-09-04 19:30:10 -0400 |
commit | 443cabec148460b3a688923df1a63f689d1164c7 (patch) | |
tree | c0935d6336b46b63c48bb3ea9ae36b88844678e3 /setuptools/extension.py | |
parent | 57a5c05e6f460260f1339dce37407c724ad4c5e8 (diff) | |
download | external_python_setuptools-443cabec148460b3a688923df1a63f689d1164c7.tar.gz external_python_setuptools-443cabec148460b3a688923df1a63f689d1164c7.tar.bz2 external_python_setuptools-443cabec148460b3a688923df1a63f689d1164c7.zip |
Remove private prefix from monkey as monkey module explicitly declares that all functions are private.
Diffstat (limited to 'setuptools/extension.py')
-rw-r--r-- | setuptools/extension.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/extension.py b/setuptools/extension.py index 7ef3fad2..073d9459 100644 --- a/setuptools/extension.py +++ b/setuptools/extension.py @@ -7,10 +7,10 @@ import distutils.extension from setuptools.extern.six.moves import map -from .monkey import _get_unpatched +from .monkey import get_unpatched from . import msvc -_Extension = _get_unpatched(distutils.core.Extension) +_Extension = get_unpatched(distutils.core.Extension) msvc.patch_for_specialized_compiler() |