aboutsummaryrefslogtreecommitdiff
path: root/tests/io/stringio1.py
AgeCommit message (Collapse)Author
2015-04-04tests: Add missing tests for builtins, and many other things.Damien George
2015-01-20py: Prevent segfault for operations on closed StringIO.stijn
Addresses issue #1067.
2014-06-12py: Rename builtin "io" to "_io".Paul Sokolovsky
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).
2014-04-26modio: Implement io.StringIO class.Paul Sokolovsky