micropython/py/qstrdefs.h

95 lines
1.1 KiB
C
Raw Normal View History

// All the qstr definitions in this file are available as constants.
// That is, they are in ROM and you can reference them simple as MP_QSTR_xxxx.
Q(__build_class__)
Q(__class__)
Q(__doc__)
Q(__init__)
Q(__locals__)
Q(__main__)
Q(__module__)
Q(__name__)
Q(__next__)
Q(__qualname__)
Q(__repl_print__)
Q(__getitem__)
Q(__add__)
Q(__sub__)
Q(micropython)
Q(byte_code)
Q(native)
Q(viper)
Q(asm_thumb)
2014-01-04 11:44:46 -07:00
Q(Ellipsis)
Q(StopIteration)
Q(AssertionError)
Q(AttributeError)
Q(IndentationError)
Q(IndexError)
Q(KeyError)
Q(NameError)
Q(OSError)
Q(SyntaxError)
Q(TypeError)
Q(ValueError)
Q(OverflowError)
Q(abs)
Q(all)
Q(any)
Q(array)
Q(bool)
Q(bytearray)
Q(bytes)
Q(callable)
Q(chr)
Q(complex)
Q(dict)
Q(divmod)
2014-01-14 16:55:01 -07:00
Q(enumerate)
2014-01-15 15:14:03 -07:00
Q(eval)
2014-01-14 18:37:08 -07:00
Q(filter)
Q(float)
Q(hash)
Q(int)
Q(isinstance)
Q(issubclass)
Q(iter)
Q(len)
Q(list)
2014-01-14 18:10:09 -07:00
Q(map)
Q(max)
Q(min)
Q(next)
Q(ord)
Q(pow)
Q(print)
Q(range)
2014-01-15 14:40:48 -07:00
Q(repr)
Q(set)
2014-01-12 22:12:50 -07:00
Q(sorted)
Q(sum)
Q(str)
Q(tuple)
Q(type)
2014-01-12 19:31:00 -07:00
Q(zip)
Q(append)
Q(pop)
Q(sort)
Q(join)
2014-01-08 15:23:45 -07:00
Q(strip)
Q(format)
Q(<module>)
Q(<lambda>)
Q(<listcomp>)
Q(<dictcomp>)
Q(<setcomp>)
Q(<genexpr>)
Q(<stdin>)