Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/third_party/chromium/build/config/siso/   (Firefox Browser Version 153.0.1©)  Datei vom 27.6.2026 mit Größe 535 B image not shown  

Quelle  platform.star   Sprache: unbekannt

 
Spracherkennung für: .star vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]

# -*- bazel-starlark -*-
# Copyright 2023 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Utilities that fill gap between platforms."""

load("@builtin//runtime.star", "runtime")
load("@builtin//struct.star", "module")

# Python binary name. python3 or python3.exe.
__python_bin = {
    # is_windows => python bin
    True: "python3.exe",
    False: "python3",
}[runtime.os == "windows"]

platform = module(
    "platform",
    python_bin = __python_bin,
)

[Dauer der Verarbeitung: 0.23 Sekunden]