mirror of
https://github.com/python/cpython.git
synced 2025-11-03 19:34:08 +00:00
Remove wildcard imports from distutils.command.sdist
This commit is contained in:
parent
a1cc98bb8f
commit
c9bba2bcc0
1 changed files with 2 additions and 2 deletions
|
|
@ -4,17 +4,17 @@ Implements the Distutils 'sdist' command (create a source distribution)."""
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
from types import *
|
|
||||||
from glob import glob
|
from glob import glob
|
||||||
from warnings import warn
|
from warnings import warn
|
||||||
|
|
||||||
from distutils.core import Command
|
from distutils.core import Command
|
||||||
from distutils import dir_util, dep_util, file_util, archive_util
|
from distutils import dir_util, dep_util, file_util, archive_util
|
||||||
from distutils.text_file import TextFile
|
from distutils.text_file import TextFile
|
||||||
from distutils.errors import *
|
|
||||||
from distutils.filelist import FileList
|
from distutils.filelist import FileList
|
||||||
from distutils import log
|
from distutils import log
|
||||||
from distutils.util import convert_path
|
from distutils.util import convert_path
|
||||||
|
from distutils.errors import DistutilsTemplateError, DistutilsOptionError
|
||||||
|
|
||||||
|
|
||||||
def show_formats():
|
def show_formats():
|
||||||
"""Print all possible values for the 'formats' option (used by
|
"""Print all possible values for the 'formats' option (used by
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue