fastest.code_assets.keywords   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 98
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 97
dl 0
loc 98
rs 10
c 0
b 0
f 0
1
FALSE = 'False'
2
CLASS = 'class'
3
FINALLY = 'finally'
4
IS = 'is'
5
RETURN = 'return'
6
NONE = 'None'
7
CONTINUE = 'continue'
8
FOR = 'for'
9
LAMBDA = 'lambda'
10
TRY = 'try'
11
TRUE = 'True'
12
DEF = 'def'
13
FROM = 'from'
14
NONLOCAL = 'nonlocal'
15
WHILE = 'while'
16
AND = 'and'
17
DEL = 'del'
18
GLOBAL = 'global'
19
NOT = 'not'
20
WITH = 'with'
21
AS = 'as'
22
ELIF = 'elif'
23
IF = 'if'
24
OR = 'or'
25
YIELD = 'yield'
26
ASSERT = 'assert'
27
ELSE = 'else'
28
IMPORT = 'import'
29
PASS = 'pass'
30
BREAK = 'break'
31
EXCEPT = 'except'
32
IN = 'in'
33
RAISE = 'raise'
34
35
RESERVED = [
36
    FALSE,
37
    CLASS,
38
    FINALLY,
39
    IS,
40
    RETURN,
41
    NONE,
42
    CONTINUE,
43
    FOR,
44
    LAMBDA,
45
    TRY,
46
    TRUE,
47
    DEF,
48
    FROM,
49
    NONLOCAL,
50
    WHILE,
51
    AND,
52
    DEL,
53
    GLOBAL,
54
    NOT,
55
    WITH,
56
    AS,
57
    ELIF,
58
    IF,
59
    OR,
60
    YIELD,
61
    ASSERT,
62
    ELSE,
63
    IMPORT,
64
    PASS,
65
    BREAK,
66
    EXCEPT,
67
    IN,
68
    RAISE,
69
    "+",
70
    "-",
71
    "/",
72
    "*",
73
    "+=",
74
    "-=",
75
    "/=",
76
    "*=",
77
    "**",
78
    "%",
79
    "!",
80
    "@",
81
    "^",
82
    "&",
83
    "(",
84
    ")",
85
    "=",
86
    "'",
87
    "\"",
88
    "|",
89
    ">",
90
    ">=",
91
    "<",
92
    "<=",
93
    ",",
94
    "!=",
95
    "==",
96
    ":",
97
    '.'
98
]
99