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.

Author gruszczy
Recipients eric.araujo, gruszczy, richlowe
Date 2011-03-01.22:08:38
SpamBayes Score 1.6835268e-06
Marked as misclassified No
Message-id <1299017327.91.0.0527051686438.issue8841@psf.upfronthosting.co.za>
In-reply-to
Content
I'd be happy to provide a patch.

How about extending getopt api to something like this:

>> optlist, args = getopt.getopt(['-b'], 'e', not_recognized="no %s option, mate!")
GetoptError: no -b option, mate!

Or maybe you should provide a dictionary?

>> optlist, args = getopt.getopt(['-b'], 'e', errors={'not_recognized': "no %s option, mate!")
GetoptError: no -b option, mate!

I have little experience with making design decisions, so if someone could guide me here, I will get down and provide a patch with proposed solution.
History
Date User Action Args
2011-03-01 22:08:47gruszczysetrecipients: + gruszczy, eric.araujo, richlowe
2011-03-01 22:08:47gruszczysetmessageid: <1299017327.91.0.0527051686438.issue8841@psf.upfronthosting.co.za>
2011-03-01 22:08:38gruszczylinkissue8841 messages
2011-03-01 22:08:38gruszczycreate