aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/__init__.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-09-06 22:42:32 -0400
committerJason R. Coombs <jaraco@jaraco.com>2015-09-06 22:42:32 -0400
commit34d2c5a13852c7e668df91b1fde4ad8465897f29 (patch)
tree56a8b34c1d26b66cd22d0edfb9de0fdece1ecc72 /setuptools/__init__.py
parentc8364b9cf2eeccf684777e53ae4abad2e4fc30b3 (diff)
parent3c0d3a91f64a9174f6e3473bbcea3be42045004a (diff)
downloadexternal_python_setuptools-34d2c5a13852c7e668df91b1fde4ad8465897f29.tar.gz
external_python_setuptools-34d2c5a13852c7e668df91b1fde4ad8465897f29.tar.bz2
external_python_setuptools-34d2c5a13852c7e668df91b1fde4ad8465897f29.zip
Merge
Diffstat (limited to 'setuptools/__init__.py')
-rw-r--r--setuptools/__init__.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/setuptools/__init__.py b/setuptools/__init__.py
index 0d1994dc..e9390336 100644
--- a/setuptools/__init__.py
+++ b/setuptools/__init__.py
@@ -140,8 +140,9 @@ class Command(_Command):
distutils.core.Command = Command
def findall(dir=os.curdir):
- """Find all files under 'dir' and return the list of full filenames
- (relative to 'dir').
+ """
+ Find all files under 'dir' and return the list of full filenames.
+ Unless dir is '.', return full filenames with dir prepended.
"""
def _prepend(base):
return functools.partial(os.path.join, os.path.relpath(base, dir))