summaryrefslogtreecommitdiffstatshomepage
path: root/tests/io/stringio1.py
Commit message (Collapse)AuthorAge
* all: Use the name MicroPython consistently in commentsAlexander Steffen2017-07-31
| | | | | There were several different spellings of MicroPython present in comments, when there should be only one.
* tests: Make "io" modules fixes for CPython compatibility.Paul Sokolovsky2016-05-02
| | | | | | | Previously, "import _io" worked on both CPython and MicroPython (essentially by a chance on CPython, as there's not guarantee that its contents will stay the same across versions), but as the module was renamed to uio, need to use more robust import sequence for compatibility.
* tests: Update for _io/_collections module having been renamed.Paul Sokolovsky2016-05-02
|
* tests: Add missing tests for builtins, and many other things.Damien George2015-04-04
|
* py: Prevent segfault for operations on closed StringIO.stijn2015-01-20
| | | | Addresses issue #1067.
* py: Rename builtin "io" to "_io".Paul Sokolovsky2014-06-12
| | | | | | | | 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).
* modio: Implement io.StringIO class.Paul Sokolovsky2014-04-26