tests/basics: Add test for dict.fromkeys where arg is a generator.
Improves coverage because it tests the case where the arg does not have a __len__ slot.
This commit is contained in:
parent
f8b71aabb4
commit
a31a3a9fd5
@ -8,3 +8,6 @@ l = list(d.values())
|
|||||||
l.sort()
|
l.sort()
|
||||||
print(l)
|
print(l)
|
||||||
|
|
||||||
|
# argument to fromkeys is a generator
|
||||||
|
d = dict.fromkeys(i + 1 for i in range(1))
|
||||||
|
print(d)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user