/external/python/cpython3/Lib/ |
D | webbrowser.py | 71 def open(url, new=0, autoraise=True): argument 86 if browser.open(url, new, autoraise): 148 def open(self, url, new=0, autoraise=True): argument 172 def open(self, url, new=0, autoraise=True): argument 190 def open(self, url, new=0, autoraise=True): argument 222 def _invoke(self, args, remote, autoraise, url=None): argument 226 autoraise = int(autoraise) 227 opt = self.raise_opts[autoraise] 257 def open(self, url, new=0, autoraise=True): argument 275 success = self._invoke(args, True, autoraise, url) [all …]
|
/external/python/cpython2/Lib/ |
D | webbrowser.py | 58 def open(url, new=0, autoraise=True): argument 61 if browser.open(url, new, autoraise): 147 def open(self, url, new=0, autoraise=True): argument 171 def open(self, url, new=0, autoraise=True): argument 188 def open(self, url, new=0, autoraise=True): argument 215 def _invoke(self, args, remote, autoraise): argument 219 autoraise = int(autoraise) 220 opt = self.raise_opts[autoraise] 259 def open(self, url, new=0, autoraise=True): argument 275 success = self._invoke(args, True, autoraise) [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_webbrowser.py | 81 self._test('open', kw=dict(autoraise=False), 106 self._test('open', kw=dict(autoraise=False), 131 self._test('open', kw=dict(autoraise=False), 156 self._test('open', kw=dict(autoraise=False), 181 self._test('open', kw=dict(autoraise=False),
|
/external/python/cpython3/Doc/library/ |
D | webbrowser.rst | 54 .. function:: open(url, new=0, autoraise=True) 59 if possible. If *autoraise* is ``True``, the window is raised if possible 197 .. method:: controller.open(url, new=0, autoraise=True)
|
/external/python/cpython2/Doc/library/ |
D | webbrowser.rst | 53 .. function:: open(url, new=0, autoraise=True) 58 if possible. If *autoraise* is ``True``, the window is raised if possible 194 .. method:: controller.open(url, new=0, autoraise=True)
|
/external/autotest/utils/frozen_chromite/third_party/oauth2client/ |
D | tools.py | 199 webbrowser.open(authorize_url, new=1, autoraise=True)
|
/external/python/oauth2client/oauth2client/ |
D | tools.py | 223 webbrowser.open(authorize_url, new=1, autoraise=True)
|
/external/python/oauth2client/tests/ |
D | test_tools.py | 139 'http://example.com/auth', autoraise=True, new=1)
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.5.rst | 1646 module's :func:`open` function supports an additional feature, an *autoraise*
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.5.rst | 1645 module's :func:`open` function supports an additional feature, an *autoraise*
|