Issue 10738: Fix webbrowser.Opera.raise_opts value.

This commit is contained in:
Terry Reedy 2010-12-28 19:30:19 +00:00
parent e05ca2aff4
commit dad532f7de
2 changed files with 3 additions and 5 deletions

View File

@ -286,12 +286,10 @@ class Mozilla(UnixBrowser):
"""Launcher class for Mozilla/Netscape browsers.""" """Launcher class for Mozilla/Netscape browsers."""
raise_opts = ["-noraise", "-raise"] raise_opts = ["-noraise", "-raise"]
remote_args = ['-remote', 'openURL(%s%action)'] remote_args = ['-remote', 'openURL(%s%action)']
remote_action = "" remote_action = ""
remote_action_newwin = ",new-window" remote_action_newwin = ",new-window"
remote_action_newtab = ",new-tab" remote_action_newtab = ",new-tab"
background = True background = True
Netscape = Mozilla Netscape = Mozilla
@ -304,15 +302,13 @@ class Galeon(UnixBrowser):
remote_args = ['%action', '%s'] remote_args = ['%action', '%s']
remote_action = "-n" remote_action = "-n"
remote_action_newwin = "-w" remote_action_newwin = "-w"
background = True background = True
class Opera(UnixBrowser): class Opera(UnixBrowser):
"Launcher class for Opera browser." "Launcher class for Opera browser."
raise_opts = ["", "-raise"] raise_opts = ["-noraise", ""]
remote_args = ['-remote', 'openURL(%s%action)'] remote_args = ['-remote', 'openURL(%s%action)']
remote_action = "" remote_action = ""
remote_action_newwin = ",new-window" remote_action_newwin = ",new-window"

View File

@ -20,6 +20,8 @@ Core and Builtins
Library Library
------- -------
- Issue 10738: Fix webbrowser.Opera.raise_opts
- Issue 9824: SimpleCookie now encodes , and ; in values to cater to how - Issue 9824: SimpleCookie now encodes , and ; in values to cater to how
browsers actually parse cookies. browsers actually parse cookies.