Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Doc/library/stdtypes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4415,8 +4415,9 @@ The constructors for both classes work the same:
return the type of the first operand. For example: ``frozenset('ab') |
set('bc')`` returns an instance of :class:`frozenset`.

The following table lists operations available for :class:`set` that do not
apply to immutable instances of :class:`frozenset`:
The following mutating operations are available for :class:`set` instances.
For :class:`frozenset` instances, only the augmented assignment variants of
these operations (``|=``, ``&=``, ``-=``, and ``^=``) are supported.

.. method:: update(*others)
set |= other | ...
Expand Down
Loading