(venv_3_10) marco@buzz:~$ python Python 3.10.0 (heads/3.10-dirty:f6e8b80d20, Nov 18 2021, 19:16:18) [GCC 10.1.1 20200718] on linux Type "help", "copyright", "credits" or "license" for more information. >>> a = frozenset((3, 4)) >>> a frozenset({3, 4}) >>> a |= {5,} >>> a frozenset({3, 4, 5}) -- https://mail.python.org/mailman/listinfo/python-list
- frozenset can be altered by |= Marco Sulla
- Re: frozenset can be altered by |= Chris Angelico
- Re: frozenset can be altered by |= Chris Angelico
- Re: frozenset can be altered by |= Marco Sulla
- RE: frozenset can be altered by |= David Raymond
- Re: frozenset can be altered by |= Chris Angelico
- Re: frozenset can be altered by |= Marco Sulla
- Re: frozenset can be altered by |= Marco Sulla
- Re: frozenset can be altered by |... Chris Angelico
- Re: frozenset can be altered ... Richard Damon
- Re: frozenset can be altered ... Chris Angelico