diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-01-16 06:11:13 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-01-16 06:11:13 -0500 |
commit | 434aef220e6ec7cfc609bce631ef8528c930c20c (patch) | |
tree | 00f16fc43fcd130c599b87b75feccfb2b25b789b /setuptools/command/build_py.py | |
parent | ecc8c659b45cec0b69335a74445de2be500c382a (diff) | |
download | python-setuptools-git-434aef220e6ec7cfc609bce631ef8528c930c20c.tar.gz |
Move trailing comment to docstring
Diffstat (limited to 'setuptools/command/build_py.py')
-rw-r--r-- | setuptools/command/build_py.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/setuptools/command/build_py.py b/setuptools/command/build_py.py index 8a50f032..32e37e52 100644 --- a/setuptools/command/build_py.py +++ b/setuptools/command/build_py.py @@ -59,7 +59,8 @@ class build_py(orig.build_py, Mixin2to3): self.byte_compile(orig.build_py.get_outputs(self, include_bytecode=0)) def __getattr__(self, attr): - if attr == 'data_files': # lazily compute data files + "lazily compute data files" + if attr == 'data_files': self.data_files = files = self._get_data_files() return files return orig.build_py.__getattr__(self, attr) |