remove unneeded Interator base class from sqlite3.Cursor (#12813)

This commit is contained in:
Stephen Morton
2024-10-15 11:25:21 -07:00
committed by GitHub
parent 1fb6ebf62b
commit 816b47c231

View File

@@ -397,7 +397,7 @@ class Connection:
self, type: type[BaseException] | None, value: BaseException | None, traceback: TracebackType | None, /
) -> Literal[False]: ...
class Cursor(Iterator[Any]):
class Cursor:
arraysize: int
@property
def connection(self) -> Connection: ...