diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-12-28 16:01:43 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-12-28 16:01:43 -0500 |
commit | b239a5f2ec3ef076bfe825db1a694f02351b281f (patch) | |
tree | b98e8e6dcf04c3dc938353f6ff6e4151f955ad4b /setuptools/sandbox.py | |
parent | 15d7d87013e9c95f1e343ab7fee3d7f2bbd1d607 (diff) | |
download | external_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-x | setuptools/sandbox.py | 10 |
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)(\.|$)') |