Searched refs:ContextManager (Results 1 – 12 of 12) sorted by relevance
/third_party/python/Lib/test/ |
D | test_raise.py | 381 class ContextManager: class 387 with ContextManager():
|
D | test_typing.py | 1599 class CustomContextManager(typing.ContextManager, Protocol): 3846 self.assertIsInstance(cm, typing.ContextManager) 3847 self.assertNotIsInstance(42, typing.ContextManager) 4842 typing.ContextManager: 'ContextManager', 4881 typing.ContextManager[Any]: 'ContextManager',
|
/third_party/python/Lib/importlib/ |
D | resources.py | 13 from typing import ContextManager, Iterable, Union
|
/third_party/python/Misc/NEWS.d/ |
D | 3.6.0a2.rst | 268 @overload outside stubs, Reversible, DefaultDict, Text, ContextManager,
|
D | 3.6.2rc1.rst | 273 ContextManager on all versions. Original PRs by Jelle Zijlstra and Ivan
|
D | 3.5.4rc1.rst | 391 ContextManager on all versions. Original PRs by Jelle Zijlstra and Ivan
|
D | 3.5.2rc1.rst | 423 @overload outside stubs, Reversible, DefaultDict, Text, ContextManager,
|
D | 3.6.0a1.rst | 1303 Introduce contextlib.AbstractContextManager and typing.ContextManager.
|
D | 3.7.0a1.rst | 2450 ContextManager on all versions. Original PRs by Jelle Zijlstra and Ivan
|
/third_party/python/Lib/ |
D | typing.py | 2120 ContextManager = _alias(contextlib.AbstractContextManager, 1, name='ContextManager') variable
|
/third_party/python/Doc/whatsnew/ |
D | 3.6.rst | 966 :class:`typing.ContextManager`. 1610 The :class:`typing.ContextManager` class has been added for
|
/third_party/python/Doc/library/ |
D | typing.rst | 1864 .. class:: ContextManager(Generic[T_co])
|