diff options
author | Damien George <damien.p.george@gmail.com> | 2014-04-10 12:58:31 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-04-10 12:58:31 +0100 |
commit | 3a8b1607fcbffdbff0a0001d6baacea7693d15b9 (patch) | |
tree | 359d2b30a91c4ffc37ce2ce2734abfa6331d6dd3 /py/qstrdefs.h | |
parent | 635543c72cc9ccfb20c1ec1f64d329eef35ebe2d (diff) | |
parent | 978607aeffb5b1deca3a4ad4b0ab0d0e15b5e271 (diff) | |
download | micropython-3a8b1607fcbffdbff0a0001d6baacea7693d15b9.tar.gz micropython-3a8b1607fcbffdbff0a0001d6baacea7693d15b9.zip |
Merge branch 'master' of github.com:micropython/micropython
Diffstat (limited to 'py/qstrdefs.h')
-rw-r--r-- | py/qstrdefs.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/py/qstrdefs.h b/py/qstrdefs.h index 342160bbc7..17948434b4 100644 --- a/py/qstrdefs.h +++ b/py/qstrdefs.h @@ -84,6 +84,9 @@ Q(bool) Q(bytearray) Q(bytes) Q(callable) +#if MICROPY_ENABLE_MOD_STRUCT +Q(calcsize) +#endif Q(chr) Q(classmethod) Q(collections) @@ -127,10 +130,16 @@ Q(staticmethod) Q(sum) Q(super) Q(str) +#if MICROPY_ENABLE_MOD_STRUCT +Q(struct) +#endif Q(sys) Q(to_bytes) Q(tuple) Q(type) +#if MICROPY_ENABLE_MOD_STRUCT +Q(unpack) +#endif Q(value) Q(zip) |