mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-10 05:51:52 +08:00
Move webbrowser.pyi to 2and3 folder
This commit is contained in:
98
stdlib/2and3/webbrowser.pyi
Normal file
98
stdlib/2and3/webbrowser.pyi
Normal file
@@ -0,0 +1,98 @@
|
||||
# Stubs for webbrowser (Python 3.4)
|
||||
#
|
||||
# NOTE: This dynamically typed stub was automatically generated by stubgen.
|
||||
|
||||
from typing import Any, Optional, Callable, List
|
||||
|
||||
class Error(Exception): ...
|
||||
|
||||
def register(name: str, klass: Optional[Callable[[], BaseBrowser]], instance: BaseBrowser=..., update_tryorder: int=...) -> None: ...
|
||||
def get(using: str=...) -> BaseBrowser: ...
|
||||
def open(url: str, new: int=..., autoraise: bool=...) -> bool: ...
|
||||
def open_new(url: str) -> bool: ...
|
||||
def open_new_tab(url: str) -> bool: ...
|
||||
|
||||
class BaseBrowser:
|
||||
args = ... # type: List[str]
|
||||
name = ... # type: str
|
||||
basename = ... # type: str
|
||||
def __init__(self, name: str=...) -> None: ...
|
||||
def open(self, url: str, new: int=..., autoraise: bool=...) -> bool: ...
|
||||
def open_new(self, url: str) -> bool: ...
|
||||
def open_new_tab(self, url: str) -> bool: ...
|
||||
|
||||
class GenericBrowser(BaseBrowser):
|
||||
name = ... # type: List[str]
|
||||
args = ... # type: str
|
||||
basename = ... # type: str
|
||||
def __init__(self, name: str) -> None: ...
|
||||
def open(self, url: str, new: int=..., autoraise: bool=...) -> bool: ...
|
||||
|
||||
class BackgroundBrowser(GenericBrowser):
|
||||
def open(self, url: str, new: int=..., autoraise: bool=...) -> bool: ...
|
||||
|
||||
class UnixBrowser(BaseBrowser):
|
||||
raise_opts = ... # type: List[str]
|
||||
background = ... # type: bool
|
||||
redirect_stdout = ... # type: bool
|
||||
remote_args = ... # type: List[str]
|
||||
remote_action = ... # type: str
|
||||
remote_action_newwin = ... # type: str
|
||||
remote_action_newtab = ... # type: str
|
||||
def open(self, url: str, new: int=..., autoraise: bool=...) -> bool: ...
|
||||
|
||||
class Mozilla(UnixBrowser):
|
||||
raise_opts = ... # type: List[str]
|
||||
remote_args = ... # type: List[str]
|
||||
remote_action = ... # type: str
|
||||
remote_action_newwin = ... # type: str
|
||||
remote_action_newtab = ... # type: str
|
||||
background = ... # type: bool
|
||||
|
||||
class Galeon(UnixBrowser):
|
||||
raise_opts = ... # type: List[str]
|
||||
remote_args = ... # type: List[str]
|
||||
remote_action = ... # type: str
|
||||
remote_action_newwin = ... # type: str
|
||||
background = ... # type: bool
|
||||
|
||||
class Chrome(UnixBrowser):
|
||||
remote_args = ... # type: List[str]
|
||||
remote_action = ... # type: str
|
||||
remote_action_newwin = ... # type: str
|
||||
remote_action_newtab = ... # type: str
|
||||
background = ... # type: bool
|
||||
|
||||
class Opera(UnixBrowser):
|
||||
raise_opts = ... # type: List[str]
|
||||
remote_args = ... # type: List[str]
|
||||
remote_action = ... # type: str
|
||||
remote_action_newwin = ... # type: str
|
||||
remote_action_newtab = ... # type: str
|
||||
background = ... # type: bool
|
||||
|
||||
class Elinks(UnixBrowser):
|
||||
remote_args = ... # type: List[str]
|
||||
remote_action = ... # type: str
|
||||
remote_action_newwin = ... # type: str
|
||||
remote_action_newtab = ... # type: str
|
||||
background = ... # type: bool
|
||||
redirect_stdout = ... # type: bool
|
||||
|
||||
class Konqueror(BaseBrowser):
|
||||
def open(self, url: str, new: int=..., autoraise: bool=...) -> bool: ...
|
||||
|
||||
class Grail(BaseBrowser):
|
||||
def open(self, url: str, new: int=..., autoraise: bool=...) -> bool: ...
|
||||
|
||||
class WindowsDefault(BaseBrowser):
|
||||
def open(self, url: str, new: int=..., autoraise: bool=...) -> bool: ...
|
||||
|
||||
class MacOSX(BaseBrowser):
|
||||
name = ... # type: str
|
||||
def __init__(self, name: str) -> None: ...
|
||||
def open(self, url: str, new: int=..., autoraise: bool=...) -> bool: ...
|
||||
|
||||
class MacOSXOSAScript(BaseBrowser):
|
||||
def __init__(self, name: str) -> None: ...
|
||||
def open(self, url: str, new: int=..., autoraise: bool=...) -> bool: ...
|
||||
Reference in New Issue
Block a user