bpo-28617 Fixed docs inaccuracies about the types that support membership tests (GH-9086)

<!-- issue-number: [bpo-28617](https://www.bugs.python.org/issue28617) -->
https://bugs.python.org/issue28617
<!-- /issue-number -->
This commit is contained in:
wim glenn 2018-09-11 12:44:52 -05:00 committed by Miss Islington (bot)
parent b690b9b047
commit 08bcf647d8
2 changed files with 4 additions and 2 deletions

View File

@ -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:

View File

@ -0,0 +1,2 @@
Fixed info in the stdtypes docs concerning the types that support membership
tests.