blob: e73bd828eb212fbeafb64523da3fba023dbceb1c [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
Damien Georgee9906ac2014-01-04 18:44:46 +000023Q(Ellipsis)
Damien Georgeeb7bfcb2014-01-04 15:57:35 +000024Q(StopIteration)
25
26Q(AttributeError)
27Q(IndexError)
28Q(KeyError)
29Q(NameError)
30Q(TypeError)
31Q(SyntaxError)
32Q(ValueError)
33
34Q(abs)
35Q(all)
36Q(any)
37Q(bool)
38Q(callable)
39Q(chr)
40Q(complex)
41Q(dict)
42Q(divmod)
43Q(float)
44Q(hash)
45Q(int)
46Q(iter)
47Q(len)
48Q(list)
49Q(max)
50Q(min)
51Q(next)
52Q(ord)
53Q(pow)
54Q(print)
55Q(range)
56Q(set)
57Q(sum)
58Q(type)
59
60Q(append)
61Q(pop)
62Q(sort)
63Q(join)
64Q(format)