py: Rename builtin "io" to "_io".

Functionality we provide in builtin io module is fairly minimal. Some
code, including CPython stdlib, depends on more functionality. So, there's
a choice to either implement it in C, or move it _io, and let implement other
functionality in Python. 2nd choice is pursued. This setup matches CPython
too (_io is builtin, io is Python-level).
This commit is contained in:
Paul Sokolovsky
2014-06-12 01:22:25 +03:00
parent 8a0801ad24
commit fbdf2f1d63
4 changed files with 5 additions and 5 deletions

View File

@@ -361,7 +361,7 @@ Q(unpack)
#endif
#if MICROPY_PY_IO
Q(io)
Q(_io)
Q(readall)
Q(readline)
Q(readlines)