We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c0427b commit 2dd1091Copy full SHA for 2dd1091
distutils/ccompiler.py
@@ -6,18 +6,20 @@
6
get_default_compiler,
7
new_compiler,
8
show_compilers,
9
+ _default_compilers,
10
)
11
from .compilers.C.errors import CompileError, LinkError
12
13
__all__ = [
- 'CompileError',
14
- 'LinkError',
15
- 'compiler_class',
16
- 'gen_lib_options',
17
- 'gen_preprocess_options',
18
- 'get_default_compiler',
19
- 'new_compiler',
20
- 'show_compilers',
+ "CompileError",
+ "LinkError",
+ "compiler_class",
+ "gen_lib_options",
+ "gen_preprocess_options",
+ "get_default_compiler",
+ "new_compiler",
21
+ "show_compilers",
22
23
]
24
25
newsfragments/4877.bugfix.rst
@@ -0,0 +1 @@
1
+Restore `distutils.ccompiler._default_compilers` -- by :user:`ManiacDC`
0 commit comments