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: Wrong parameter -O0 instead of -OO in manpage
Type: behavior Stage: resolved
Components: Documentation Versions: Python 3.1, Python 3.2, Python 3.3, Python 3.4, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, lm, python-dev, r.david.murray
Priority: normal Keywords: patch

Created on 2011-05-01 13:51 by lm, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
fix-OO-param.patch lm, 2011-05-01 13:51
Messages (3)
msg134909 - (view) Author: Lars Michelsen (lm) Date: 2011-05-01 13:51
Hello Devs,

digging around in the python manpage and playing with the parameters I found a wrong parameter specification in the python manpage. The -OO parameter for discarding docstrings is written as -O0 (the 2nd is a zero).

A patch is attached.

Regards
msg134914 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2011-05-01 15:15
New changeset d70b0137902b by R David Murray in branch '2.7':
#11971: fix man page; it's -OO not -O0
http://hg.python.org/cpython/rev/d70b0137902b

New changeset c57fdce01eb8 by R David Murray in branch '3.1':
#11971: fix man page; it's -OO not -O0
http://hg.python.org/cpython/rev/c57fdce01eb8

New changeset bbc6129f7861 by R David Murray in branch '3.2':
Merge #11971: fix man page; it's -OO not -O0
http://hg.python.org/cpython/rev/bbc6129f7861

New changeset e2f71bc9b0db by R David Murray in branch 'default':
Merge #11971: fix man page; it's -OO not -O0
http://hg.python.org/cpython/rev/e2f71bc9b0db
msg134915 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2011-05-01 15:16
Thanks for catching that, and for the patch.
History
Date User Action Args
2022-04-11 14:57:16adminsetgithub: 56180
2011-05-01 15:16:23r.david.murraysetstatus: open -> closed

type: behavior

nosy: + r.david.murray
messages: + msg134915
resolution: fixed
stage: resolved
2011-05-01 15:15:25python-devsetnosy: + python-dev
messages: + msg134914
2011-05-01 13:51:35lmcreate