mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-31 00:24:24 +08:00
Fix signature for slite3.fetchmany (#1444)
Also made pymssql.fetchmany simpler.
This commit is contained in:
committed by
Guido van Rossum
parent
ac87de50dd
commit
bc9b2f0d4d
2
third_party/2/pymssql.pyi
vendored
2
third_party/2/pymssql.pyi
vendored
@@ -26,7 +26,7 @@ class Cursor(object):
|
||||
def executemany(self, stmt: str,
|
||||
params: Optional[Sequence[Tuple[Scalar, ...]]]) -> None: ...
|
||||
def fetchall(self) -> List[Result]: ...
|
||||
def fetchmany(self, size: Optional[Union[int, None]]) -> List[Result]: ...
|
||||
def fetchmany(self, size: Optional[int]) -> List[Result]: ...
|
||||
def fetchone(self) -> Result: ...
|
||||
|
||||
def connect(server: Optional[str],
|
||||
|
||||
Reference in New Issue
Block a user