Home
last modified time | relevance | path

Searched refs:TransientResource (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython3/Lib/test/support/
D__init__.py1379 class TransientResource(object): class
1407 time_out = TransientResource(OSError, errno=errno.ETIMEDOUT)
1408 socket_peer_reset = TransientResource(OSError, errno=errno.ECONNRESET)
1409 ioerror_peer_reset = TransientResource(OSError, errno=errno.ECONNRESET)
/external/python/cpython2/Doc/library/
Dtest.rst443 .. class:: TransientResource(exc[, **kwargs])
/external/python/cpython2/Lib/test/support/
D__init__.py1118 class TransientResource(object): class
/external/python/cpython3/Doc/library/
Dtest.rst1195 .. class:: TransientResource(exc, **kwargs)
/external/python/cpython2/Doc/whatsnew/
D2.6.rst2488 Another context manager, :class:`TransientResource`, can surround calls
2494 with test_support.TransientResource(IOError,
/external/python/cpython3/Doc/whatsnew/
D2.6.rst2492 Another context manager, :class:`TransientResource`, can surround calls
2498 with test_support.TransientResource(IOError,
/external/python/cpython2/Misc/NEWS.d/
D2.6a1.rst4682 Added test.test_support.TransientResource which is a context manager to