diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-05-02 14:15:11 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-05-02 14:15:11 +0300 |
commit | 8c35f3979c38bc8a29a22e7a61d33f87ff856124 (patch) | |
tree | cd50201cc11d2f688e85e91e1ff271bb9daea4f4 /tests/misc/recursive_data.py | |
parent | 621c644205384103ac781bbe8cd952f0df289c41 (diff) | |
download | micropython-8c35f3979c38bc8a29a22e7a61d33f87ff856124.tar.gz micropython-8c35f3979c38bc8a29a22e7a61d33f87ff856124.zip |
tests: Update for _io/_collections module having been renamed.
Diffstat (limited to 'tests/misc/recursive_data.py')
-rw-r--r-- | tests/misc/recursive_data.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/misc/recursive_data.py b/tests/misc/recursive_data.py index 53fb30f9ff..0de93acb89 100644 --- a/tests/misc/recursive_data.py +++ b/tests/misc/recursive_data.py @@ -1,5 +1,5 @@ # This tests that printing recursive data structure doesn't lead to segfault. -import _io as io +import uio as io l = [1, 2, 3, None] l[-1] = l |