[Python-Dev] Re: [Python-checkins] python/dist/src/Lib types.py,1.26,1.27

Martin v. Loewis martin@v.loewis.de
24 May 2002 09:26:48 +0200


Kevin Jacobs <jacobs@penguin.theopalgroup.com> writes:

> http://www.python.org/doc/current/lib/module-types.html:
> 
>     3.6 types -- Names for ALL built-in types
> 
>     This module defines names for ALL object types that are used by the
>     standard Python interpreter, but not for the types defined by various
>     extension modules.
> 
> How much clearer does it need to be?

So I guess the documentation is wrong; it should read "This module
defines names for various object types that are used by the standard
interpreter".

That documentation is already incorrect, it does not list

CellType
CObjectType
MethodDescrType
MemberDescrType
GetSetDescrType
WrapperDescrType
method-wrapperType
DictIterType
EnumType
StaticMethodType
SeqIterType
CallIterType
ImmutableListType
NotImplementedType
SuperType

Regards,
Martin