mirror of
https://github.com/python/cpython.git
synced 2025-11-01 10:45:30 +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 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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue