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/monkey.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/monkey.py')
-rw-r--r-- | setuptools/monkey.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/monkey.py b/setuptools/monkey.py index 189fa4e0..1961dfba 100644 --- a/setuptools/monkey.py +++ b/setuptools/monkey.py @@ -12,7 +12,7 @@ __all__ = [] "everything is private" -def _get_unpatched(cls): +def get_unpatched(cls): """Protect against re-patching the distutils if reloaded Also ensures that no other distutils extension monkeypatched the distutils |