Skip to content
Merged
Show file tree
Hide file tree
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: 2 additions & 2 deletions Doc/library/stdtypes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,8 @@ exception.
operator: not in

Two more operations with the same syntactic priority, :keyword:`in` and
:keyword:`not in`, are supported only by sequence types (below).

:keyword:`not in`, are supported by types that are :term:`iterable` or
implement the :meth:`__contains__` method.

.. _typesnumeric:

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Fixed info in the stdtypes docs concerning the types that support membership
tests.