Skip to content
Snippets Groups Projects
Commit 7bb14635 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

tests/dict_fromkeys: Revert to use reversed() to run in native codegen mode.

parent 83623b2f
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,6 @@ l.sort()
print(l)
# argument to fromkeys has no __len__
#d = dict.fromkeys(reversed(range(1)))
d = dict.fromkeys((x for x in range(1)))
d = dict.fromkeys(reversed(range(1)))
#d = dict.fromkeys((x for x in range(1)))
print(d)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment