mirror of
https://github.com/micropython/micropython.git
synced 2026-01-06 12:10:13 +01:00
tests/comprehension1, containment: Split set tests to separate files.
To make skippable.
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
# sets, see set_containment
|
||||
for i in 1, 2:
|
||||
for o in {1:2}, {1}, {1:2}.keys():
|
||||
for o in {1:2}, {1:2}.keys():
|
||||
print("{} in {}: {}".format(i, o, i in o))
|
||||
print("{} not in {}: {}".format(i, o, i not in o))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user