fix self for thirdparty (#646)

This commit is contained in:
Elazar Gershuni
2016-10-31 00:02:23 +02:00
committed by Guido van Rossum
parent 090667c7b2
commit 58d60343ba
2 changed files with 7 additions and 7 deletions

View File

@@ -18,7 +18,7 @@ class Cursor(object):
def __init__(self) -> None: ...
def __iter__(self): ...
def __next__(self) -> Any: ...
def callproc(procname: str, **kwargs) -> None: ...
def callproc(self, procname: str, **kwargs) -> None: ...
def close(self) -> None: ...
def execute(self, stmt: str,
params: Optional[Union[Scalar, Tuple[Scalar, ...],