@@ -38,10 +38,9 @@ Type aliases
38
38
============
39
39
40
40
A type alias is defined by assigning the type to the alias. In this example,
41
- ``Vector `` and ``List [float] `` will be treated as interchangeable synonyms::
41
+ ``Vector `` and ``list [float] `` will be treated as interchangeable synonyms::
42
42
43
- from typing import List
44
- Vector = List[float]
43
+ Vector = list[float]
45
44
46
45
def scale(scalar: float, vector: Vector) -> Vector:
47
46
return [scalar * num for num in vector]
@@ -51,11 +50,11 @@ A type alias is defined by assigning the type to the alias. In this example,
51
50
52
51
Type aliases are useful for simplifying complex type signatures. For example::
53
52
54
- from typing import Dict, Tuple, Sequence
53
+ from collections.abc import Sequence
55
54
56
- ConnectionOptions = Dict [str, str]
57
- Address = Tuple [str, int]
58
- Server = Tuple [Address, ConnectionOptions]
55
+ ConnectionOptions = dict [str, str]
56
+ Address = tuple [str, int]
57
+ Server = tuple [Address, ConnectionOptions]
59
58
60
59
def broadcast_message(message: str, servers: Sequence[Server]) -> None:
61
60
...
@@ -64,7 +63,7 @@ Type aliases are useful for simplifying complex type signatures. For example::
64
63
# being exactly equivalent to this one.
65
64
def broadcast_message(
66
65
message: str,
67
- servers: Sequence[Tuple[Tuple [str, int], Dict [str, str]]]) -> None:
66
+ servers: Sequence[tuple[tuple [str, int], dict [str, str]]]) -> None:
68
67
...
69
68
70
69
Note that ``None `` as a type hint is a special case and is replaced by
@@ -157,7 +156,7 @@ type hinted using ``Callable[[Arg1Type, Arg2Type], ReturnType]``.
157
156
158
157
For example::
159
158
160
- from typing import Callable
159
+ from collections.abc import Callable
161
160
162
161
def feeder(get_next_item: Callable[[], str]) -> None:
163
162
# Body
@@ -181,7 +180,7 @@ subscription to denote expected types for container elements.
181
180
182
181
::
183
182
184
- from typing import Mapping, Sequence
183
+ from collections.abc import Mapping, Sequence
185
184
186
185
def notify_by_email(employees: Sequence[Employee],
187
186
overrides: Mapping[str, str]) -> None: ...
@@ -191,7 +190,8 @@ called :class:`TypeVar`.
191
190
192
191
::
193
192
194
- from typing import Sequence, TypeVar
193
+ from collections.abc import Sequence
194
+ from typing import TypeVar
195
195
196
196
T = TypeVar('T') # Declare type variable
197
197
@@ -235,7 +235,7 @@ class body.
235
235
The :class: `Generic ` base class defines :meth: `__class_getitem__ ` so that
236
236
``LoggedVar[t] `` is valid as a type::
237
237
238
- from typing import Iterable
238
+ from collections.abc import Iterable
239
239
240
240
def zero_all_vars(vars: Iterable[LoggedVar[int]]) -> None:
241
241
for var in vars:
@@ -266,7 +266,8 @@ This is thus invalid::
266
266
267
267
You can use multiple inheritance with :class: `Generic `::
268
268
269
- from typing import TypeVar, Generic, Sized
269
+ from collections.abc import Sized
270
+ from typing import TypeVar, Generic
270
271
271
272
T = TypeVar('T')
272
273
@@ -275,7 +276,8 @@ You can use multiple inheritance with :class:`Generic`::
275
276
276
277
When inheriting from generic classes, some type variables could be fixed::
277
278
278
- from typing import TypeVar, Mapping
279
+ from collections.abc import Mapping
280
+ from typing import TypeVar
279
281
280
282
T = TypeVar('T')
281
283
@@ -288,13 +290,14 @@ Using a generic class without specifying type parameters assumes
288
290
:data: `Any ` for each position. In the following example, ``MyIterable `` is
289
291
not generic but implicitly inherits from ``Iterable[Any] ``::
290
292
291
- from typing import Iterable
293
+ from collections.abc import Iterable
292
294
293
295
class MyIterable(Iterable): # Same as Iterable[Any]
294
296
295
297
User defined generic type aliases are also supported. Examples::
296
298
297
- from typing import TypeVar, Iterable, Tuple, Union
299
+ from collections.abc import Iterable
300
+ from typing import TypeVar, Union
298
301
S = TypeVar('S')
299
302
Response = Union[Iterable[S], int]
300
303
@@ -303,9 +306,9 @@ User defined generic type aliases are also supported. Examples::
303
306
...
304
307
305
308
T = TypeVar('T', int, float, complex)
306
- Vec = Iterable[Tuple [T, T]]
309
+ Vec = Iterable[tuple [T, T]]
307
310
308
- def inproduct(v: Vec[T]) -> T: # Same as Iterable[Tuple [T, T]]
311
+ def inproduct(v: Vec[T]) -> T: # Same as Iterable[tuple [T, T]]
309
312
return sum(x*y for x, y in v)
310
313
311
314
.. versionchanged :: 3.7
@@ -408,7 +411,7 @@ to be explicitly marked to support them, which is unpythonic and unlike
408
411
what one would normally do in idiomatic dynamically typed Python code.
409
412
For example, this conforms to the :pep: `484 `::
410
413
411
- from typing import Sized, Iterable, Iterator
414
+ from collections.abc import Sized, Iterable, Iterator
412
415
413
416
class Bucket(Sized, Iterable[int]):
414
417
...
@@ -421,7 +424,7 @@ allowing ``Bucket`` to be implicitly considered a subtype of both ``Sized``
421
424
and ``Iterable[int] `` by static type checkers. This is known as
422
425
*structural subtyping * (or static duck-typing)::
423
426
424
- from typing import Iterator, Iterable
427
+ from collections.abc import Iterator, Iterable
425
428
426
429
class Bucket: # Note: no base classes
427
430
...
@@ -1371,10 +1374,10 @@ Asynchronous programming
1371
1374
The variance and order of type variables
1372
1375
correspond to those of :class: `Generator `, for example::
1373
1376
1374
- from typing import List, Coroutine
1375
- c = None # type: Coroutine[List [str], str, int]
1377
+ from collections.abc import Coroutine
1378
+ c = None # type: Coroutine[list [str], str, int]
1376
1379
...
1377
- x = c.send('hi') # type: List [str]
1380
+ x = c.send('hi') # type: list [str]
1378
1381
async def bar() -> None:
1379
1382
x = await c # type: int
1380
1383
0 commit comments