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 NE1
Recipients NE1
Date 2010-12-19.15:05:20
SpamBayes Score 7.289056e-05
Marked as misclassified No
Message-id <1292771123.61.0.59980527904.issue10738@psf.upfronthosting.co.za>
In-reply-to
Content
Tested with Python 2.7.1 / Linux 2.6.33.2 / Opera 10.63. Build 6450 for Linux

class Opera(UnixBrowser) shows:
raise_opts = ["", "-raise"]

"-raise" is not a valid command line option for Opera.

This causes all webbrowser open methods (that use autoraise=True by default) to not work correclty with Opera (webbrowser.open returns True, but Opera does not open, etc).

The raise options should probably be changed to:
raise_opts = ["-noraise", ""]

Opera - UNIX Command Line Options: http://www.opera.com/docs/switches/#unix
History
Date User Action Args
2010-12-19 15:05:23NE1setrecipients: + NE1
2010-12-19 15:05:23NE1setmessageid: <1292771123.61.0.59980527904.issue10738@psf.upfronthosting.co.za>
2010-12-19 15:05:20NE1linkissue10738 messages
2010-12-19 15:05:20NE1create