tests: Update for _io/_collections module having been renamed.

This commit is contained in:
Paul Sokolovsky
2016-05-02 14:15:11 +03:00
parent 621c644205
commit 8c35f3979c
10 changed files with 10 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
try:
from collections import namedtuple
except ImportError:
from _collections import namedtuple
from ucollections import namedtuple
T = namedtuple("Tup", ["foo", "bar"])
# CPython prints fully qualified name, what we don't bother to do so far