HomeSort by relevance Sort by last modified time
    Searched refs:ResourceDenied (Results 1 - 25 of 25) sorted by null

  /external/python/cpython2/Lib/lib-tk/test/
runtktests.py 50 except test.test_support.ResourceDenied:
  /external/python/cpython3/Lib/tkinter/test/
runtktests.py 49 except test.support.ResourceDenied:
  /external/python/cpython2/Lib/ctypes/test/
__init__.py 13 class ResourceDenied(unittest.SkipTest):
34 """Raise ResourceDenied if the specified resource is not available.
44 raise ResourceDenied(msg)
73 except (ResourceDenied, unittest.SkipTest) as detail:
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
__init__.py 5 class ResourceDenied(Exception):
26 """Raise ResourceDenied if the specified resource is not available.
36 raise ResourceDenied(msg)
65 except (ResourceDenied, unittest.SkipTest) as detail:
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
__init__.py 5 class ResourceDenied(Exception):
26 """Raise ResourceDenied if the specified resource is not available.
36 raise ResourceDenied(msg)
65 except (ResourceDenied, unittest.SkipTest) as detail:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
__init__.py 5 class ResourceDenied(Exception):
26 """Raise ResourceDenied if the specified resource is not available.
36 raise ResourceDenied(msg)
65 except (ResourceDenied, unittest.SkipTest) as detail:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
__init__.py 5 class ResourceDenied(Exception):
26 """Raise ResourceDenied if the specified resource is not available.
36 raise ResourceDenied(msg)
65 except (ResourceDenied, unittest.SkipTest) as detail:
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/test/
runtktests.py 93 except test.test_support.ResourceDenied:
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/test/
runtktests.py 93 except test.test_support.ResourceDenied:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/
runtktests.py 93 except test.test_support.ResourceDenied:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/
runtktests.py 93 except test.test_support.ResourceDenied:
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_support.py 26 __all__ = ["Error", "TestFailed", "ResourceDenied", "import_module",
48 class ResourceDenied(unittest.SkipTest):
213 """Raise ResourceDenied if the specified resource is not available.
224 raise ResourceDenied(msg)
730 """Raise ResourceDenied if an exception is raised while the context manager
742 self.attrs, raise ResourceDenied. Otherwise let the exception
751 raise ResourceDenied("an optional resource is not available")
756 """Return a context manager that raises ResourceDenied when various issues
770 denied = ResourceDenied("Resource '%s' is not available" % resource_name)
    [all...]
regrtest.py     [all...]
  /external/python/cpython3/Lib/test/libregrtest/
runtest.py 169 except support.ResourceDenied as msg:
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_support.py 29 __all__ = ["Error", "TestFailed", "ResourceDenied", "import_module",
51 class ResourceDenied(unittest.SkipTest):
280 """Raise ResourceDenied if the specified resource is not available.
291 raise ResourceDenied(msg)
806 """Raise ResourceDenied if an exception is raised while the context manager
818 self.attrs, raise ResourceDenied. Otherwise let the exception
827 raise ResourceDenied("an optional resource is not available")
832 """Return a context manager that raises ResourceDenied when various issues
851 denied = ResourceDenied("Resource '%s' is not available" % resource_name)
    [all...]
regrtest.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_support.py 29 __all__ = ["Error", "TestFailed", "ResourceDenied", "import_module",
51 class ResourceDenied(unittest.SkipTest):
280 """Raise ResourceDenied if the specified resource is not available.
291 raise ResourceDenied(msg)
806 """Raise ResourceDenied if an exception is raised while the context manager
818 self.attrs, raise ResourceDenied. Otherwise let the exception
827 raise ResourceDenied("an optional resource is not available")
832 """Return a context manager that raises ResourceDenied when various issues
851 denied = ResourceDenied("Resource '%s' is not available" % resource_name)
    [all...]
regrtest.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_support.py 29 __all__ = ["Error", "TestFailed", "ResourceDenied", "import_module",
51 class ResourceDenied(unittest.SkipTest):
280 """Raise ResourceDenied if the specified resource is not available.
291 raise ResourceDenied(msg)
806 """Raise ResourceDenied if an exception is raised while the context manager
818 self.attrs, raise ResourceDenied. Otherwise let the exception
827 raise ResourceDenied("an optional resource is not available")
832 """Return a context manager that raises ResourceDenied when various issues
851 denied = ResourceDenied("Resource '%s' is not available" % resource_name)
    [all...]
regrtest.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_support.py 29 __all__ = ["Error", "TestFailed", "ResourceDenied", "import_module",
51 class ResourceDenied(unittest.SkipTest):
280 """Raise ResourceDenied if the specified resource is not available.
291 raise ResourceDenied(msg)
806 """Raise ResourceDenied if an exception is raised while the context manager
818 self.attrs, raise ResourceDenied. Otherwise let the exception
827 raise ResourceDenied("an optional resource is not available")
832 """Return a context manager that raises ResourceDenied when various issues
851 denied = ResourceDenied("Resource '%s' is not available" % resource_name)
    [all...]
regrtest.py     [all...]
  /external/python/cpython2/Lib/test/
test_support.py 29 __all__ = ["Error", "TestFailed", "ResourceDenied", "import_module",
52 class ResourceDenied(unittest.SkipTest):
390 """Raise ResourceDenied if the specified resource is not available."""
394 raise ResourceDenied(msg)
396 raise ResourceDenied(_is_gui_available.reason)
    [all...]
regrtest.py     [all...]
  /external/python/cpython3/Lib/test/support/
__init__.py 73 "Error", "TestFailed", "ResourceDenied",
119 class ResourceDenied(unittest.SkipTest):
526 """Raise ResourceDenied if the specified resource is not available."""
530 raise ResourceDenied(msg)
532 raise ResourceDenied(_is_gui_available.reason)
    [all...]

Completed in 654 milliseconds