Does the splat/unpacking operator * always sort when applied to sets of ints?
Example 1 (ints):
In [1]: [*{8,3,6,3,2,1}]
Out[1]: [1, 2, 3, 6, 8]
Counter Example 2 (strings):
In [615]: [*{'b','d','a','c','e'}]
Out[615]: ['a', 'd', 'c', 'b', 'e']
Counter example 3 (tuples):
In [1]: [*{(2,3),(2,2),(1,2),(1,1)}]
Out[2]: [(2, 3), (1, 1), (1, 2), (2, 2)]