diff options
| author | Paul Sokolovsky | 2016-05-02 14:15:11 +0300 |
|---|---|---|
| committer | Paul Sokolovsky | 2016-05-02 14:15:11 +0300 |
| commit | 8c35f3979c38bc8a29a22e7a61d33f87ff856124 (patch) | |
| tree | cd50201cc11d2f688e85e91e1ff271bb9daea4f4 /tests/io | |
| parent | 621c644205384103ac781bbe8cd952f0df289c41 (diff) | |
tests: Update for _io/_collections module having been renamed.
Diffstat (limited to 'tests/io')
| -rw-r--r-- | tests/io/buffered_writer.py | 2 | ||||
| -rw-r--r-- | tests/io/stringio1.py | 2 | ||||
| -rw-r--r-- | tests/io/stringio_with.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/io/buffered_writer.py b/tests/io/buffered_writer.py index 0fe8a7730..afeaa839c 100644 --- a/tests/io/buffered_writer.py +++ b/tests/io/buffered_writer.py @@ -1,4 +1,4 @@ -import _io as io +import uio as io try: io.BytesIO diff --git a/tests/io/stringio1.py b/tests/io/stringio1.py index 22f561f29..a224c5b0c 100644 --- a/tests/io/stringio1.py +++ b/tests/io/stringio1.py @@ -1,4 +1,4 @@ -import _io as io +import uio as io a = io.StringIO() print('io.StringIO' in repr(a)) diff --git a/tests/io/stringio_with.py b/tests/io/stringio_with.py index becb564df..6dc48c893 100644 --- a/tests/io/stringio_with.py +++ b/tests/io/stringio_with.py @@ -1,4 +1,4 @@ -import _io as io +import uio as io # test __enter__/__exit__ with io.StringIO() as b: |
