diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2016-10-14 14:06:28 -0400 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-10-14 14:06:28 -0400 |
| commit | 45112961a7fa764f5a26663563da5ff84abb4dc1 (patch) | |
| tree | 842d33706c331d735fa87c2c0ffb7d21c6d0c887 | |
| parent | f7813318848865c2032b974eda7906a748264cce (diff) | |
| download | python-setuptools-git-45112961a7fa764f5a26663563da5ff84abb4dc1.tar.gz | |
Remove wildcard imports from distutils.command.sdist
| -rw-r--r-- | command/sdist.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/command/sdist.py b/command/sdist.py index 4fd1d471..690bd66f 100644 --- a/command/sdist.py +++ b/command/sdist.py @@ -4,17 +4,17 @@ Implements the Distutils 'sdist' command (create a source distribution).""" import os import sys -from types import * from glob import glob from warnings import warn from distutils.core import Command from distutils import dir_util, dep_util, file_util, archive_util from distutils.text_file import TextFile -from distutils.errors import * from distutils.filelist import FileList from distutils import log from distutils.util import convert_path +from distutils.errors import DistutilsTemplateError, DistutilsOptionError + def show_formats(): """Print all possible values for the 'formats' option (used by |
