Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
e32934ef
Commit
e32934ef
authored
May 30, 2000
by
Greg Ward
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Import exceptions from errors.py, not ccompiler.py.
parent
a4ff67e1
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
Lib/distutils/msvccompiler.py
Lib/distutils/msvccompiler.py
+4
-4
Lib/distutils/unixccompiler.py
Lib/distutils/unixccompiler.py
+3
-3
No files found.
Lib/distutils/msvccompiler.py
View file @
e32934ef
...
@@ -12,11 +12,11 @@ __revision__ = "$Id$"
...
@@ -12,11 +12,11 @@ __revision__ = "$Id$"
import
sys
,
os
,
string
import
sys
,
os
,
string
from
types
import
*
from
types
import
*
from
distutils.errors
import
*
from
distutils.errors
import
\
from
distutils.ccompiler
import
\
DistutilsExecError
,
DistutilsPlatformError
,
\
CCompiler
,
gen_preprocess_options
,
gen_lib_options
,
\
CompileError
,
LibError
,
LinkError
CompileError
,
LibError
,
LinkError
from
distutils.ccompiler
import
\
CCompiler
,
gen_preprocess_options
,
gen_lib_options
_can_read_reg
=
0
_can_read_reg
=
0
try
:
try
:
...
...
Lib/distutils/unixccompiler.py
View file @
e32934ef
...
@@ -22,9 +22,9 @@ from types import *
...
@@ -22,9 +22,9 @@ from types import *
from
copy
import
copy
from
copy
import
copy
from
distutils
import
sysconfig
from
distutils
import
sysconfig
from
distutils.ccompiler
import
\
from
distutils.ccompiler
import
\
CCompiler
,
gen_preprocess_options
,
gen_lib_options
,
\
CCompiler
,
gen_preprocess_options
,
gen_lib_options
CompileError
,
LibError
,
LinkError
from
distutils.errors
import
\
from
distutils.errors
import
DistutilsExec
Error
DistutilsExecError
,
CompileError
,
LibError
,
Link
Error
# XXX Things not currently handled:
# XXX Things not currently handled:
# * optimization/debug/warning flags; we just use whatever's in Python's
# * optimization/debug/warning flags; we just use whatever's in Python's
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment