@ -5,11 +5,8 @@
try:
from collections import namedtuple
except ImportError:
from ucollections import namedtuple
print("SKIP")
raise SystemExit
import skip_if
skip_if.no_cpython_compat()
@ -1,8 +1,5 @@
@ -2,10 +2,7 @@ import skip_if
skip_if.skip()
@ -1,11 +1,8 @@
from collections import OrderedDict
from ucollections import OrderedDict
d = OrderedDict([(10, 20), ("b", 100), (1, 2)])
print(len(d))
x = OrderedDict()
y = OrderedDict()
@ -1,5 +1,5 @@
import bench
T = namedtuple("Tup", ["num", "bar"])
T = namedtuple("Tup", ["foo1", "foo2", "foo3", "foo4", "num"])
@ -68,10 +68,7 @@ def board_not_in(*board):
def no_cpython_compat():
skip()