Import exceptions from errors.py, not ccompiler.py.

This commit is contained in:
Greg Ward 2000-05-30 02:02:49 +00:00
parent 39804cbc60
commit 3add77f611
2 changed files with 7 additions and 7 deletions

View File

@ -12,11 +12,11 @@ __revision__ = "$Id$"
import sys, os, string
from types import *
from distutils.errors import *
from distutils.ccompiler import \
CCompiler, gen_preprocess_options, gen_lib_options, \
from distutils.errors import \
DistutilsExecError, DistutilsPlatformError, \
CompileError, LibError, LinkError
from distutils.ccompiler import \
CCompiler, gen_preprocess_options, gen_lib_options
_can_read_reg = 0
try:

View File

@ -22,9 +22,9 @@ from types import *
from copy import copy
from distutils import sysconfig
from distutils.ccompiler import \
CCompiler, gen_preprocess_options, gen_lib_options, \
CompileError, LibError, LinkError
from distutils.errors import DistutilsExecError
CCompiler, gen_preprocess_options, gen_lib_options
from distutils.errors import \
DistutilsExecError, CompileError, LibError, LinkError
# XXX Things not currently handled:
# * optimization/debug/warning flags; we just use whatever's in Python's