mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
Fixed imports from '*util' modules to not just import everything from util.
This commit is contained in:
parent
5a8aa1ba2e
commit
ab3a0f36ed
7 changed files with 18 additions and 16 deletions
|
|
@ -9,7 +9,8 @@ __revision__ = "$Id$"
|
|||
|
||||
import sys, os, string
|
||||
from distutils.core import Command
|
||||
from distutils.util import get_platform, create_tree, remove_tree
|
||||
from distutils.util import get_platform
|
||||
from distutils.dir_util import create_tree, remove_tree
|
||||
from distutils.errors import *
|
||||
|
||||
class bdist_wininst (Command):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue