File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1
1
from .compilers .C import msvc
2
2
3
+ __all__ = ["MSVCCompiler" ]
4
+
3
5
MSVCCompiler = msvc .Compiler
Original file line number Diff line number Diff line change 1
1
from .compilers .C import base
2
2
from .compilers .C .base import (
3
- CompileError ,
4
- LinkError ,
3
+ compiler_class ,
5
4
gen_lib_options ,
6
5
gen_preprocess_options ,
7
6
get_default_compiler ,
8
7
new_compiler ,
9
8
show_compilers ,
10
9
)
10
+ from .compilers .C .errors import CompileError , LinkError
11
11
12
12
__all__ = [
13
13
'CompileError' ,
14
14
'LinkError' ,
15
+ 'compiler_class' ,
15
16
'gen_lib_options' ,
16
17
'gen_preprocess_options' ,
17
18
'get_default_compiler' ,
Original file line number Diff line number Diff line change
1
+ Restore `distutils.ccompiler.compiler_class ` -- by :user: `Avasam `
You can’t perform that action at this time.
0 commit comments