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 terry.reedy
Recipients NE1, georg.brandl, terry.reedy
Date 2010-12-24.21:21:30
SpamBayes Score 1.83492e-06
Marked as misclassified No
Message-id <1293225694.73.0.965575358692.issue10738@psf.upfronthosting.co.za>
In-reply-to
Content
According to the linked doc, Opera has '-noraise' but not '-raise' as a command line option (to not raise window when receiving remote commands).

It does have '"raise()"' (with quotes and parens, but not "noraise()") as a remote command following the '-remote' command line option to be sent to another Opera window. I suspect this as the reason for the apparently invalid 
raise_opts = ["", "-raise"]

From the usage of raise_opts in UnixBrowser._invoke, which concatenates one of the entries, if not "", to self.name, I am pretty sure the command line form is what is wanted and that the proposed
raise_opts = ["-noraise", ""]
is correct.

Attached patch also removes a few blank lines to make entries for different browsers consistent.

Georg, if you agree, I will commit the change and backport.
History
Date User Action Args
2010-12-24 21:21:34terry.reedysetrecipients: + terry.reedy, georg.brandl, NE1
2010-12-24 21:21:34terry.reedysetmessageid: <1293225694.73.0.965575358692.issue10738@psf.upfronthosting.co.za>
2010-12-24 21:21:31terry.reedylinkissue10738 messages
2010-12-24 21:21:31terry.reedycreate