@@ -25,7 +25,6 @@ class Compiler:
2525
2626 language_map : ClassVar [dict [str , str ]]
2727 language_order : ClassVar [list [str ]]
28- dry_run : bool
2928 force : bool
3029 verbose : bool
3130 output_dir : str | None
@@ -39,7 +38,7 @@ class Compiler:
3938 SHARED_OBJECT : Final = "shared_object"
4039 SHARED_LIBRARY : Final = "shared_library"
4140 EXECUTABLE : Final = "executable"
42- def __init__ (self , verbose : bool = False , dry_run : bool = False , force : bool = False ) -> None : ...
41+ def __init__ (self , verbose : bool = False , force : bool = False ) -> None : ...
4342 def add_include_dir (self , dir : str ) -> None : ...
4443 def set_include_dirs (self , dirs : list [str ]) -> None : ...
4544 def add_library (self , libname : str ) -> None : ...
@@ -194,7 +193,7 @@ compiler_class: dict[str, tuple[str, str, str]]
194193
195194def show_compilers () -> None : ...
196195def new_compiler (
197- plat : str | None = None , compiler : str | None = None , verbose : bool = False , dry_run : bool = False , force : bool = False
196+ plat : str | None = None , compiler : str | None = None , verbose : bool = False , force : bool = False
198197) -> Compiler : ...
199198def gen_preprocess_options (macros : Iterable [_Macro ], include_dirs : Iterable [str ]) -> list [str ]: ...
200199def gen_lib_options (
0 commit comments