Category "frozenset"

Is it possible to create frozen sets with curly braces?

It appears that one can only create a frozenset using the frozenset() constructor. Is this true or is there a textual way to create a frozen set? I can find no

Maintaining the order of the elements in a frozen set

I have a list of tuples, each tuple of which contains one string and two integers. The list looks like this: x = [('a',1,2), ('b',3,4), ('x',5,6), ('a',2,1)]