From 2dfd952eb99590878430510644ffe99dd4a6a41d Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Tue, 13 Sep 2022 09:38:19 -0400 Subject: Move classes used by scripts to their own module Those classes are used by wrapper scripts and we should not have to import the rest of mesonlib, build.py, and all their dependencies for that. This renames mesonlib/ directory to utils/ and add a mesonlib.py module that imports everything from utils/ to not have to change `import mesonlib` everywhere. It allows to import utils.core without importing the rest of mesonlib. --- meson.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'meson.py') diff --git a/meson.py b/meson.py index 89352a3..6f3ba2a 100755 --- a/meson.py +++ b/meson.py @@ -14,6 +14,8 @@ # See the License for the specific language governing permissions and # limitations under the License. +# This file is an entry point for all commands, including scripts. Include the +# strict minimum python modules for performance reasons. import sys # Check python version before importing anything else, we might have an older -- cgit v1.1