summaryrefslogtreecommitdiffstatshomepage
path: root/py
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-04-28 09:56:31 +0100
committerDamien George <damien.p.george@gmail.com>2014-04-28 09:56:31 +0100
commit0c8fcb9c498966bc330150a50ed31bf6874d79d2 (patch)
tree172212928c6d8a6334ba3c21713712024170a4d5 /py
parenta224067846ad92c09249abdcb77fac7420eb1a95 (diff)
downloadmicropython-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.h2
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__)