mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
Stdlib: add container default values (#9909)
This commit is contained in:
@@ -377,7 +377,7 @@ class Cursor(Iterator[Any]):
|
||||
def rowcount(self) -> int: ...
|
||||
def __init__(self, __cursor: Connection) -> None: ...
|
||||
def close(self) -> None: ...
|
||||
def execute(self, __sql: str, __parameters: _Parameters = ...) -> Self: ...
|
||||
def execute(self, __sql: str, __parameters: _Parameters = ()) -> Self: ...
|
||||
def executemany(self, __sql: str, __seq_of_parameters: Iterable[_Parameters]) -> Self: ...
|
||||
def executescript(self, __sql_script: str) -> Cursor: ...
|
||||
def fetchall(self) -> list[Any]: ...
|
||||
|
||||
Reference in New Issue
Block a user