circuitpython/tests/basics/dict_fromkeys_reversed.py

8 lines
170 B
Python

# Skip this test if reversed() isn't built in.
import skip_if
skip_if.no_reversed()
# argument to fromkeys has no __len__
d = dict.fromkeys(reversed(range(1)))
print(d)