summaryrefslogtreecommitdiff
path: root/py/mpqstrraw.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-01-21 21:40:13 +0000
committerDamien George <damien.p.george@gmail.com>2014-01-21 21:40:13 +0000
commit55baff4c9bcbc001cbb8972c289ebfa356d4665b (patch)
treebd086f9ddf8c5f2db9642ee04fc382064ebd2029 /py/mpqstrraw.h
parent91d457a27752fa125e9c6107bf51c918e021dc95 (diff)
Revamp qstrs: they now include length and hash.
Can now have null bytes in strings. Can define ROM qstrs per port using qstrdefsport.h
Diffstat (limited to 'py/mpqstrraw.h')
-rw-r--r--py/mpqstrraw.h81
1 files changed, 0 insertions, 81 deletions
diff --git a/py/mpqstrraw.h b/py/mpqstrraw.h
deleted file mode 100644
index 10b1fc0d3..000000000
--- a/py/mpqstrraw.h
+++ /dev/null
@@ -1,81 +0,0 @@
-// 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(micropython)
-Q(byte_code)
-Q(native)
-Q(viper)
-Q(asm_thumb)
-
-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(callable)
-Q(chr)
-Q(complex)
-Q(dict)
-Q(divmod)
-Q(enumerate)
-Q(eval)
-Q(filter)
-Q(float)
-Q(hash)
-Q(int)
-Q(isinstance)
-Q(issubclass)
-Q(iter)
-Q(len)
-Q(list)
-Q(map)
-Q(max)
-Q(min)
-Q(next)
-Q(ord)
-Q(pow)
-Q(print)
-Q(range)
-Q(repr)
-Q(set)
-Q(sorted)
-Q(sum)
-Q(str)
-Q(tuple)
-Q(type)
-Q(zip)
-
-Q(append)
-Q(pop)
-Q(sort)
-Q(join)
-Q(strip)
-Q(format)