diff options
author | Damien George <damien.p.george@gmail.com> | 2014-04-05 23:02:23 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-04-05 23:02:23 +0100 |
commit | 27e735fd1870e24595eadb02164b164a3bb81b98 (patch) | |
tree | 055a15886ec0e55f19d32533a827fa5d1586b6a6 /py/qstrdefs.h | |
parent | 17520224fad7a0c4a742f9b8a46e016c2ba3cc46 (diff) | |
download | micropython-27e735fd1870e24595eadb02164b164a3bb81b98.tar.gz micropython-27e735fd1870e24595eadb02164b164a3bb81b98.zip |
py: Replace stream_p with *stream_p in mp_obj_type_t.
This is to reduce ROM usage. stream_p is used in file and socket types
only (at the moment), so seems a good idea to make the protocol
functions a pointer instead of the actual structure.
It saves 308 bytes of ROM in the stmhal/ port, 928 in unix/.
Diffstat (limited to 'py/qstrdefs.h')
-rw-r--r-- | py/qstrdefs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/py/qstrdefs.h b/py/qstrdefs.h index 2271941a05..85f69861b2 100644 --- a/py/qstrdefs.h +++ b/py/qstrdefs.h @@ -111,6 +111,7 @@ Q(max) Q(min) Q(namedtuple) Q(next) +Q(open) Q(ord) Q(path) Q(pow) |