Skip to content

Commit 4f61b1e

Browse files
committed
Removed command_helpers.py and integrated its functions into mainprocess.py
1 parent 5a3880e commit 4f61b1e

4 files changed

Lines changed: 505 additions & 487 deletions

File tree

Core/Compiler/__init__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@
3131
- kill_process_tree: Tue un processus et ses enfants
3232
- build_command: Construit une commande de compilation
3333
- validate_command: Valide une commande de compilation
34+
35+
Note: Les fonctions de command_helpers.py ont été intégrées dans mainprocess.py
36+
pour supporter l'intégration avec ArkConfigManager pour les exclusions.
3437
"""
3538

3639
from __future__ import annotations
@@ -65,10 +68,7 @@
6568
ProcessState,
6669
MainProcessSignals,
6770
MainProcess,
68-
)
69-
70-
# Importations de command_helpers.py
71-
from Core.Compiler.command_helpers import (
71+
# Fonctions intégrées depuis l'ancien command_helpers.py
7272
build_command,
7373
validate_command,
7474
escape_arguments,
@@ -101,7 +101,7 @@
101101
"ProcessState",
102102
"MainProcessSignals",
103103
"MainProcess",
104-
# command_helpers.py
104+
# Fonctions de construction de commande (intégrées depuis command_helpers.py)
105105
"build_command",
106106
"validate_command",
107107
"escape_arguments",

0 commit comments

Comments
 (0)