diff options
author | Damien George <damien.p.george@gmail.com> | 2014-04-27 19:23:46 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-04-27 19:23:46 +0100 |
commit | 708c07325007148d8e553b20df3f9110cedb58ab (patch) | |
tree | 0ecae18e4c406d3d9ffb4c1195ee1400ac4ffd67 /py/qstrdefs.h | |
parent | 968bf34c4c7c457816eb3a9d8358519ba1d3a65f (diff) |
py: Add '*' qstr for 'import *'; use blank qstr for comprehension arg.
Diffstat (limited to 'py/qstrdefs.h')
-rw-r--r-- | py/qstrdefs.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/py/qstrdefs.h b/py/qstrdefs.h index 380236de4..70105c5e2 100644 --- a/py/qstrdefs.h +++ b/py/qstrdefs.h @@ -2,6 +2,9 @@ // All the qstr definitions in this file are available as constants. // That is, they are in ROM and you can reference them simply as MP_QSTR_xxxx. +// TODO probably should add Python keywords, eg if, def, etc + +Q(*) Q(__build_class__) Q(__class__) Q(__doc__) |