Correct several positional-only differences in third-party stubs (#7352)

This commit is contained in:
Alex Waygood
2022-02-22 14:49:51 +00:00
committed by GitHub
parent 69abe56e18
commit 64af11c78f
6 changed files with 23 additions and 23 deletions
+15 -15
View File
@@ -92,15 +92,15 @@ class Column:
table_oid: Any
type_code: Any
def __init__(self, *args, **kwargs) -> None: ...
def __eq__(self, other): ...
def __ge__(self, other): ...
def __getitem__(self, index): ...
def __eq__(self, __other): ...
def __ge__(self, __other): ...
def __getitem__(self, __index): ...
def __getstate__(self): ...
def __gt__(self, other): ...
def __le__(self, other): ...
def __gt__(self, __other): ...
def __le__(self, __other): ...
def __len__(self): ...
def __lt__(self, other): ...
def __ne__(self, other): ...
def __lt__(self, __other): ...
def __ne__(self, __other): ...
def __setstate__(self, state): ...
class ConnectionInfo:
@@ -202,15 +202,15 @@ class Notify:
payload: Any
pid: Any
def __init__(self, *args, **kwargs) -> None: ...
def __eq__(self, other): ...
def __ge__(self, other): ...
def __getitem__(self, index): ...
def __gt__(self, other): ...
def __eq__(self, __other): ...
def __ge__(self, __other): ...
def __getitem__(self, __index): ...
def __gt__(self, __other): ...
def __hash__(self): ...
def __le__(self, other): ...
def __le__(self, __other): ...
def __len__(self): ...
def __lt__(self, other): ...
def __ne__(self, other): ...
def __lt__(self, __other): ...
def __ne__(self, __other): ...
class OperationalError(psycopg2.DatabaseError): ...
class ProgrammingError(psycopg2.DatabaseError): ...
@@ -265,7 +265,7 @@ class Xid:
prepared: Any
def __init__(self, *args, **kwargs) -> None: ...
def from_string(self, *args, **kwargs): ...
def __getitem__(self, index): ...
def __getitem__(self, __index): ...
def __len__(self): ...
_cursor = cursor