tests/basics/set_pop.py: Sort set before printing for consistent output.
This commit is contained in:
parent
4f9842ad80
commit
96e1fd480d
|
@ -15,4 +15,4 @@ while s:
|
|||
print(s.pop()) # last pop() should trigger the optimisation
|
||||
for i in range(N):
|
||||
s.add(i) # check that we can add the numbers back to the set
|
||||
print(list(s))
|
||||
print(sorted(s))
|
||||
|
|
Loading…
Reference in New Issue