frozensets can be mutated using methods from class set
>>>> x = frozenset()
>>>> set.add(x, 1)
>>>> x
frozenset({1})
April 05-07 - Mercurial Paris Conference 2023 - One day of workshop dedicated to Heptapod and Mercurial usage and workflow. There are still places available for both workshops and talks!
>>>> x = frozenset()
>>>> set.add(x, 1)
>>>> x
frozenset({1})