We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08ae9f3 commit 125f9b4Copy full SHA for 125f9b4
stdlib/sqlite3/dbapi2.pyi
@@ -460,3 +460,5 @@ if sys.version_info >= (3, 11):
460
def __len__(self) -> int: ...
461
def __enter__(self: Self) -> Self: ...
462
def __exit__(self, __typ: object, __val: object, __tb: object) -> Literal[False]: ...
463
+ def __getitem__(self, __item: SupportsIndex | slice) -> bytes: ...
464
+ def __setitem__(self, __item: SupportsIndex | slice, __value: ReadableBuffer) -> None: ...
0 commit comments