aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/extension.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-09-04 19:30:10 -0400
committerJason R. Coombs <jaraco@jaraco.com>2016-09-04 19:30:10 -0400
commit443cabec148460b3a688923df1a63f689d1164c7 (patch)
treec0935d6336b46b63c48bb3ea9ae36b88844678e3 /setuptools/extension.py
parent57a5c05e6f460260f1339dce37407c724ad4c5e8 (diff)
downloadexternal_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.py4
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()