/external/python/cpython3/Lib/ |
D | webbrowser.py | 71 def open(url, new=0, autoraise=True): argument 78 if browser.open(url, new, autoraise): 132 def open(self, url, new=0, autoraise=True): argument 156 def open(self, url, new=0, autoraise=True): argument 173 def open(self, url, new=0, autoraise=True): argument 204 def _invoke(self, args, remote, autoraise): argument 208 autoraise = int(autoraise) 209 opt = self.raise_opts[autoraise] 239 def open(self, url, new=0, autoraise=True): argument 256 success = self._invoke(args, True, autoraise) [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 | 79 self._test('open', kw=dict(autoraise=False), 104 self._test('open', kw=dict(autoraise=False), 129 self._test('open', kw=dict(autoraise=False), 154 self._test('open', kw=dict(autoraise=False), 179 self._test('open', kw=dict(autoraise=False),
|
/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/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 195 .. method:: controller.open(url, new=0, 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/cpython2/Doc/whatsnew/ |
D | 2.5.rst | 1645 module's :func:`open` function supports an additional feature, an *autoraise*
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.5.rst | 1646 module's :func:`open` function supports an additional feature, an *autoraise*
|