From: Terry Reedy Date: Tue, 28 Dec 2010 19:53:32 +0000 (+0000) Subject: Issue 10738: Fix webbrowser.Opera.raise_opts value. X-Git-Tag: v2.7.2rc1~430 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0df73674e5f2000dee01c130435c50500d599c60;p=python Issue 10738: Fix webbrowser.Opera.raise_opts value. --- diff --git a/Lib/webbrowser.py b/Lib/webbrowser.py index 8af14b9f74..41fd1758ac 100644 --- a/Lib/webbrowser.py +++ b/Lib/webbrowser.py @@ -285,12 +285,10 @@ class Mozilla(UnixBrowser): """Launcher class for Mozilla/Netscape browsers.""" raise_opts = ["-noraise", "-raise"] - remote_args = ['-remote', 'openURL(%s%action)'] remote_action = "" remote_action_newwin = ",new-window" remote_action_newtab = ",new-tab" - background = True Netscape = Mozilla @@ -303,15 +301,13 @@ class Galeon(UnixBrowser): remote_args = ['%action', '%s'] remote_action = "-n" remote_action_newwin = "-w" - background = True class Opera(UnixBrowser): "Launcher class for Opera browser." - raise_opts = ["", "-raise"] - + raise_opts = ["-noraise", ""] remote_args = ['-remote', 'openURL(%s%action)'] remote_action = "" remote_action_newwin = ",new-window" diff --git a/Misc/NEWS b/Misc/NEWS index 6ffb39a1dc..da3928ee6b 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -22,6 +22,8 @@ Core and Builtins Library ------- +- Issue 10738: Fix webbrowser.Opera.raise_opts + - Issue 9824: SimpleCookie now encodes , and ; in values to cater to how browsers actually parse cookies.