diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2021-11-02 20:54:51 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2021-11-02 21:39:32 -0400 |
commit | 2d38be3259311220d069996b3a906f171dfddafc (patch) | |
tree | 18a91b0b1a1ffee84cffe949e86ca449fb8415b3 /setuptools/command/egg_info.py | |
parent | 0ea58d0ae197ae89e55f9fd20fa61db147294984 (diff) | |
download | python-setuptools-git-2d38be3259311220d069996b3a906f171dfddafc.tar.gz |
Reformat docstring and rewrite in imperative voice.
Diffstat (limited to 'setuptools/command/egg_info.py')
-rw-r--r-- | setuptools/command/egg_info.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/setuptools/command/egg_info.py b/setuptools/command/egg_info.py index ff009861..4165c35e 100644 --- a/setuptools/command/egg_info.py +++ b/setuptools/command/egg_info.py @@ -610,12 +610,13 @@ class manifest_maker(sdist): def _safe_data_files(self, build_py): """ - The parent class implementation of this method (``sdist``) will try to - include data files, which might cause recursion problems, when + The parent class implementation of this method + (``sdist``) will try to include data files, which + might cause recursion problems when ``include_package_data=True``. - Therefore we have to avoid triggering any attempt of analyzing/building - the manifest again. + Therefore, avoid triggering any attempt of + analyzing/building the manifest again. """ return build_py.get_data_files_without_manifest() |