diff options
author | cookedm <cookedm@localhost> | 2006-02-02 03:28:25 +0000 |
---|---|---|
committer | cookedm <cookedm@localhost> | 2006-02-02 03:28:25 +0000 |
commit | 9e5252bd45403ddd97252d83ede5eeb6b72e0767 (patch) | |
tree | 5921cfdd13d93e22fe21f79469f355dfb2376021 /numpy/distutils/command/sdist.py | |
parent | 91473bf148643b2412e595f0897c86076ecae1d2 (diff) | |
download | numpy-9e5252bd45403ddd97252d83ede5eeb6b72e0767.tar.gz |
Remove unused imports
Diffstat (limited to 'numpy/distutils/command/sdist.py')
-rw-r--r-- | numpy/distutils/command/sdist.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/numpy/distutils/command/sdist.py b/numpy/distutils/command/sdist.py index a02bdbe45..9134fed53 100644 --- a/numpy/distutils/command/sdist.py +++ b/numpy/distutils/command/sdist.py @@ -1,5 +1,3 @@ - -from distutils.command.sdist import * from distutils.command.sdist import sdist as old_sdist from numpy.distutils.misc_util import get_data_files @@ -9,7 +7,7 @@ class sdist(old_sdist): old_sdist.add_defaults(self) dist = self.distribution - + if dist.has_data_files(): for data in dist.data_files: self.filelist.extend(get_data_files(data)) @@ -22,5 +20,3 @@ class sdist(old_sdist): self.filelist.extend(headers) return - - |