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
4 changes: 4 additions & 0 deletions Doc/library/operator.rst
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,8 @@ Operations which work with sequences (some of them with mappings too) include:
__concat__(a, b)

Return ``a + b`` for *a* and *b* sequences.
(Note that there is no :meth:`!__concat__` method.
Instead, the :meth:`~object.__add__` method is called.)


.. function:: contains(a, b)
Expand Down Expand Up @@ -519,6 +521,8 @@ will perform the update, so no subsequent assignment is necessary:
__iconcat__(a, b)

``a = iconcat(a, b)`` is equivalent to ``a += b`` for *a* and *b* sequences.
(Note that there is no :meth:`!__iconcat__` method.
Instead, the :meth:`~object.__iadd__` method is called.)


.. function:: ifloordiv(a, b)
Expand Down
Loading