diff options
author | Damien George <damien.p.george@gmail.com> | 2014-01-24 14:14:44 -0800 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-01-24 14:14:44 -0800 |
commit | 60aca4810f68811b6fc0b69d02ccb05ddf2e555f (patch) | |
tree | 290586fcfd6428980ae5c04383f4a4e2458f409b /py/qstrdefs.h | |
parent | 2b2cb7b7f4f467b67082f79053118df78f48e66e (diff) | |
parent | ab5d08280bda4e8c96a0729ae99400e1a8bf08a5 (diff) | |
download | micropython-60aca4810f68811b6fc0b69d02ccb05ddf2e555f.tar.gz micropython-60aca4810f68811b6fc0b69d02ccb05ddf2e555f.zip |
Merge pull request #215 from pfalcon/qstr-special-chars
Allow qstr's with non-ident chars, construct good identifier for them.
Diffstat (limited to 'py/qstrdefs.h')
-rw-r--r-- | py/qstrdefs.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/py/qstrdefs.h b/py/qstrdefs.h index 9bc01c5851..f2c4dfd97f 100644 --- a/py/qstrdefs.h +++ b/py/qstrdefs.h @@ -80,3 +80,11 @@ Q(sort) Q(join) Q(strip) Q(format) + +Q(<module>) +Q(<lambda>) +Q(<listcomp>) +Q(<dictcomp>) +Q(<setcomp>) +Q(<genexpr>) +Q(<stdin>) |