Skip to content

Commit 23a7694

Browse files
committed
coorection des engines
1 parent 57bcfd9 commit 23a7694

4 files changed

Lines changed: 248 additions & 467 deletions

File tree

Core/Compiler/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@
4444
"try_install_missing_modules",
4545
"try_start_processes",
4646
"show_error_dialog",
47-
"build_nuitka_command",
48-
"build_pyinstaller_command",
4947
"clamp_text",
5048
"start_compilation_process",
5149
"cancel_all_compilations",

Core/__init__.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,7 @@ def add(t: str, p: str | None) -> None:
104104
"try_install_missing_modules": (".compiler", "try_install_missing_modules"),
105105
"show_error_dialog": (".compiler", "show_error_dialog"),
106106
"cancel_all_compilations": (".compiler", "cancel_all_compilations"),
107-
"build_pyinstaller_command": (".compiler", "build_pyinstaller_command"),
108-
"build_nuitka_command": (".compiler", "build_nuitka_command"),
107+
109108
# Dependency analysis (some internal helpers intentionally exported)
110109
"suggest_missing_dependencies": (
111110
".dependency_analysis",
@@ -269,8 +268,7 @@ def __getattr__(name: str) -> Any:
269268
),
270269
"show_error_dialog": _load_export("show_error_dialog"),
271270
"cancel_all_compilations": _load_export("cancel_all_compilations"),
272-
"build_pyinstaller_command": _load_export("build_pyinstaller_command"),
273-
"build_nuitka_command": _load_export("build_nuitka_command"),
271+
274272
},
275273
"dependency_analysis": {
276274
"suggest_missing_dependencies": _load_export(

0 commit comments

Comments
 (0)