mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
stdlib: add many missing __del__ methods (#11042)
This commit is contained in:
@@ -17,3 +17,5 @@ class IsolatedAsyncioTestCase(TestCase):
|
||||
def addAsyncCleanup(self, __func: Callable[_P, Awaitable[object]], *args: _P.args, **kwargs: _P.kwargs) -> None: ...
|
||||
if sys.version_info >= (3, 11):
|
||||
async def enterAsyncContext(self, cm: AbstractAsyncContextManager[_T]) -> _T: ...
|
||||
if sys.version_info >= (3, 9):
|
||||
def __del__(self) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user