Home
last modified time | relevance | path

Searched refs:GeneratorContextManager (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Lib/
Dcontextlib.py9 class GeneratorContextManager(object): class
84 return GeneratorContextManager(func(*args, **kwds))
/external/python/cpython2/Lib/test/
Dtest_with.py10 from contextlib import GeneratorContextManager, contextmanager
14 class MockContextManager(GeneratorContextManager):
16 GeneratorContextManager.__init__(self, gen)
23 return GeneratorContextManager.__enter__(self)
28 return GeneratorContextManager.__exit__(self, type,