# This is a set of Python keywords that cannot be used as prop names.
# Keywords for a particular version are obtained as follows:
# >>> import keyword
# >>> keyword.kwlist

kwlist = set([
    'and',
    'elif',
    'is',
    'global',
    'as',
    'in',
    'if',
    'from',
    'raise',
    'for',
    'except',
    'nonlocal',
    'pass',
    'finally',
    'print',
    'import',
    'True',
    'None',
    'return',
    'exec',
    'await',
    'else',
    'break',
    'not',
    'with',
    'class',
    'assert',
    'False',
    'yield',
    'try',
    'while',
    'continue',
    'del',
    'async',
    'or',
    'def',
    'lambda'
])
