[issue27544] Document the ABCs for instance/subclass checks of dict view types

2021-10-21 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.11 -Python 3.5, Python 3.6 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue27544] Document the ABCs for instance/subclass checks of dict view types

2018-04-14 Thread Jeffrey McLarty
Change by Jeffrey McLarty : -- nosy: +Jeffrey McLarty ___ Python tracker ___ ___

[issue27544] Document the ABCs for instance/subclass checks of dict view types

2016-07-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: The view objects *are* built-ins, but are not exposed in the __builtins__ module. This is true of many internal types, perhaps even a majority. The function and list_iterator classes are other examples. >>> type(lambda: 0) >>> type(iter([])) A few such

[issue27544] Document the ABCs for instance/subclass checks of dict view types

2016-07-17 Thread Emanuel Barry
Changes by Emanuel Barry : -- title: documentiona of dict view types -> Document the ABCs for instance/subclass checks of dict view types ___ Python tracker