[issue11971] Wrong parameter -O0 instead of -OO in manpage

2011-05-01 Thread R. David Murray
R. David Murray added the comment: Thanks for catching that, and for the patch. -- nosy: +r.david.murray resolution: -> fixed stage: -> committed/rejected status: open -> closed type: -> behavior ___ Python tracker

[issue11971] Wrong parameter -O0 instead of -OO in manpage

2011-05-01 Thread Roundup Robot
Roundup Robot added the comment: 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.pyth

[issue11971] Wrong parameter -O0 instead of -OO in manpage

2011-05-01 Thread Lars Michelsen
New submission from Lars Michelsen : 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