diff options
Diffstat (limited to 'py/qstrdefs.h')
-rw-r--r-- | py/qstrdefs.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/py/qstrdefs.h b/py/qstrdefs.h index bcbbcf98e..380236de4 100644 --- a/py/qstrdefs.h +++ b/py/qstrdefs.h @@ -118,7 +118,6 @@ Q(hash) Q(hex) Q(%#x) Q(id) -Q(io) Q(int) Q(isinstance) Q(issubclass) @@ -139,6 +138,7 @@ Q(path) Q(pow) Q(print) Q(range) +Q(read) Q(repr) Q(set) Q(sorted) @@ -151,6 +151,7 @@ Q(to_bytes) Q(tuple) Q(type) Q(value) +Q(write) Q(zip) Q(sep) @@ -308,6 +309,15 @@ Q(pack) Q(unpack) #endif +#if MICROPY_ENABLE_MOD_IO +Q(io) +Q(readall) +Q(readline) +Q(StringIO) +Q(BytesIO) +Q(getvalue) +#endif + #if MICROPY_ENABLE_PROPERTY Q(property) Q(getter) |