From dad532f7def9917707d9705fcd9201413e42ef75 Mon Sep 17 00:00:00 2001 From: Terry Reedy Date: Tue, 28 Dec 2010 19:30:19 +0000 Subject: [PATCH] Issue 10738: Fix webbrowser.Opera.raise_opts value. --- Lib/webbrowser.py | 6 +----- Misc/NEWS | 2 ++ 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/Lib/webbrowser.py b/Lib/webbrowser.py index 0e8815ad60..e369acb1df 100644 --- a/Lib/webbrowser.py +++ b/Lib/webbrowser.py @@ -286,12 +286,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 @@ -304,15 +302,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 8eec18e321..5f0ed827ce 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -20,6 +20,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. -- 2.40.0