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: CGI module documentation references method 'toupper'; should be 'upper'
Type: behavior Stage: resolved
Components: Documentation Versions: Python 3.1, Python 3.2, Python 2.7, Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: r.david.murray Nosy List: georg.brandl, r.david.murray, troy
Priority: normal Keywords:

Created on 2009-08-11 17:56 by troy, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg91481 - (view) Author: Troy J. Farrell (troy) Date: 2009-08-11 17:56
The cgi module references a method 'toupper' on strings which should
really reference 'upper'.  The line is around 211 of cgi.txt, depending
on the version of the documentation.  Search for "`toupper`", (include
the backticks.)
msg91668 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2009-08-17 19:28
Fixed in r74492.  Thanks.
History
Date User Action Args
2022-04-11 14:56:51adminsetgithub: 50934
2009-08-17 19:28:11r.david.murraysetstatus: open -> closed

resolution: fixed

assignee: georg.brandl -> r.david.murray
stage: resolved
versions: + Python 3.1, Python 2.7
nosy: + r.david.murray
messages: + msg91668
priority: normal
type: enhancement -> behavior
2009-08-11 17:56:35troycreate