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.

classification
Title: Typo, types.TypeType should read types.StringType
Type: Stage:
Components: Documentation Versions: Python 2.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: georg.brandl, reillyeon
Priority: normal Keywords:

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:19adminsetgithub: 43796
2006-08-08 16:53:29reillyeoncreate