aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/sandbox.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-12-28 16:01:43 -0500
committerJason R. Coombs <jaraco@jaraco.com>2014-12-28 16:01:43 -0500
commitb239a5f2ec3ef076bfe825db1a694f02351b281f (patch)
treeb98e8e6dcf04c3dc938353f6ff6e4151f955ad4b /setuptools/sandbox.py
parent15d7d87013e9c95f1e343ab7fee3d7f2bbd1d607 (diff)
downloadexternal_python_setuptools-b239a5f2ec3ef076bfe825db1a694f02351b281f.tar.gz
external_python_setuptools-b239a5f2ec3ef076bfe825db1a694f02351b281f.tar.bz2
external_python_setuptools-b239a5f2ec3ef076bfe825db1a694f02351b281f.zip
Correct docstring
Diffstat (limited to 'setuptools/sandbox.py')
-rwxr-xr-xsetuptools/sandbox.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/setuptools/sandbox.py b/setuptools/sandbox.py
index 2216e9a6..63760df4 100755
--- a/setuptools/sandbox.py
+++ b/setuptools/sandbox.py
@@ -136,15 +136,15 @@ def setup_context(setup_dir):
def _is_setuptools_module(mod_name):
"""
- >>> is_setuptools_module('setuptools')
+ >>> _is_setuptools_module('setuptools')
True
- >>> is_setuptools_module('pkg_resources')
+ >>> _is_setuptools_module('pkg_resources')
True
- >>> is_setuptools_module('setuptools_plugin')
+ >>> _is_setuptools_module('setuptools_plugin')
False
- >>> is_setuptools_module('setuptools.__init__')
+ >>> _is_setuptools_module('setuptools.__init__')
True
- >>> is_setuptools_module('distutils')
+ >>> _is_setuptools_module('distutils')
True
"""
pattern = re.compile('(setuptools|pkg_resources|distutils)(\.|$)')