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: Glossary listing bug
Type: Stage:
Components: Documentation Versions: Python 2.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: quiver, rhettinger
Priority: normal Keywords:

Created on 2005-05-14 06:11 by quiver, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
glossary.diff quiver, 2005-05-14 06:11
Messages (2)
msg25315 - (view) Author: George Yoshida (quiver) (Python committer) Date: 2005-05-14 06:11
On the glossary page[*], "duck-typing" is not recognized 
as an entry for glossary. Currently, the rendered html is:

  <DT>
  <DD>duck-typing Pythonic programming style ...</DD>

And this should look like:

  <DT><STRONG>duck-typing</STRONG>
  <DD>Pythonic programming style ...</DD>

Replacing '{' mark with '[' mark should fix this.

   \index{duck-typing}
  -\item{duck-typing}
  +\item[duck-typing]

[*] http://docs.python.org/tut/node18.html
msg25316 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2005-05-14 17:26
Logged In: YES 
user_id=80475

Fixed.
Thanks for the report.
History
Date User Action Args
2022-04-11 14:56:11adminsetgithub: 41983
2005-05-14 06:11:46quivercreate