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: a typo in pydoc.py causes modules to be cyan instead of white
Type: behavior Stage:
Components: Demos and Tools Versions: Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: elliotth, georg.brandl
Priority: normal Keywords:

Created on 2008-02-17 19:30 by elliotth, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
no-cyan-modules.diff.txt elliotth, 2008-02-17 19:30 diff -u against svn trunk
Messages (2)
msg62501 - (view) Author: Elliott Hughes (elliotth) Date: 2008-02-17 19:30
A typo ('#fffff' instead of '#ffffff') in pydoc.py causes the "Modules"
section to have cyan text instead of white text. I don't believe this is
deliberate because (a) it looks wrong and (b) anyone doing that
deliberately would have put a '0' in the color to make it look
deliberate. This patch doesn't address the large-scale duplication of
'#ffffff' (instead of using a constant, or even the named color
'white'), and just adds the single missing character.
msg62505 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2008-02-17 21:19
Fixed in r60883. Thanks!
History
Date User Action Args
2022-04-11 14:56:30adminsetgithub: 46386
2008-02-17 21:19:11georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg62505
nosy: + georg.brandl
2008-02-17 19:30:37elliotthcreate