fab634e3ee
This introduces a skip_if module that can be used by tests to determine when they should be skipped due to the environment. Some tests have been split in order to have finer grained skip control.
8 lines
165 B
Python
8 lines
165 B
Python
import skip_if
|
|
skip_if.no_reversed()
|
|
|
|
# argument to fromkeys has no __len__
|
|
d = dict.fromkeys(reversed(range(1)))
|
|
#d = dict.fromkeys((x for x in range(1)))
|
|
print(d)
|