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
68ff615c
Commit
68ff615c
authored
Jun 25, 2000
by
Greg Ward
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added PreprocessError and UnknownFileError (both used by CCompiler).
parent
eab969d7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
Lib/distutils/errors.py
Lib/distutils/errors.py
+5
-1
No files found.
Lib/distutils/errors.py
View file @
68ff615c
...
...
@@ -78,6 +78,9 @@ class DistutilsInternalError (DistutilsError):
class
CCompilerError
(
Exception
):
"""Some compile/link operation failed."""
class
PreprocessError
(
CCompilerError
):
"""Failure to preprocess one or more C/C++ files."""
class
CompileError
(
CCompilerError
):
"""Failure to compile one or more C/C++ source files."""
...
...
@@ -89,4 +92,5 @@ class LinkError (CCompilerError):
"""Failure to link one or more C/C++ object files into an executable
or shared library file."""
class
UnknownFileError
(
CCompilerError
):
"""Attempt to process an unknown file type."""
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