diff options
author | Thiebaud Weksteen <tweek@google.com> | 2016-10-26 16:36:54 +1100 |
---|---|---|
committer | Thiebaud Weksteen <tweek@google.com> | 2016-10-26 16:36:54 +1100 |
commit | e12256c4d32ebf59791d56576ec328131f58357a (patch) | |
tree | 4e44f881555cbf5fb5f8f0c1c56a58e3fb40d1c7 /setuptools/command/sdist.py | |
parent | d382def1367e9d9b288e9b04b6f2da5987052b5b (diff) | |
download | external_python_setuptools-e12256c4d32ebf59791d56576ec328131f58357a.tar.gz external_python_setuptools-e12256c4d32ebf59791d56576ec328131f58357a.tar.bz2 external_python_setuptools-e12256c4d32ebf59791d56576ec328131f58357a.zip |
Remove _add_defaults_data_files override
Diffstat (limited to 'setuptools/command/sdist.py')
-rwxr-xr-x | setuptools/command/sdist.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/setuptools/command/sdist.py b/setuptools/command/sdist.py index 9975753d..d4ac9efa 100755 --- a/setuptools/command/sdist.py +++ b/setuptools/command/sdist.py @@ -141,11 +141,6 @@ class sdist(sdist_add_defaults, orig.sdist): self.filelist.extend([os.path.join(src_dir, filename) for filename in filenames]) - def _add_defaults_data_files(self): - """ - Don't add any data files, but why? - """ - def check_readme(self): for f in self.READMES: if os.path.exists(f): |