From b239a5f2ec3ef076bfe825db1a694f02351b281f Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Sun, 28 Dec 2014 16:01:43 -0500 Subject: Correct docstring --- setuptools/sandbox.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'setuptools/sandbox.py') 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)(\.|$)') -- cgit v1.2.1