Damien George | eb7bfcb | 2014-01-04 15:57:35 +0000 | [diff] [blame^] | 1 | // All the qstr definitions in this file are available as constants. |
2 | // That is, they are in ROM and you can reference them simple as MP_QSTR_xxxx. | ||||
3 | |||||
4 | Q(__build_class__) | ||||
5 | Q(__class__) | ||||
6 | Q(__doc__) | ||||
7 | Q(__init__) | ||||
8 | Q(__locals__) | ||||
9 | Q(__main__) | ||||
10 | Q(__module__) | ||||
11 | Q(__name__) | ||||
12 | Q(__next__) | ||||
13 | Q(__qualname__) | ||||
14 | Q(__repl_print__) | ||||
15 | |||||
16 | Q(assertion_error) | ||||
17 | Q(micropython) | ||||
18 | Q(byte_code) | ||||
19 | Q(native) | ||||
20 | Q(viper) | ||||
21 | Q(asm_thumb) | ||||
22 | |||||
23 | Q(StopIteration) | ||||
24 | |||||
25 | Q(AttributeError) | ||||
26 | Q(IndexError) | ||||
27 | Q(KeyError) | ||||
28 | Q(NameError) | ||||
29 | Q(TypeError) | ||||
30 | Q(SyntaxError) | ||||
31 | Q(ValueError) | ||||
32 | |||||
33 | Q(abs) | ||||
34 | Q(all) | ||||
35 | Q(any) | ||||
36 | Q(bool) | ||||
37 | Q(callable) | ||||
38 | Q(chr) | ||||
39 | Q(complex) | ||||
40 | Q(dict) | ||||
41 | Q(divmod) | ||||
42 | Q(float) | ||||
43 | Q(hash) | ||||
44 | Q(int) | ||||
45 | Q(iter) | ||||
46 | Q(len) | ||||
47 | Q(list) | ||||
48 | Q(max) | ||||
49 | Q(min) | ||||
50 | Q(next) | ||||
51 | Q(ord) | ||||
52 | Q(pow) | ||||
53 | Q(print) | ||||
54 | Q(range) | ||||
55 | Q(set) | ||||
56 | Q(sum) | ||||
57 | Q(type) | ||||
58 | |||||
59 | Q(append) | ||||
60 | Q(pop) | ||||
61 | Q(sort) | ||||
62 | Q(join) | ||||
63 | Q(format) |