commit | 708c07325007148d8e553b20df3f9110cedb58ab | [log] [tgz] |
---|---|---|
author | Damien George <damien.p.george@gmail.com> | Sun Apr 27 19:23:46 2014 +0100 |
committer | Damien George <damien.p.george@gmail.com> | Sun Apr 27 19:23:46 2014 +0100 |
tree | 0ecae18e4c406d3d9ffb4c1195ee1400ac4ffd67 | |
parent | 968bf34c4c7c457816eb3a9d8358519ba1d3a65f [diff] [blame] |
py: Add '*' qstr for 'import *'; use blank qstr for comprehension arg.
diff --git a/py/makeqstrdata.py b/py/makeqstrdata.py index afde772..34413f0 100644 --- a/py/makeqstrdata.py +++ b/py/makeqstrdata.py
@@ -20,6 +20,7 @@ codepoint2name[ord('#')] = 'hash' codepoint2name[ord('{')] = 'brace_open' codepoint2name[ord('}')] = 'brace_close' +codepoint2name[ord('*')] = 'star' # this must match the equivalent function in qstr.c def compute_hash(qstr):