aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/environment.py
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2022-10-06 23:42:37 -0400
committerEli Schwartz <eschwartz@archlinux.org>2023-02-01 17:01:30 -0500
commita21af43200e13fa65e12bdbe5116a0cecc4990b3 (patch)
tree4db989be7c51dd745fa17e09b60d64f64f6f6bcc /mesonbuild/environment.py
parent680b5ff819bf36397ea560f802510bce5b83f6bc (diff)
downloadmeson-a21af43200e13fa65e12bdbe5116a0cecc4990b3.zip
meson-a21af43200e13fa65e12bdbe5116a0cecc4990b3.tar.gz
meson-a21af43200e13fa65e12bdbe5116a0cecc4990b3.tar.bz2
micro-optimize: define typing-only objects in TYPE_CHECKING
Union types that exist solely for use as annotations don't need to be created in normal runs.
Diffstat (limited to 'mesonbuild/environment.py')
-rw-r--r--mesonbuild/environment.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py
index 40629da..ae38ff4 100644
--- a/mesonbuild/environment.py
+++ b/mesonbuild/environment.py
@@ -51,9 +51,10 @@ if T.TYPE_CHECKING:
from .wrap.wrap import Resolver
-build_filename = 'meson.build'
+ CompilersDict = T.Dict[str, Compiler]
+
-CompilersDict = T.Dict[str, Compiler]
+build_filename = 'meson.build'
def _get_env_var(for_machine: MachineChoice, is_cross: bool, var_name: str) -> T.Optional[str]: