38
38
_Connection = typing .TypeVar ('_Connection' , bound = 'Connection' )
39
39
_Writer = typing .Callable [[bytes ],
40
40
typing .Coroutine [typing .Any , typing .Any , None ]]
41
+ _Record = typing .TypeVar ('_Record' , bound = '_cprotocol.Record' )
41
42
_RecordsType = typing .List ['_cprotocol.Record' ]
42
43
_RecordsExtraType = typing .Tuple [_RecordsType , bytes , bool ]
43
44
_AnyCallable = typing .Callable [..., typing .Any ]
@@ -447,7 +448,8 @@ async def _introspect_types(self, typeoids: typing.Set[int],
447
448
448
449
def cursor (self , query : str , * args : typing .Any ,
449
450
prefetch : typing .Optional [int ] = None ,
450
- timeout : typing .Optional [float ] = None ) -> cursor .CursorFactory :
451
+ timeout : typing .Optional [float ] = None ) \
452
+ -> 'cursor.CursorFactory[_cprotocol.Record]' :
451
453
"""Return a *cursor factory* for the specified query.
452
454
453
455
:param args: Query arguments.
@@ -463,7 +465,7 @@ def cursor(self, query: str, *args: typing.Any,
463
465
464
466
async def prepare (self , query : str , * ,
465
467
timeout : typing .Optional [float ] = None ) \
466
- -> prepared_stmt .PreparedStatement :
468
+ -> prepared_stmt .PreparedStatement [ '_cprotocol.Record' ] :
467
469
"""Create a *prepared statement* for the specified query.
468
470
469
471
:param str query: Text of the query to create a prepared statement for.
@@ -476,7 +478,7 @@ async def prepare(self, query: str, *,
476
478
async def _prepare (self , query : str , * ,
477
479
timeout : typing .Optional [float ] = None ,
478
480
use_cache : bool = False ) \
479
- -> prepared_stmt .PreparedStatement :
481
+ -> prepared_stmt .PreparedStatement [ '_cprotocol.Record' ] :
480
482
self ._check_open ()
481
483
stmt = await self ._get_statement (query , timeout , named = True ,
482
484
use_cache = use_cache )
@@ -886,7 +888,7 @@ async def _copy_out(self, copy_stmt: str,
886
888
output : OutputType [typing .AnyStr ],
887
889
timeout : typing .Optional [float ]) -> str :
888
890
try :
889
- path = compat .fspath (output ) # type: typing.Optional[typing.AnyStr] # type: ignore # noqa: E501
891
+ path = compat .fspath (output ) # type: typing.Optional[typing.AnyStr] # type: ignore[arg-type] # noqa: E501
890
892
except TypeError :
891
893
# output is not a path-like object
892
894
path = None
@@ -913,7 +915,7 @@ async def _copy_out(self, copy_stmt: str,
913
915
)
914
916
915
917
if writer is None :
916
- async def _writer (data : bytes ) -> None : # type: ignore
918
+ async def _writer (data : bytes ) -> None : # type: ignore[return]
917
919
await run_in_executor (None , f .write , data )
918
920
919
921
writer = _writer
@@ -928,7 +930,7 @@ async def _copy_in(self, copy_stmt: str,
928
930
source : SourceType [typing .AnyStr ],
929
931
timeout : typing .Optional [float ]) -> str :
930
932
try :
931
- path = compat .fspath (source ) # type: typing.Optional[typing.AnyStr] # type: ignore # noqa: E501
933
+ path = compat .fspath (source ) # type: typing.Optional[typing.AnyStr] # type: ignore[arg-type] # noqa: E501
932
934
except TypeError :
933
935
# source is not a path-like object
934
936
path = None
@@ -967,7 +969,7 @@ async def __anext__(self) -> bytes:
967
969
if len (data ) == 0 :
968
970
raise StopAsyncIteration
969
971
else :
970
- return data # type: ignore
972
+ return data # type: ignore[return-value]
971
973
972
974
reader = _Reader ()
973
975
@@ -1259,7 +1261,7 @@ def _abort(self) -> None:
1259
1261
# Put the connection into the aborted state.
1260
1262
self ._aborted = True
1261
1263
self ._protocol .abort ()
1262
- self ._protocol = None # type: ignore
1264
+ self ._protocol = None # type: ignore[assignment]
1263
1265
1264
1266
def _cleanup (self ) -> None :
1265
1267
# Free the resources associated with this connection.
@@ -1352,7 +1354,7 @@ async def _cancel(self, waiter: 'asyncio.Future[None]') -> None:
1352
1354
waiter .set_exception (ex )
1353
1355
finally :
1354
1356
self ._cancellations .discard (
1355
- compat .current_asyncio_task (self ._loop ))
1357
+ compat .current_asyncio_task (self ._loop )) # type: ignore[arg-type] # noqa: E501
1356
1358
if not waiter .done ():
1357
1359
waiter .set_result (None )
1358
1360
@@ -1747,7 +1749,7 @@ async def connect(dsn: typing.Optional[str] = None, *,
1747
1749
max_cacheable_statement_size : int = 1024 * 15 ,
1748
1750
command_timeout : typing .Optional [float ] = None ,
1749
1751
ssl : typing .Optional [connect_utils .SSLType ] = None ,
1750
- connection_class : typing .Type [_Connection ] = Connection , # type: ignore # noqa: E501
1752
+ connection_class : typing .Type [_Connection ] = Connection , # type: ignore[assignment] # noqa: E501
1751
1753
server_settings : typing .Optional [
1752
1754
typing .Dict [str , str ]] = None ) -> _Connection :
1753
1755
r"""A coroutine to establish a connection to a PostgreSQL server.
@@ -2180,15 +2182,15 @@ def _extract_stack(limit: int = 10) -> str:
2180
2182
frame = sys ._getframe ().f_back
2181
2183
try :
2182
2184
stack = traceback .StackSummary .extract (
2183
- traceback .walk_stack (frame ), lookup_lines = False ) # type: typing.Union[traceback.StackSummary, typing.List[traceback.FrameSummary] ] # noqa: E501
2185
+ traceback .walk_stack (frame ), lookup_lines = False ) # type: ignore[arg-type ] # noqa: E501
2184
2186
finally :
2185
2187
del frame
2186
2188
2187
- apg_path = asyncpg .__path__ [0 ]
2189
+ apg_path = asyncpg .__path__ [0 ] # type: ignore[attr-defined]
2188
2190
i = 0
2189
2191
while i < len (stack ) and stack [i ][0 ].startswith (apg_path ):
2190
2192
i += 1
2191
- stack = stack [i :i + limit ]
2193
+ stack = stack [i :i + limit ] # type: ignore[assignment]
2192
2194
2193
2195
stack .reverse ()
2194
2196
return '' .join (traceback .format_list (stack ))
0 commit comments