diff options
author | Damien George <damien.p.george@gmail.com> | 2014-04-28 09:56:31 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-04-28 09:56:31 +0100 |
commit | 0c8fcb9c498966bc330150a50ed31bf6874d79d2 (patch) | |
tree | 172212928c6d8a6334ba3c21713712024170a4d5 /py | |
parent | a224067846ad92c09249abdcb77fac7420eb1a95 (diff) | |
download | micropython-0c8fcb9c498966bc330150a50ed31bf6874d79d2.tar.gz micropython-0c8fcb9c498966bc330150a50ed31bf6874d79d2.zip |
py: Remove silly comment about interning keywords.
Of course, keywords are turned into lexer tokens in the lexer, so will
never need to be interned (unless you do something like x="def").
As it is now, the following on pyboard makes no new qstrs:
import pyb
pyb.info()
Diffstat (limited to 'py')
-rw-r--r-- | py/qstrdefs.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/py/qstrdefs.h b/py/qstrdefs.h index 70105c5e22..6960bd06cb 100644 --- a/py/qstrdefs.h +++ b/py/qstrdefs.h @@ -2,8 +2,6 @@ // 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__) |