blob: 85cf1ff7bdcd2f5b72cf52a3a6926ff155f52827 [file] [log] [blame]
Damien Georgeeb7bfcb2014-01-04 15:57:35 +00001// 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
4Q(__build_class__)
5Q(__class__)
6Q(__doc__)
7Q(__init__)
8Q(__locals__)
9Q(__main__)
10Q(__module__)
11Q(__name__)
12Q(__next__)
13Q(__qualname__)
14Q(__repl_print__)
15
16Q(assertion_error)
17Q(micropython)
18Q(byte_code)
19Q(native)
20Q(viper)
21Q(asm_thumb)
22
23Q(StopIteration)
24
25Q(AttributeError)
26Q(IndexError)
27Q(KeyError)
28Q(NameError)
29Q(TypeError)
30Q(SyntaxError)
31Q(ValueError)
32
33Q(abs)
34Q(all)
35Q(any)
36Q(bool)
37Q(callable)
38Q(chr)
39Q(complex)
40Q(dict)
41Q(divmod)
42Q(float)
43Q(hash)
44Q(int)
45Q(iter)
46Q(len)
47Q(list)
48Q(max)
49Q(min)
50Q(next)
51Q(ord)
52Q(pow)
53Q(print)
54Q(range)
55Q(set)
56Q(sum)
57Q(type)
58
59Q(append)
60Q(pop)
61Q(sort)
62Q(join)
63Q(format)