In python\'s OptionParser, how can I instruct it to ignore
OptionParser
Python 2.7 (which didn't exist when this question was asked) now provides the argparse module. You may be able to use ArgumentParser.parse_known_args() to accomplish the goal of this question.