Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/testing/web-platform/tests/tools/lint/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 860 B image not shown  

Quelle  fnmatch.py   Sprache: Python

 
import fnmatch as _stdlib_fnmatch
import os
from typing import Iterable, List, Text


__all__ = ["fnmatch""fnmatchcase""filter""translate"]


def fnmatch(name: Text, pat: Text) -> bool:
    name = os.path.normcase(name)
    pat = os.path.normcase(pat)
    return fnmatchcase(name, pat)


def fnmatchcase(name: Text, pat: Text) -> bool:
    if '?' not in pat and '[' not in pat:
        wildcards = pat.count("*")
        if wildcards == 0:
            return name == pat
        elif wildcards == 1 and pat[0] == "*":
            return name.endswith(pat[1:])
        elif wildcards == 1 and pat[-1] == "*":
            return name.startswith(pat[:-1])
    return _stdlib_fnmatch.fnmatchcase(name, pat)


def filter(names: Iterable[Text], pat: Text) -> List[Text]:
    return [n for n in names if fnmatch(n, pat)]


translate = _stdlib_fnmatch.translate

Messung V0.5
C=100 H=93 G=96

¤ Dauer der Verarbeitung: 0.3 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.