mirror of
https://github.com/python/cpython.git
synced 2025-08-19 00:00:48 +00:00
fixed bdist_msi imports and added a test module for distutils.command.bdist_msi
This commit is contained in:
parent
ffd849618a
commit
b28e5d7e41
2 changed files with 26 additions and 3 deletions
|
@ -6,15 +6,15 @@
|
|||
"""
|
||||
Implements the bdist_msi command.
|
||||
"""
|
||||
|
||||
import sys, os
|
||||
from sysconfig import get_python_version, get_platform
|
||||
|
||||
from distutils.core import Command
|
||||
from distutils.dir_util import remove_tree
|
||||
from distutils.sysconfig import get_python_version
|
||||
from distutils.version import StrictVersion
|
||||
from distutils.errors import DistutilsOptionError
|
||||
from distutils.util import get_platform
|
||||
from distutils import log
|
||||
|
||||
import msilib
|
||||
from msilib import schema, sequence, text
|
||||
from msilib import Directory, Feature, Dialog, add_data
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue