This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Sydney Pemberton
Recipients Sydney Pemberton, docs@python, iritkatriel, rhettinger
Date 2020-08-11.21:35:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <CAPD9d87yCsRNz1ZqWv3P_uSyMCsaJDw707GFkznAJA_Gj+skGg@mail.gmail.com>
In-reply-to <1597150201.15.0.0801498523244.issue40994@roundup.psfhosted.org>
Content
If you look at the Jupyter notebook it should be fairly clear but to
summarize here is the issue:

class collections.abc.Container
class collections.abc.Hashable
class collections.abc.Sized
class collections.abc.Callable
    ABCs for classes that provide respectively the
methods __contains__(), __hash__(), __len__(), and __call__().

This should become

class collections.abc.Container
    ABC for classes that provide the method __contains__().
class collections.abc.Hashable
     ABC for classes that provide the method __hash__().
class collections.abc.Sized
    ABC for classes that provide the method __len()__.
class collections.abc.Callable
    ABC for classes that provide the method __call__().
History
Date User Action Args
2020-08-11 21:35:35Sydney Pembertonsetrecipients: + Sydney Pemberton, rhettinger, docs@python, iritkatriel
2020-08-11 21:35:35Sydney Pembertonlinkissue40994 messages
2020-08-11 21:35:35Sydney Pembertoncreate