third-party stubs: Add several missing __del__ methods (#11054)

This commit is contained in:
Alex Waygood
2023-11-21 19:07:30 +00:00
committed by GitHub
parent aef6e229fe
commit a9fc14a811
3 changed files with 3 additions and 0 deletions
+1
View File
@@ -56,6 +56,7 @@ class SpooledIOBase(metaclass=abc.ABCMeta):
def __eq__(self, other): ...
def __ne__(self, other): ...
def __bool__(self): ...
def __del__(self) -> None: ...
__nonzero__: Incomplete
class SpooledBytesIO(SpooledIOBase):