[issue1014230] optparse: parser.remove_option("-h") inconsistency

2008-01-31 Thread Amaury Forgeot d'Arc
Changes by Amaury Forgeot d'Arc: -- resolution: -> out of date status: open -> closed _ Tracker <[EMAIL PROTECTED]> _ ___ Python-bug

[issue1014230] optparse: parser.remove_option("-h") inconsistency

2008-01-30 Thread Ralf Schmitt
Ralf Schmitt added the comment: this test program work with python 2.4 and 2.5: import optparse p1=optparse.OptionParser() p2=optparse.OptionParser() p1.remove_option('-h') p2.remove_option('-h') This issue should be closed. -- nosy: +schmir _ Track