diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-02 13:07:41 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-02 13:07:41 -0500 |
commit | b72261b9a0c9e45c730eff86fae594428f6f932a (patch) | |
tree | 7fd463bacc6f23984aa36603c49d1afee0187eec | |
parent | 144cd7bb846c5bcbadf1676d5455a065de52419a (diff) | |
download | external_python_setuptools-b72261b9a0c9e45c730eff86fae594428f6f932a.tar.gz external_python_setuptools-b72261b9a0c9e45c730eff86fae594428f6f932a.tar.bz2 external_python_setuptools-b72261b9a0c9e45c730eff86fae594428f6f932a.zip |
Replace comment with clearer docstring.
-rw-r--r-- | setuptools/tests/test_upload_docs.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/setuptools/tests/test_upload_docs.py b/setuptools/tests/test_upload_docs.py index 9e85f0d6..6fe9e051 100644 --- a/setuptools/tests/test_upload_docs.py +++ b/setuptools/tests/test_upload_docs.py @@ -40,8 +40,10 @@ def sample_project(tmpdir_cwd): class TestUploadDocsTest: def test_create_zipfile(self): - # Test to make sure zipfile creation handles common cases. - # This explicitly includes a folder containing an empty folder. + """ + Ensure zipfile creation handles common cases, including a folder + containing an empty folder. + """ dist = Distribution() |