diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-01 17:35:37 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-01 17:35:37 -0500 |
| commit | 615fc93eba554dba65b3545ead2405014e2a4af8 (patch) | |
| tree | 8469087f473c1f2869796c3178257328e9cf1c77 | |
| parent | 903c0d6a3bda96a0b193cc6efd2f8e868d4d82e2 (diff) | |
| download | python-setuptools-git-615fc93eba554dba65b3545ead2405014e2a4af8.tar.gz | |
Remodel comment as docstring.
| -rw-r--r-- | setuptools/tests/test_build_ext.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/setuptools/tests/test_build_ext.py b/setuptools/tests/test_build_ext.py index 32e4ad40..cc8a35e5 100644 --- a/setuptools/tests/test_build_ext.py +++ b/setuptools/tests/test_build_ext.py @@ -9,9 +9,11 @@ from setuptools.dist import Distribution class TestBuildExtTest(unittest.TestCase): def test_get_ext_filename(self): - # setuptools needs to give back the same - # result than distutils, even if the fullname - # is not in ext_map + """ + Setuptools needs to give back the same + result as distutils, even if the fullname + is not in ext_map. + """ dist = Distribution() cmd = build_ext(dist) cmd.ext_map['foo/bar'] = '' |
