1try: 2 frozenset 3except NameError: 4 print("SKIP") 5 raise SystemExit 6 7# Examples from https://docs.python.org/3/library/stdtypes.html#set 8# "Instances of set are compared to instances of frozenset based on their 9# members. For example:" 10print(set('abc') == frozenset('abc')) 11# This doesn't work in uPy 12#print(set('abc') in set([frozenset('abc')])) 13