blob: f6b4444a70dd4f44df6b8871e9fb1086ae5d696a [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
Damien Georgeeb7bfcb2014-01-04 15:57:35 +000016Q(micropython)
17Q(byte_code)
18Q(native)
19Q(viper)
20Q(asm_thumb)
21
Damien Georgee9906ac2014-01-04 18:44:46 +000022Q(Ellipsis)
Damien Georgeeb7bfcb2014-01-04 15:57:35 +000023Q(StopIteration)
24
Damien George71c51812014-01-04 20:21:15 +000025Q(AssertionError)
Damien Georgeeb7bfcb2014-01-04 15:57:35 +000026Q(AttributeError)
27Q(IndexError)
28Q(KeyError)
29Q(NameError)
Damien Georgeeb7bfcb2014-01-04 15:57:35 +000030Q(SyntaxError)
Damien George71c51812014-01-04 20:21:15 +000031Q(TypeError)
Damien Georgeeb7bfcb2014-01-04 15:57:35 +000032Q(ValueError)
Paul Sokolovsky1e408402014-01-07 19:35:39 +020033Q(OSError)
Damien Georgeeb7bfcb2014-01-04 15:57:35 +000034
35Q(abs)
36Q(all)
37Q(any)
38Q(bool)
39Q(callable)
40Q(chr)
41Q(complex)
42Q(dict)
43Q(divmod)
John R. Lenton9daa7892014-01-14 23:55:01 +000044Q(enumerate)
John R. Lentonfca456b2014-01-15 01:37:08 +000045Q(filter)
Damien Georgeeb7bfcb2014-01-04 15:57:35 +000046Q(float)
47Q(hash)
48Q(int)
Damien George004cdce2014-01-09 21:43:51 +000049Q(isinstance)
50Q(issubclass)
Damien Georgeeb7bfcb2014-01-04 15:57:35 +000051Q(iter)
52Q(len)
53Q(list)
John R. Lenton39b174e2014-01-15 01:10:09 +000054Q(map)
Damien Georgeeb7bfcb2014-01-04 15:57:35 +000055Q(max)
56Q(min)
57Q(next)
58Q(ord)
59Q(pow)
60Q(print)
61Q(range)
62Q(set)
John R. Lenton5c768392014-01-13 05:12:50 +000063Q(sorted)
Damien Georgeeb7bfcb2014-01-04 15:57:35 +000064Q(sum)
Damien George71c51812014-01-04 20:21:15 +000065Q(tuple)
Damien Georgeeb7bfcb2014-01-04 15:57:35 +000066Q(type)
John R. Lenton07205ec2014-01-13 02:31:00 +000067Q(zip)
Damien Georgeeb7bfcb2014-01-04 15:57:35 +000068
69Q(append)
70Q(pop)
71Q(sort)
72Q(join)
xbe7b0f39f2014-01-08 14:23:45 -080073Q(strip)
Damien Georgeeb7bfcb2014-01-04 15:57:35 +000074Q(format)