diff options
author | Hanno Schlichting <hanno@hannosch.eu> | 2009-08-08 12:14:21 +0100 |
---|---|---|
committer | Hanno Schlichting <hanno@hannosch.eu> | 2009-08-08 12:14:21 +0100 |
commit | def1a4f577242d326a93268c2851e2b3f48c5329 (patch) | |
tree | 50bd0a0c14826d977700389bc49a0f6bfa284767 /setuptools/__init__.py | |
parent | 9fc8f75bc04283b8a724e5245703fe62bdde6528 (diff) | |
download | external_python_setuptools-def1a4f577242d326a93268c2851e2b3f48c5329.tar.gz external_python_setuptools-def1a4f577242d326a93268c2851e2b3f48c5329.tar.bz2 external_python_setuptools-def1a4f577242d326a93268c2851e2b3f48c5329.zip |
Change references to ez_setup to point to our own bootstrapping instead.
--HG--
branch : distribute
extra : rebase_source : 4a2876da3de96acd0cae98f6cc2cdac28ed39846
Diffstat (limited to 'setuptools/__init__.py')
-rw-r--r-- | setuptools/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/__init__.py b/setuptools/__init__.py index f911ef8f..58e46d4f 100644 --- a/setuptools/__init__.py +++ b/setuptools/__init__.py @@ -18,7 +18,7 @@ __all__ = [ # or by the Distribute project, in case Setuptools creates # a distribution with the same version. # -# The ez_setup script for instance, will check if this +# The bootstrapping script for instance, will check if this # attribute is present to decide wether to reinstall the package _distribute = True @@ -43,7 +43,7 @@ def find_packages(where='.', exclude=()): os.path.isfile(os.path.join(fn,'__init__.py')) ): out.append(prefix+name); stack.append((fn,prefix+name+'.')) - for pat in list(exclude)+['ez_setup']: + for pat in list(exclude)+['ez_setup', 'bootstrapping']: from fnmatch import fnmatchcase out = [item for item in out if not fnmatchcase(item,pat)] return out |