Python-Dateien

Neu laden
Gefunden: 162 Datei(en)
keyword.py
# Source Generated with Decompyle++
# File: keyword.pyc (Python 3.13)

__all__ = [
    'iskeyword',
    'issoftkeyword',
    'kwlist',
    'softkwlist']
kwlist = [
    'False',
    'None',
    'True',
    'and',
    'as',
    'assert',
    'async',
    'await',
    'break',
    'class',
    'continue',
    'def',
    'del',
    'elif',
    'else',
    'except',
    'finally',
    'for',
    'from',
    'global',
    'if',
    'import',
    'in',
    'is',
    'lambda',
    'nonlocal',
    'not',
    'or',
    'pass',
    'raise',
    'return',
    'try',
    'while',
    'with',
    'yield']
softkwlist = [
    '_',
    'case',
    'match']
iskeyword = frozenset(kwlist).__contains__
issoftkeyword = frozenset(softkwlist).__contains__