Message 77033 - Python tracker

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.

Content
This is not a bug.  By default, options in optparse take an argument --
therefore, the -y is taken as the argument to the -p option.

Use e.g. add_option(..., action='store_true') to specify an option that
doesn't take an argument.