phml.embedded.built_in

 1built_in_funcs = [
 2    "abs",
 3    "aiter",
 4    "all",
 5    "any",
 6    "anext",
 7    "ascii",
 8    "bin",
 9    "bool",
10    "breakpoint",
11    "bytearray",
12    "bytes",
13    "callable",
14    "chr",
15    "classmethod",
16    "compile",
17    "complex",
18    "delattr",
19    "dict",
20    "dir",
21    "divmod",
22    "enumerate",
23    "eval",
24    "exec",
25    "filter",
26    "float",
27    "format",
28    "frozenset",
29    "getattr",
30    "globals",
31    "hasattr",
32    "hash",
33    "help",
34    "hex",
35    "id",
36    "input",
37    "int",
38    "isinstance",
39    "issubclass",
40    "iter",
41    "len",
42    "list",
43    "locals",
44    "map",
45    "max",
46    "memoryview",
47    "min",
48    "next",
49    "object",
50    "oct",
51    "open",
52    "ord",
53    "pow",
54    "print",
55    "property",
56    "range",
57    "repr",
58    "reversed",
59    "round",
60    "set",
61    "setattr",
62    "slice",
63    "sorted",
64    "staticmethod",
65    "str",
66    "sum",
67    "super",
68    "tuple",
69    "type",
70    "vars",
71    "zip",
72    "__import__",
73]
74
75built_in_types = [
76    "int",
77    "float",
78    "complex",
79    "str",
80    "list",
81    "tuple",
82    "range",
83    "bytes",
84    "bytearray",
85    "memoryview",
86    "dict",
87    "bool",
88    "set",
89    "frozenset",
90]