6
6
7
7
8
8
import asyncio
9
- import typing_extensions
10
9
import asyncpg
11
10
import collections
12
11
import collections .abc
33
32
from . import types
34
33
from . import utils
35
34
35
+ # Work around https://github.com/microsoft/pyright/issues/3012
36
+ if sys .version_info >= (3 , 8 ):
37
+ from typing import Literal
38
+ else :
39
+ from typing_extensions import Literal
40
+
36
41
if typing .TYPE_CHECKING :
37
42
import io
38
43
from .protocol import protocol as _cprotocol
39
44
from . import pool_connection_proxy as _pool
40
45
41
-
42
46
_ConnectionT = typing .TypeVar ('_ConnectionT' , bound = 'Connection[typing.Any]' )
43
47
_RecordT = typing .TypeVar ('_RecordT' , bound = protocol .Record )
44
48
_OtherRecordT = typing .TypeVar ('_OtherRecordT' , bound = protocol .Record )
45
49
46
- _Writer : typing_extensions . TypeAlias = typing .Callable [
50
+ _Writer = typing .Callable [
47
51
[bytes ],
48
52
typing .Coroutine [typing .Any , typing .Any , None ]
49
53
]
50
- _RecordsType : typing_extensions . TypeAlias = typing .List [_RecordT ]
51
- _RecordsExtraType : typing_extensions . TypeAlias = typing .Tuple [
54
+ _RecordsType = typing .List [_RecordT ]
55
+ _RecordsExtraType = typing .Tuple [
52
56
_RecordsType [_RecordT ],
53
57
bytes ,
54
58
bool
55
59
]
56
60
57
- OutputType : typing_extensions . TypeAlias = typing .Union [
61
+ OutputType = typing .Union [
58
62
'os.PathLike[typing.Any]' ,
59
63
typing .BinaryIO ,
60
64
_Writer
61
65
]
62
- SourceType : typing_extensions . TypeAlias = typing .Union [
66
+ SourceType = typing .Union [
63
67
'os.PathLike[typing.Any]' ,
64
68
typing .BinaryIO ,
65
69
typing .AsyncIterable [bytes ]
66
70
]
67
71
68
- CopyFormat = compat . Literal ['text' , 'csv' , 'binary' ]
69
- PasswordType : typing_extensions . TypeAlias = typing .Union [
72
+ CopyFormat = Literal ['text' , 'csv' , 'binary' ]
73
+ PasswordType = typing .Union [
70
74
str ,
71
75
typing .Callable [[], str ],
72
76
typing .Callable [[], typing .Awaitable [str ]]
@@ -2133,7 +2137,7 @@ async def _execute(
2133
2137
limit : int ,
2134
2138
timeout : typing .Optional [float ],
2135
2139
* ,
2136
- return_status : compat . Literal [False ] = ...,
2140
+ return_status : Literal [False ] = ...,
2137
2141
ignore_custom_codec : bool = ...,
2138
2142
record_class : None = ...
2139
2143
) -> _RecordsType [_RecordT ]:
@@ -2147,7 +2151,7 @@ async def _execute(
2147
2151
limit : int ,
2148
2152
timeout : typing .Optional [float ],
2149
2153
* ,
2150
- return_status : compat . Literal [False ] = ...,
2154
+ return_status : Literal [False ] = ...,
2151
2155
ignore_custom_codec : bool = ...,
2152
2156
record_class : typing .Type [_OtherRecordT ]
2153
2157
) -> _RecordsType [_OtherRecordT ]:
@@ -2161,7 +2165,7 @@ async def _execute(
2161
2165
limit : int ,
2162
2166
timeout : typing .Optional [float ],
2163
2167
* ,
2164
- return_status : compat . Literal [False ] = ...,
2168
+ return_status : Literal [False ] = ...,
2165
2169
ignore_custom_codec : bool = ...,
2166
2170
record_class : typing .Optional [typing .Type [_OtherRecordT ]]
2167
2171
) -> typing .Union [_RecordsType [_RecordT ], _RecordsType [_OtherRecordT ]]:
@@ -2175,7 +2179,7 @@ async def _execute(
2175
2179
limit : int ,
2176
2180
timeout : typing .Optional [float ],
2177
2181
* ,
2178
- return_status : compat . Literal [True ],
2182
+ return_status : Literal [True ],
2179
2183
ignore_custom_codec : bool = ...,
2180
2184
record_class : None = ...
2181
2185
) -> _RecordsExtraType [_RecordT ]:
@@ -2189,7 +2193,7 @@ async def _execute(
2189
2193
limit : int ,
2190
2194
timeout : typing .Optional [float ],
2191
2195
* ,
2192
- return_status : compat . Literal [True ],
2196
+ return_status : Literal [True ],
2193
2197
ignore_custom_codec : bool = ...,
2194
2198
record_class : typing .Type [_OtherRecordT ]
2195
2199
) -> _RecordsExtraType [_OtherRecordT ]:
@@ -2226,7 +2230,7 @@ async def __execute(
2226
2230
limit : int ,
2227
2231
timeout : typing .Optional [float ],
2228
2232
* ,
2229
- return_status : compat . Literal [False ] = ...,
2233
+ return_status : Literal [False ] = ...,
2230
2234
ignore_custom_codec : bool = ...,
2231
2235
record_class : None = ...
2232
2236
) -> typing .Tuple [
@@ -2243,7 +2247,7 @@ async def __execute(
2243
2247
limit : int ,
2244
2248
timeout : typing .Optional [float ],
2245
2249
* ,
2246
- return_status : compat . Literal [False ] = ...,
2250
+ return_status : Literal [False ] = ...,
2247
2251
ignore_custom_codec : bool = ...,
2248
2252
record_class : typing .Type [_OtherRecordT ]
2249
2253
) -> typing .Tuple [
@@ -2260,7 +2264,7 @@ async def __execute(
2260
2264
limit : int ,
2261
2265
timeout : typing .Optional [float ],
2262
2266
* ,
2263
- return_status : compat . Literal [True ],
2267
+ return_status : Literal [True ],
2264
2268
ignore_custom_codec : bool = ...,
2265
2269
record_class : None = ...
2266
2270
) -> typing .Tuple [
@@ -2277,7 +2281,7 @@ async def __execute(
2277
2281
limit : int ,
2278
2282
timeout : typing .Optional [float ],
2279
2283
* ,
2280
- return_status : compat . Literal [True ],
2284
+ return_status : Literal [True ],
2281
2285
ignore_custom_codec : bool = ...,
2282
2286
record_class : typing .Type [_OtherRecordT ]
2283
2287
) -> typing .Tuple [
0 commit comments