Lines Matching refs:typing
1 :mod:`typing` --- Support for type hints
4 .. module:: typing
9 **Source code:** :source:`Lib/typing.py`
13 The typing module has been included in the standard library on a
42 from typing import List
53 from typing import Dict, Tuple, Sequence
79 from typing import NewType
116 from typing import NewType
125 from typing import NewType
159 from typing import Callable
183 from typing import Mapping, Sequence
188 Generics can be parameterized by using a new factory available in typing
193 from typing import Sequence, TypeVar
208 from typing import TypeVar, Generic
237 from typing import Iterable
246 from typing import TypeVar, Generic
258 from typing import TypeVar, Generic
268 from typing import TypeVar, Generic, Sized
277 from typing import TypeVar, Mapping
290 from typing import Iterable
296 from typing import TypeVar, Iterable, Tuple, Union
314 generics is cached, and most types in the typing module are hashable and
328 from typing import Any
657 from typing import List, Coroutine
730 Note that unlike many other generics in the typing module, the ``SendType``
925 See :pep:`484` for details and comparison with other typing semantics.
956 from typing import NoReturn