Issue 1536828: Typo, types.TypeType should read types.StringType (original) (raw)

Issue1536828

Created on 2006-08-08 16:53 by reillyeon, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg29476 - (view) Author: Reillyeon (reillyeon) Date: 2006-08-08 16:53
In Docs/concrete.tex: \begin{cvardesc}{PyTypeObject}{PyString_Type} This instance of \ctype{PyTypeObject} represents the Python string type; it is the same object as \code{types.TypeType} in the Python layer. \withsubitem{(in module types)}{\ttindex{StringType}}. \end{cvardesc} On the third line types.TypeType should instead read types.StringType: \begin{cvardesc}{PyTypeObject}{PyString_Type} This instance of \ctype{PyTypeObject} represents the Python string type; it is the same object as \code{types.StringType} in the Python layer. \withsubitem{(in module types)}{\ttindex{StringType}}. \end{cvardesc}
msg29477 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2006-08-08 20:11
Logged In: YES user_id=849994 Thanks for the report, fixed in rev. 51151, 51152 (2.4).
History
Date User Action Args
2022-04-11 14:56:19 admin set github: 43796
2006-08-08 16:53:29 reillyeon create