mirror of
https://github.com/micropython/micropython.git
synced 2025-09-07 02:10:52 +02:00
Ultimately all static strings should be qstr. This entry in the type structure is only used for printing error messages (to tell the type of the bad argument), and printing objects that don't supply a .print method.
123 lines
1.4 KiB
C
123 lines
1.4 KiB
C
// 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(__import__)
|
|
Q(__init__)
|
|
Q(__locals__)
|
|
Q(__main__)
|
|
Q(__module__)
|
|
Q(__name__)
|
|
Q(__next__)
|
|
Q(__qualname__)
|
|
Q(__repl_print__)
|
|
|
|
Q(__bool__)
|
|
Q(__len__)
|
|
Q(__getitem__)
|
|
Q(__setitem__)
|
|
Q(__add__)
|
|
Q(__sub__)
|
|
|
|
Q(micropython)
|
|
Q(byte_code)
|
|
Q(native)
|
|
Q(viper)
|
|
Q(asm_thumb)
|
|
|
|
Q(Ellipsis)
|
|
Q(StopIteration)
|
|
|
|
Q(AssertionError)
|
|
Q(AttributeError)
|
|
Q(ImportError)
|
|
Q(IndentationError)
|
|
Q(IndexError)
|
|
Q(KeyError)
|
|
Q(NameError)
|
|
Q(NotImplementedError)
|
|
Q(OSError)
|
|
Q(SyntaxError)
|
|
Q(TypeError)
|
|
Q(ValueError)
|
|
Q(OverflowError)
|
|
|
|
Q(NoneType)
|
|
|
|
Q(abs)
|
|
Q(all)
|
|
Q(any)
|
|
Q(array)
|
|
Q(bool)
|
|
Q(bytearray)
|
|
Q(bytes)
|
|
Q(callable)
|
|
Q(chr)
|
|
Q(classmethod)
|
|
Q(complex)
|
|
Q(dict)
|
|
Q(dir)
|
|
Q(divmod)
|
|
Q(enumerate)
|
|
Q(eval)
|
|
Q(exec)
|
|
Q(filter)
|
|
Q(float)
|
|
Q(hash)
|
|
Q(id)
|
|
Q(int)
|
|
Q(isinstance)
|
|
Q(issubclass)
|
|
Q(iter)
|
|
Q(len)
|
|
Q(list)
|
|
Q(map)
|
|
Q(max)
|
|
Q(min)
|
|
Q(next)
|
|
Q(ord)
|
|
Q(path)
|
|
Q(pow)
|
|
Q(print)
|
|
Q(range)
|
|
Q(repr)
|
|
Q(set)
|
|
Q(sorted)
|
|
Q(staticmethod)
|
|
Q(sum)
|
|
Q(super)
|
|
Q(str)
|
|
Q(sys)
|
|
Q(tuple)
|
|
Q(type)
|
|
Q(zip)
|
|
|
|
Q(append)
|
|
Q(pop)
|
|
Q(sort)
|
|
Q(join)
|
|
Q(strip)
|
|
Q(format)
|
|
Q(key)
|
|
Q(reverse)
|
|
|
|
Q(bound_method)
|
|
Q(closure)
|
|
Q(dict_view)
|
|
Q(function)
|
|
Q(generator)
|
|
Q(iterator)
|
|
Q(module)
|
|
Q(slice)
|
|
|
|
Q(<module>)
|
|
Q(<lambda>)
|
|
Q(<listcomp>)
|
|
Q(<dictcomp>)
|
|
Q(<setcomp>)
|
|
Q(<genexpr>)
|
|
Q(<string>)
|
|
Q(<stdin>)
|