[issue6892] optparser example in optparse documentation is broken

2009-09-16 Thread Georg Brandl
Georg Brandl added the comment: Fixed (by adding the add_help_option=False argument to OptionParser) in r74824. -- resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue6892] optparser example in optparse documentation is broken

2009-09-11 Thread Mitchell Model
Mitchell Model added the comment: There are other places on the same page with weird trailing commas that should be removed. I think they all follow right parentheses. -- ___ Python tracker

[issue6892] optparser example in optparse documentation is broken

2009-09-11 Thread Mitchell Model
New submission from Mitchell Model : The help example in the middle of the optparse library documentation is broken. The code reads: parser = OptionParser() parser.add_option("-h", "--help", action="help"), parser.add_option("-v", action="store_true", dest="verbose", help="Be m