Improve many __(a)exit__ annotations (#9696)

This commit is contained in:
Avasam
2023-02-25 16:50:30 -05:00
committed by GitHub
parent db821101b8
commit 52ec44fa58
45 changed files with 216 additions and 81 deletions

View File

@@ -29,7 +29,7 @@ class BaseCursor:
def __init__(self, connection) -> None: ...
def close(self) -> None: ...
def __enter__(self): ...
def __exit__(self, *exc_info) -> None: ...
def __exit__(self, *exc_info: object) -> None: ...
def nextset(self): ...
def setinputsizes(self, *args) -> None: ...
def setoutputsizes(self, *args) -> None: ...