Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 1 | """ |
| 2 | The typing module: Support for gradual typing as defined by PEP 484. |
| 3 | |
| 4 | At large scale, the structure of the module is following: |
Tim McNamara | 5265b3a | 2018-09-01 20:56:58 +1200 | [diff] [blame] | 5 | * Imports and exports, all public names should be explicitly added to __all__. |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 6 | * Internal helper functions: these should never be used in code outside this module. |
| 7 | * _SpecialForm and its instances (special forms): Any, NoReturn, ClassVar, Union, Optional |
| 8 | * Two classes whose instances can be type arguments in addition to types: ForwardRef and TypeVar |
| 9 | * The core of internal generics API: _GenericAlias and _VariadicGenericAlias, the latter is |
| 10 | currently only used by Tuple and Callable. All subscripted types like X[int], Union[int, str], |
| 11 | etc., are instances of either of these classes. |
Ivan Levkivskyi | 74d7f76 | 2019-05-28 08:40:15 +0100 | [diff] [blame] | 12 | * The public counterpart of the generics API consists of two classes: Generic and Protocol. |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 13 | * Public helper functions: get_type_hints, overload, cast, no_type_check, |
| 14 | no_type_check_decorator. |
| 15 | * Generic aliases for collections.abc ABCs and few additional protocols. |
ananthan-123 | ab6423f | 2020-02-19 10:03:05 +0530 | [diff] [blame] | 16 | * Special types: NewType, NamedTuple, TypedDict. |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 17 | * Wrapper submodules for re and io related types. |
| 18 | """ |
| 19 | |
HongWeipeng | 6ce03ec | 2019-09-27 15:54:26 +0800 | [diff] [blame] | 20 | from abc import abstractmethod, ABCMeta |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 21 | import collections |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 22 | import collections.abc |
Brett Cannon | f3ad042 | 2016-04-15 10:51:30 -0700 | [diff] [blame] | 23 | import contextlib |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 24 | import functools |
Serhiy Storchaka | 09f3221 | 2018-05-26 21:19:26 +0300 | [diff] [blame] | 25 | import operator |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 26 | import re as stdlib_re # Avoid confusion with the re we export. |
| 27 | import sys |
| 28 | import types |
Guido van Rossum | 48b069a | 2020-04-07 09:50:06 -0700 | [diff] [blame] | 29 | from types import WrapperDescriptorType, MethodWrapperType, MethodDescriptorType, GenericAlias |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 30 | |
| 31 | # Please keep __all__ alphabetized within each category. |
| 32 | __all__ = [ |
| 33 | # Super-special typing primitives. |
Jakub Stasiak | cf5b109 | 2020-02-05 02:10:19 +0100 | [diff] [blame] | 34 | 'Annotated', |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 35 | 'Any', |
| 36 | 'Callable', |
Guido van Rossum | 0a6976d | 2016-09-11 15:34:56 -0700 | [diff] [blame] | 37 | 'ClassVar', |
Ivan Levkivskyi | f367242 | 2019-05-26 09:37:07 +0100 | [diff] [blame] | 38 | 'Final', |
Anthony Sottile | d30da5d | 2019-05-29 11:19:38 -0700 | [diff] [blame] | 39 | 'ForwardRef', |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 40 | 'Generic', |
Ivan Levkivskyi | b891c46 | 2019-05-26 09:37:48 +0100 | [diff] [blame] | 41 | 'Literal', |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 42 | 'Optional', |
Ivan Levkivskyi | 74d7f76 | 2019-05-28 08:40:15 +0100 | [diff] [blame] | 43 | 'Protocol', |
Guido van Rossum | eb9aca3 | 2016-05-24 16:38:22 -0700 | [diff] [blame] | 44 | 'Tuple', |
| 45 | 'Type', |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 46 | 'TypeVar', |
| 47 | 'Union', |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 48 | |
| 49 | # ABCs (from collections.abc). |
| 50 | 'AbstractSet', # collections.abc.Set. |
| 51 | 'ByteString', |
| 52 | 'Container', |
Ivan Levkivskyi | 29fda8d | 2017-06-10 21:57:56 +0200 | [diff] [blame] | 53 | 'ContextManager', |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 54 | 'Hashable', |
| 55 | 'ItemsView', |
| 56 | 'Iterable', |
| 57 | 'Iterator', |
| 58 | 'KeysView', |
| 59 | 'Mapping', |
| 60 | 'MappingView', |
| 61 | 'MutableMapping', |
| 62 | 'MutableSequence', |
| 63 | 'MutableSet', |
| 64 | 'Sequence', |
| 65 | 'Sized', |
| 66 | 'ValuesView', |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 67 | 'Awaitable', |
| 68 | 'AsyncIterator', |
| 69 | 'AsyncIterable', |
| 70 | 'Coroutine', |
| 71 | 'Collection', |
| 72 | 'AsyncGenerator', |
| 73 | 'AsyncContextManager', |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 74 | |
| 75 | # Structural checks, a.k.a. protocols. |
| 76 | 'Reversible', |
| 77 | 'SupportsAbs', |
Ivan Levkivskyi | f06e021 | 2017-05-02 19:14:07 +0200 | [diff] [blame] | 78 | 'SupportsBytes', |
| 79 | 'SupportsComplex', |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 80 | 'SupportsFloat', |
Paul Dagnelie | 4c7a46e | 2019-05-22 07:23:01 -0700 | [diff] [blame] | 81 | 'SupportsIndex', |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 82 | 'SupportsInt', |
| 83 | 'SupportsRound', |
| 84 | |
| 85 | # Concrete collection types. |
Anthony Sottile | d30da5d | 2019-05-29 11:19:38 -0700 | [diff] [blame] | 86 | 'ChainMap', |
Ivan Levkivskyi | b692dc8 | 2017-02-13 22:50:14 +0100 | [diff] [blame] | 87 | 'Counter', |
Raymond Hettinger | 8049052 | 2017-01-16 22:42:37 -0800 | [diff] [blame] | 88 | 'Deque', |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 89 | 'Dict', |
Guido van Rossum | bd5b9a0 | 2016-04-05 08:28:52 -0700 | [diff] [blame] | 90 | 'DefaultDict', |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 91 | 'List', |
Anthony Sottile | d30da5d | 2019-05-29 11:19:38 -0700 | [diff] [blame] | 92 | 'OrderedDict', |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 93 | 'Set', |
Guido van Rossum | efa798d | 2016-08-23 11:01:50 -0700 | [diff] [blame] | 94 | 'FrozenSet', |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 95 | 'NamedTuple', # Not really a type. |
Ivan Levkivskyi | 135c6a5 | 2019-05-26 09:39:24 +0100 | [diff] [blame] | 96 | 'TypedDict', # Not really a type. |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 97 | 'Generator', |
| 98 | |
| 99 | # One-off things. |
| 100 | 'AnyStr', |
| 101 | 'cast', |
Ivan Levkivskyi | f367242 | 2019-05-26 09:37:07 +0100 | [diff] [blame] | 102 | 'final', |
Ivan Levkivskyi | 4c23aff | 2019-05-31 00:10:07 +0100 | [diff] [blame] | 103 | 'get_args', |
| 104 | 'get_origin', |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 105 | 'get_type_hints', |
Patrick Reader | 0705ec8 | 2020-09-16 05:58:32 +0100 | [diff] [blame] | 106 | 'is_typeddict', |
Guido van Rossum | 91185fe | 2016-06-08 11:19:11 -0700 | [diff] [blame] | 107 | 'NewType', |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 108 | 'no_type_check', |
| 109 | 'no_type_check_decorator', |
aetracht | 4573820 | 2018-03-19 14:41:32 -0400 | [diff] [blame] | 110 | 'NoReturn', |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 111 | 'overload', |
Ivan Levkivskyi | 74d7f76 | 2019-05-28 08:40:15 +0100 | [diff] [blame] | 112 | 'runtime_checkable', |
Guido van Rossum | 0e0563c | 2016-04-05 14:54:25 -0700 | [diff] [blame] | 113 | 'Text', |
Guido van Rossum | 91185fe | 2016-06-08 11:19:11 -0700 | [diff] [blame] | 114 | 'TYPE_CHECKING', |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 115 | ] |
| 116 | |
Guido van Rossum | bd5b9a0 | 2016-04-05 08:28:52 -0700 | [diff] [blame] | 117 | # The pseudo-submodules 're' and 'io' are part of the public |
| 118 | # namespace, but excluded from __all__ because they might stomp on |
| 119 | # legitimate imports of those modules. |
| 120 | |
Nina Zakharenko | 0e61dff | 2018-05-22 20:32:10 -0700 | [diff] [blame] | 121 | def _type_check(arg, msg, is_argument=True): |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 122 | """Check that the argument is a type, and return it (internal helper). |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 123 | |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 124 | As a special case, accept None and return type(None) instead. Also wrap strings |
| 125 | into ForwardRef instances. Consider several corner cases, for example plain |
| 126 | special forms like Union are not valid, while Union[int, str] is OK, etc. |
| 127 | The msg argument is a human-readable error message, e.g:: |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 128 | |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 129 | "Union[arg, ...]: arg should be a type." |
Guido van Rossum | 4cefe74 | 2016-09-27 15:20:12 -0700 | [diff] [blame] | 130 | |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 131 | We append the repr() of the actual value (truncated to 100 chars). |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 132 | """ |
Ivan Levkivskyi | 74d7f76 | 2019-05-28 08:40:15 +0100 | [diff] [blame] | 133 | invalid_generic_forms = (Generic, Protocol) |
Nina Zakharenko | 0e61dff | 2018-05-22 20:32:10 -0700 | [diff] [blame] | 134 | if is_argument: |
Ivan Levkivskyi | f367242 | 2019-05-26 09:37:07 +0100 | [diff] [blame] | 135 | invalid_generic_forms = invalid_generic_forms + (ClassVar, Final) |
Nina Zakharenko | 2d2d3b1 | 2018-05-16 12:27:03 -0400 | [diff] [blame] | 136 | |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 137 | if arg is None: |
| 138 | return type(None) |
| 139 | if isinstance(arg, str): |
| 140 | return ForwardRef(arg) |
| 141 | if (isinstance(arg, _GenericAlias) and |
Nina Zakharenko | 2d2d3b1 | 2018-05-16 12:27:03 -0400 | [diff] [blame] | 142 | arg.__origin__ in invalid_generic_forms): |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 143 | raise TypeError(f"{arg} is not valid as type argument") |
Serhiy Storchaka | 40ded94 | 2020-04-23 21:26:48 +0300 | [diff] [blame] | 144 | if arg in (Any, NoReturn): |
| 145 | return arg |
| 146 | if isinstance(arg, _SpecialForm) or arg in (Generic, Protocol): |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 147 | raise TypeError(f"Plain {arg} is not valid as type argument") |
Maggie Moss | 1b4552c | 2020-09-09 13:23:24 -0700 | [diff] [blame] | 148 | if isinstance(arg, (type, TypeVar, ForwardRef, types.Union)): |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 149 | return arg |
| 150 | if not callable(arg): |
| 151 | raise TypeError(f"{msg} Got {arg!r:.100}.") |
| 152 | return arg |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 153 | |
| 154 | |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 155 | def _type_repr(obj): |
| 156 | """Return the repr() of an object, special-casing types (internal helper). |
| 157 | |
| 158 | If obj is a type, we return a shorter version than the default |
| 159 | type.__repr__, based on the module and qualified name, which is |
| 160 | typically enough to uniquely identify a type. For everything |
| 161 | else, we fall back on repr(obj). |
| 162 | """ |
| 163 | if isinstance(obj, type): |
| 164 | if obj.__module__ == 'builtins': |
| 165 | return obj.__qualname__ |
| 166 | return f'{obj.__module__}.{obj.__qualname__}' |
| 167 | if obj is ...: |
| 168 | return('...') |
| 169 | if isinstance(obj, types.FunctionType): |
| 170 | return obj.__name__ |
| 171 | return repr(obj) |
| 172 | |
| 173 | |
| 174 | def _collect_type_vars(types): |
| 175 | """Collect all type variable contained in types in order of |
| 176 | first appearance (lexicographic order). For example:: |
| 177 | |
| 178 | _collect_type_vars((T, List[S, T])) == (T, S) |
| 179 | """ |
| 180 | tvars = [] |
| 181 | for t in types: |
| 182 | if isinstance(t, TypeVar) and t not in tvars: |
| 183 | tvars.append(t) |
Serhiy Storchaka | c1c7d8e | 2020-05-07 04:09:33 +0300 | [diff] [blame] | 184 | if isinstance(t, (_GenericAlias, GenericAlias)): |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 185 | tvars.extend([t for t in t.__parameters__ if t not in tvars]) |
| 186 | return tuple(tvars) |
| 187 | |
| 188 | |
Serhiy Storchaka | fcb2856 | 2020-05-10 11:53:16 +0300 | [diff] [blame] | 189 | def _check_generic(cls, parameters, elen): |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 190 | """Check correct count for parameters of a generic cls (internal helper). |
| 191 | This gives a nice error message in case of count mismatch. |
| 192 | """ |
Serhiy Storchaka | fcb2856 | 2020-05-10 11:53:16 +0300 | [diff] [blame] | 193 | if not elen: |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 194 | raise TypeError(f"{cls} is not a generic class") |
| 195 | alen = len(parameters) |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 196 | if alen != elen: |
| 197 | raise TypeError(f"Too {'many' if alen > elen else 'few'} parameters for {cls};" |
| 198 | f" actual {alen}, expected {elen}") |
| 199 | |
| 200 | |
| 201 | def _remove_dups_flatten(parameters): |
Ivan Levkivskyi | f65e31f | 2018-05-18 16:00:38 -0700 | [diff] [blame] | 202 | """An internal helper for Union creation and substitution: flatten Unions |
| 203 | among parameters, then remove duplicates. |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 204 | """ |
| 205 | # Flatten out Union[Union[...], ...]. |
| 206 | params = [] |
| 207 | for p in parameters: |
Maggie Moss | 1b4552c | 2020-09-09 13:23:24 -0700 | [diff] [blame] | 208 | if isinstance(p, (_UnionGenericAlias, types.Union)): |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 209 | params.extend(p.__args__) |
| 210 | elif isinstance(p, tuple) and len(p) > 0 and p[0] is Union: |
| 211 | params.extend(p[1:]) |
| 212 | else: |
| 213 | params.append(p) |
| 214 | # Weed out strict duplicates, preserving the first of each occurrence. |
| 215 | all_params = set(params) |
| 216 | if len(all_params) < len(params): |
| 217 | new_params = [] |
| 218 | for t in params: |
| 219 | if t in all_params: |
| 220 | new_params.append(t) |
| 221 | all_params.remove(t) |
| 222 | params = new_params |
| 223 | assert not all_params, all_params |
Ivan Levkivskyi | f65e31f | 2018-05-18 16:00:38 -0700 | [diff] [blame] | 224 | return tuple(params) |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 225 | |
| 226 | |
| 227 | _cleanups = [] |
| 228 | |
| 229 | |
| 230 | def _tp_cache(func): |
| 231 | """Internal wrapper caching __getitem__ of generic types with a fallback to |
| 232 | original function for non-hashable arguments. |
| 233 | """ |
| 234 | cached = functools.lru_cache()(func) |
| 235 | _cleanups.append(cached.cache_clear) |
| 236 | |
| 237 | @functools.wraps(func) |
| 238 | def inner(*args, **kwds): |
| 239 | try: |
| 240 | return cached(*args, **kwds) |
| 241 | except TypeError: |
| 242 | pass # All real errors (not unhashable args) are raised below. |
| 243 | return func(*args, **kwds) |
| 244 | return inner |
| 245 | |
| 246 | |
wyfo | 653f420 | 2020-07-22 21:47:28 +0200 | [diff] [blame] | 247 | def _eval_type(t, globalns, localns, recursive_guard=frozenset()): |
Graham Bleaney | 84ef33c | 2020-09-08 18:41:10 -0400 | [diff] [blame] | 248 | """Evaluate all forward references in the given type t. |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 249 | For use of globalns and localns see the docstring for get_type_hints(). |
wyfo | 653f420 | 2020-07-22 21:47:28 +0200 | [diff] [blame] | 250 | recursive_guard is used to prevent prevent infinite recursion |
| 251 | with recursive ForwardRef. |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 252 | """ |
| 253 | if isinstance(t, ForwardRef): |
wyfo | 653f420 | 2020-07-22 21:47:28 +0200 | [diff] [blame] | 254 | return t._evaluate(globalns, localns, recursive_guard) |
Serhiy Storchaka | c1c7d8e | 2020-05-07 04:09:33 +0300 | [diff] [blame] | 255 | if isinstance(t, (_GenericAlias, GenericAlias)): |
wyfo | 653f420 | 2020-07-22 21:47:28 +0200 | [diff] [blame] | 256 | ev_args = tuple(_eval_type(a, globalns, localns, recursive_guard) for a in t.__args__) |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 257 | if ev_args == t.__args__: |
| 258 | return t |
Serhiy Storchaka | c1c7d8e | 2020-05-07 04:09:33 +0300 | [diff] [blame] | 259 | if isinstance(t, GenericAlias): |
| 260 | return GenericAlias(t.__origin__, ev_args) |
| 261 | else: |
| 262 | return t.copy_with(ev_args) |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 263 | return t |
| 264 | |
| 265 | |
| 266 | class _Final: |
| 267 | """Mixin to prohibit subclassing""" |
Guido van Rossum | 4cefe74 | 2016-09-27 15:20:12 -0700 | [diff] [blame] | 268 | |
Guido van Rossum | 83ec302 | 2017-01-17 20:43:28 -0800 | [diff] [blame] | 269 | __slots__ = ('__weakref__',) |
Guido van Rossum | 4cefe74 | 2016-09-27 15:20:12 -0700 | [diff] [blame] | 270 | |
Serhiy Storchaka | 2085bd0 | 2019-06-01 11:00:15 +0300 | [diff] [blame] | 271 | def __init_subclass__(self, /, *args, **kwds): |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 272 | if '_root' not in kwds: |
| 273 | raise TypeError("Cannot subclass special typing classes") |
| 274 | |
Ivan Levkivskyi | 8349403 | 2018-03-26 23:01:12 +0100 | [diff] [blame] | 275 | class _Immutable: |
| 276 | """Mixin to indicate that object should not be copied.""" |
Serhiy Storchaka | c1c7d8e | 2020-05-07 04:09:33 +0300 | [diff] [blame] | 277 | __slots__ = () |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 278 | |
Ivan Levkivskyi | 8349403 | 2018-03-26 23:01:12 +0100 | [diff] [blame] | 279 | def __copy__(self): |
| 280 | return self |
| 281 | |
| 282 | def __deepcopy__(self, memo): |
| 283 | return self |
| 284 | |
| 285 | |
Serhiy Storchaka | 40ded94 | 2020-04-23 21:26:48 +0300 | [diff] [blame] | 286 | # Internal indicator of special typing constructs. |
| 287 | # See __doc__ instance attribute for specific docs. |
| 288 | class _SpecialForm(_Final, _root=True): |
| 289 | __slots__ = ('_name', '__doc__', '_getitem') |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 290 | |
Serhiy Storchaka | 40ded94 | 2020-04-23 21:26:48 +0300 | [diff] [blame] | 291 | def __init__(self, getitem): |
| 292 | self._getitem = getitem |
| 293 | self._name = getitem.__name__ |
| 294 | self.__doc__ = getitem.__doc__ |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 295 | |
Serhiy Storchaka | 40ded94 | 2020-04-23 21:26:48 +0300 | [diff] [blame] | 296 | def __mro_entries__(self, bases): |
| 297 | raise TypeError(f"Cannot subclass {self!r}") |
Guido van Rossum | 4cefe74 | 2016-09-27 15:20:12 -0700 | [diff] [blame] | 298 | |
| 299 | def __repr__(self): |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 300 | return 'typing.' + self._name |
| 301 | |
Ivan Levkivskyi | 8349403 | 2018-03-26 23:01:12 +0100 | [diff] [blame] | 302 | def __reduce__(self): |
| 303 | return self._name |
Guido van Rossum | 4cefe74 | 2016-09-27 15:20:12 -0700 | [diff] [blame] | 304 | |
| 305 | def __call__(self, *args, **kwds): |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 306 | raise TypeError(f"Cannot instantiate {self!r}") |
| 307 | |
| 308 | def __instancecheck__(self, obj): |
| 309 | raise TypeError(f"{self} cannot be used with isinstance()") |
| 310 | |
| 311 | def __subclasscheck__(self, cls): |
| 312 | raise TypeError(f"{self} cannot be used with issubclass()") |
| 313 | |
| 314 | @_tp_cache |
| 315 | def __getitem__(self, parameters): |
Serhiy Storchaka | 40ded94 | 2020-04-23 21:26:48 +0300 | [diff] [blame] | 316 | return self._getitem(self, parameters) |
Guido van Rossum | 4cefe74 | 2016-09-27 15:20:12 -0700 | [diff] [blame] | 317 | |
Serhiy Storchaka | 40ded94 | 2020-04-23 21:26:48 +0300 | [diff] [blame] | 318 | @_SpecialForm |
| 319 | def Any(self, parameters): |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 320 | """Special type indicating an unconstrained type. |
Guido van Rossum | b47c9d2 | 2016-10-03 08:40:50 -0700 | [diff] [blame] | 321 | |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 322 | - Any is compatible with every type. |
| 323 | - Any assumed to have all methods. |
| 324 | - All values assumed to be instances of Any. |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 325 | |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 326 | Note that all the above statements are true from the point of view of |
| 327 | static type checkers. At runtime, Any should not be used with instance |
| 328 | or class checks. |
Serhiy Storchaka | 40ded94 | 2020-04-23 21:26:48 +0300 | [diff] [blame] | 329 | """ |
| 330 | raise TypeError(f"{self} is not subscriptable") |
Guido van Rossum | d70fe63 | 2015-08-05 12:11:06 +0200 | [diff] [blame] | 331 | |
Serhiy Storchaka | 40ded94 | 2020-04-23 21:26:48 +0300 | [diff] [blame] | 332 | @_SpecialForm |
| 333 | def NoReturn(self, parameters): |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 334 | """Special type indicating functions that never return. |
| 335 | Example:: |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 336 | |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 337 | from typing import NoReturn |
| 338 | |
| 339 | def stop() -> NoReturn: |
| 340 | raise Exception('no way') |
| 341 | |
| 342 | This type is invalid in other positions, e.g., ``List[NoReturn]`` |
| 343 | will fail in static type checkers. |
Serhiy Storchaka | 40ded94 | 2020-04-23 21:26:48 +0300 | [diff] [blame] | 344 | """ |
| 345 | raise TypeError(f"{self} is not subscriptable") |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 346 | |
Serhiy Storchaka | 40ded94 | 2020-04-23 21:26:48 +0300 | [diff] [blame] | 347 | @_SpecialForm |
| 348 | def ClassVar(self, parameters): |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 349 | """Special type construct to mark class variables. |
| 350 | |
| 351 | An annotation wrapped in ClassVar indicates that a given |
| 352 | attribute is intended to be used as a class variable and |
| 353 | should not be set on instances of that class. Usage:: |
| 354 | |
| 355 | class Starship: |
| 356 | stats: ClassVar[Dict[str, int]] = {} # class variable |
| 357 | damage: int = 10 # instance variable |
| 358 | |
| 359 | ClassVar accepts only types and cannot be further subscribed. |
| 360 | |
| 361 | Note that ClassVar is not a class itself, and should not |
| 362 | be used with isinstance() or issubclass(). |
Serhiy Storchaka | 40ded94 | 2020-04-23 21:26:48 +0300 | [diff] [blame] | 363 | """ |
| 364 | item = _type_check(parameters, f'{self} accepts only single type.') |
| 365 | return _GenericAlias(self, (item,)) |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 366 | |
Serhiy Storchaka | 40ded94 | 2020-04-23 21:26:48 +0300 | [diff] [blame] | 367 | @_SpecialForm |
| 368 | def Final(self, parameters): |
Ivan Levkivskyi | f367242 | 2019-05-26 09:37:07 +0100 | [diff] [blame] | 369 | """Special typing construct to indicate final names to type checkers. |
| 370 | |
| 371 | A final name cannot be re-assigned or overridden in a subclass. |
| 372 | For example: |
| 373 | |
| 374 | MAX_SIZE: Final = 9000 |
| 375 | MAX_SIZE += 1 # Error reported by type checker |
| 376 | |
| 377 | class Connection: |
| 378 | TIMEOUT: Final[int] = 10 |
| 379 | |
| 380 | class FastConnector(Connection): |
| 381 | TIMEOUT = 1 # Error reported by type checker |
| 382 | |
| 383 | There is no runtime checking of these properties. |
Serhiy Storchaka | 40ded94 | 2020-04-23 21:26:48 +0300 | [diff] [blame] | 384 | """ |
| 385 | item = _type_check(parameters, f'{self} accepts only single type.') |
| 386 | return _GenericAlias(self, (item,)) |
Ivan Levkivskyi | f367242 | 2019-05-26 09:37:07 +0100 | [diff] [blame] | 387 | |
Serhiy Storchaka | 40ded94 | 2020-04-23 21:26:48 +0300 | [diff] [blame] | 388 | @_SpecialForm |
| 389 | def Union(self, parameters): |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 390 | """Union type; Union[X, Y] means either X or Y. |
| 391 | |
| 392 | To define a union, use e.g. Union[int, str]. Details: |
| 393 | - The arguments must be types and there must be at least one. |
| 394 | - None as an argument is a special case and is replaced by |
| 395 | type(None). |
| 396 | - Unions of unions are flattened, e.g.:: |
| 397 | |
| 398 | Union[Union[int, str], float] == Union[int, str, float] |
| 399 | |
| 400 | - Unions of a single argument vanish, e.g.:: |
| 401 | |
| 402 | Union[int] == int # The constructor actually returns int |
| 403 | |
| 404 | - Redundant arguments are skipped, e.g.:: |
| 405 | |
| 406 | Union[int, str, int] == Union[int, str] |
| 407 | |
| 408 | - When comparing unions, the argument order is ignored, e.g.:: |
| 409 | |
| 410 | Union[int, str] == Union[str, int] |
| 411 | |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 412 | - You cannot subclass or instantiate a union. |
| 413 | - You can use Optional[X] as a shorthand for Union[X, None]. |
Serhiy Storchaka | 40ded94 | 2020-04-23 21:26:48 +0300 | [diff] [blame] | 414 | """ |
| 415 | if parameters == (): |
| 416 | raise TypeError("Cannot take a Union of no types.") |
| 417 | if not isinstance(parameters, tuple): |
| 418 | parameters = (parameters,) |
| 419 | msg = "Union[arg, ...]: each arg must be a type." |
| 420 | parameters = tuple(_type_check(p, msg) for p in parameters) |
| 421 | parameters = _remove_dups_flatten(parameters) |
| 422 | if len(parameters) == 1: |
| 423 | return parameters[0] |
Serhiy Storchaka | c1c7d8e | 2020-05-07 04:09:33 +0300 | [diff] [blame] | 424 | return _UnionGenericAlias(self, parameters) |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 425 | |
Serhiy Storchaka | 40ded94 | 2020-04-23 21:26:48 +0300 | [diff] [blame] | 426 | @_SpecialForm |
| 427 | def Optional(self, parameters): |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 428 | """Optional type. |
| 429 | |
| 430 | Optional[X] is equivalent to Union[X, None]. |
Serhiy Storchaka | 40ded94 | 2020-04-23 21:26:48 +0300 | [diff] [blame] | 431 | """ |
| 432 | arg = _type_check(parameters, f"{self} requires a single type.") |
| 433 | return Union[arg, type(None)] |
Guido van Rossum | b7dedc8 | 2016-10-29 12:44:29 -0700 | [diff] [blame] | 434 | |
Serhiy Storchaka | 40ded94 | 2020-04-23 21:26:48 +0300 | [diff] [blame] | 435 | @_SpecialForm |
| 436 | def Literal(self, parameters): |
Ivan Levkivskyi | b891c46 | 2019-05-26 09:37:48 +0100 | [diff] [blame] | 437 | """Special typing form to define literal types (a.k.a. value types). |
| 438 | |
| 439 | This form can be used to indicate to type checkers that the corresponding |
| 440 | variable or function parameter has a value equivalent to the provided |
| 441 | literal (or one of several literals): |
| 442 | |
| 443 | def validate_simple(data: Any) -> Literal[True]: # always returns True |
| 444 | ... |
| 445 | |
| 446 | MODE = Literal['r', 'rb', 'w', 'wb'] |
| 447 | def open_helper(file: str, mode: MODE) -> str: |
| 448 | ... |
| 449 | |
| 450 | open_helper('/some/path', 'r') # Passes type check |
| 451 | open_helper('/other/path', 'typo') # Error in type checker |
| 452 | |
Serhiy Storchaka | 40ded94 | 2020-04-23 21:26:48 +0300 | [diff] [blame] | 453 | Literal[...] cannot be subclassed. At runtime, an arbitrary value |
| 454 | is allowed as type argument to Literal[...], but type checkers may |
| 455 | impose restrictions. |
| 456 | """ |
| 457 | # There is no '_type_check' call because arguments to Literal[...] are |
| 458 | # values, not types. |
| 459 | return _GenericAlias(self, parameters) |
Ivan Levkivskyi | b891c46 | 2019-05-26 09:37:48 +0100 | [diff] [blame] | 460 | |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 461 | |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 462 | class ForwardRef(_Final, _root=True): |
Guido van Rossum | b24569a | 2016-11-20 18:01:29 -0800 | [diff] [blame] | 463 | """Internal wrapper to hold a forward reference.""" |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 464 | |
Guido van Rossum | 4cefe74 | 2016-09-27 15:20:12 -0700 | [diff] [blame] | 465 | __slots__ = ('__forward_arg__', '__forward_code__', |
Nina Zakharenko | 2d2d3b1 | 2018-05-16 12:27:03 -0400 | [diff] [blame] | 466 | '__forward_evaluated__', '__forward_value__', |
| 467 | '__forward_is_argument__') |
Guido van Rossum | 4cefe74 | 2016-09-27 15:20:12 -0700 | [diff] [blame] | 468 | |
Nina Zakharenko | 0e61dff | 2018-05-22 20:32:10 -0700 | [diff] [blame] | 469 | def __init__(self, arg, is_argument=True): |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 470 | if not isinstance(arg, str): |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 471 | raise TypeError(f"Forward reference must be a string -- got {arg!r}") |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 472 | try: |
| 473 | code = compile(arg, '<string>', 'eval') |
| 474 | except SyntaxError: |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 475 | raise SyntaxError(f"Forward reference must be an expression -- got {arg!r}") |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 476 | self.__forward_arg__ = arg |
| 477 | self.__forward_code__ = code |
| 478 | self.__forward_evaluated__ = False |
| 479 | self.__forward_value__ = None |
Nina Zakharenko | 2d2d3b1 | 2018-05-16 12:27:03 -0400 | [diff] [blame] | 480 | self.__forward_is_argument__ = is_argument |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 481 | |
wyfo | 653f420 | 2020-07-22 21:47:28 +0200 | [diff] [blame] | 482 | def _evaluate(self, globalns, localns, recursive_guard): |
| 483 | if self.__forward_arg__ in recursive_guard: |
| 484 | return self |
Guido van Rossum | dad1790 | 2016-11-10 08:29:18 -0800 | [diff] [blame] | 485 | if not self.__forward_evaluated__ or localns is not globalns: |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 486 | if globalns is None and localns is None: |
| 487 | globalns = localns = {} |
| 488 | elif globalns is None: |
| 489 | globalns = localns |
| 490 | elif localns is None: |
| 491 | localns = globalns |
wyfo | 653f420 | 2020-07-22 21:47:28 +0200 | [diff] [blame] | 492 | type_ =_type_check( |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 493 | eval(self.__forward_code__, globalns, localns), |
Nina Zakharenko | 2d2d3b1 | 2018-05-16 12:27:03 -0400 | [diff] [blame] | 494 | "Forward references must evaluate to types.", |
wyfo | 653f420 | 2020-07-22 21:47:28 +0200 | [diff] [blame] | 495 | is_argument=self.__forward_is_argument__, |
| 496 | ) |
| 497 | self.__forward_value__ = _eval_type( |
| 498 | type_, globalns, localns, recursive_guard | {self.__forward_arg__} |
| 499 | ) |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 500 | self.__forward_evaluated__ = True |
| 501 | return self.__forward_value__ |
| 502 | |
Guido van Rossum | 4cefe74 | 2016-09-27 15:20:12 -0700 | [diff] [blame] | 503 | def __eq__(self, other): |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 504 | if not isinstance(other, ForwardRef): |
Guido van Rossum | 4cefe74 | 2016-09-27 15:20:12 -0700 | [diff] [blame] | 505 | return NotImplemented |
plokmijnuhby | e082e7c | 2019-09-13 20:40:54 +0100 | [diff] [blame] | 506 | if self.__forward_evaluated__ and other.__forward_evaluated__: |
| 507 | return (self.__forward_arg__ == other.__forward_arg__ and |
| 508 | self.__forward_value__ == other.__forward_value__) |
| 509 | return self.__forward_arg__ == other.__forward_arg__ |
Guido van Rossum | 4cefe74 | 2016-09-27 15:20:12 -0700 | [diff] [blame] | 510 | |
| 511 | def __hash__(self): |
plokmijnuhby | e082e7c | 2019-09-13 20:40:54 +0100 | [diff] [blame] | 512 | return hash(self.__forward_arg__) |
Guido van Rossum | 4cefe74 | 2016-09-27 15:20:12 -0700 | [diff] [blame] | 513 | |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 514 | def __repr__(self): |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 515 | return f'ForwardRef({self.__forward_arg__!r})' |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 516 | |
| 517 | |
Ivan Levkivskyi | 8349403 | 2018-03-26 23:01:12 +0100 | [diff] [blame] | 518 | class TypeVar(_Final, _Immutable, _root=True): |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 519 | """Type variable. |
| 520 | |
| 521 | Usage:: |
| 522 | |
| 523 | T = TypeVar('T') # Can be anything |
| 524 | A = TypeVar('A', str, bytes) # Must be str or bytes |
| 525 | |
| 526 | Type variables exist primarily for the benefit of static type |
| 527 | checkers. They serve as the parameters for generic types as well |
| 528 | as for generic function definitions. See class Generic for more |
| 529 | information on generic types. Generic functions work as follows: |
| 530 | |
Guido van Rossum | b24569a | 2016-11-20 18:01:29 -0800 | [diff] [blame] | 531 | def repeat(x: T, n: int) -> List[T]: |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 532 | '''Return a list containing n references to x.''' |
| 533 | return [x]*n |
| 534 | |
| 535 | def longest(x: A, y: A) -> A: |
| 536 | '''Return the longest of two strings.''' |
| 537 | return x if len(x) >= len(y) else y |
| 538 | |
| 539 | The latter example's signature is essentially the overloading |
| 540 | of (str, str) -> str and (bytes, bytes) -> bytes. Also note |
| 541 | that if the arguments are instances of some subclass of str, |
| 542 | the return type is still plain str. |
| 543 | |
Guido van Rossum | b24569a | 2016-11-20 18:01:29 -0800 | [diff] [blame] | 544 | At runtime, isinstance(x, T) and issubclass(C, T) will raise TypeError. |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 545 | |
Guido van Rossum | efa798d | 2016-08-23 11:01:50 -0700 | [diff] [blame] | 546 | Type variables defined with covariant=True or contravariant=True |
João D. Ferreira | 86bfed3 | 2018-07-07 16:41:20 +0100 | [diff] [blame] | 547 | can be used to declare covariant or contravariant generic types. |
Guido van Rossum | efa798d | 2016-08-23 11:01:50 -0700 | [diff] [blame] | 548 | See PEP 484 for more details. By default generic types are invariant |
| 549 | in all type variables. |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 550 | |
| 551 | Type variables can be introspected. e.g.: |
| 552 | |
| 553 | T.__name__ == 'T' |
| 554 | T.__constraints__ == () |
| 555 | T.__covariant__ == False |
| 556 | T.__contravariant__ = False |
| 557 | A.__constraints__ == (str, bytes) |
Ivan Levkivskyi | 8349403 | 2018-03-26 23:01:12 +0100 | [diff] [blame] | 558 | |
| 559 | Note that only type variables defined in global scope can be pickled. |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 560 | """ |
| 561 | |
Guido van Rossum | 4cefe74 | 2016-09-27 15:20:12 -0700 | [diff] [blame] | 562 | __slots__ = ('__name__', '__bound__', '__constraints__', |
Serhiy Storchaka | c1c7d8e | 2020-05-07 04:09:33 +0300 | [diff] [blame] | 563 | '__covariant__', '__contravariant__', '__dict__') |
Guido van Rossum | 4cefe74 | 2016-09-27 15:20:12 -0700 | [diff] [blame] | 564 | |
| 565 | def __init__(self, name, *constraints, bound=None, |
Guido van Rossum | d7adfe1 | 2017-01-22 17:43:53 -0800 | [diff] [blame] | 566 | covariant=False, contravariant=False): |
Guido van Rossum | 4cefe74 | 2016-09-27 15:20:12 -0700 | [diff] [blame] | 567 | self.__name__ = name |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 568 | if covariant and contravariant: |
Guido van Rossum | efa798d | 2016-08-23 11:01:50 -0700 | [diff] [blame] | 569 | raise ValueError("Bivariant types are not supported.") |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 570 | self.__covariant__ = bool(covariant) |
| 571 | self.__contravariant__ = bool(contravariant) |
| 572 | if constraints and bound is not None: |
| 573 | raise TypeError("Constraints cannot be combined with bound=...") |
| 574 | if constraints and len(constraints) == 1: |
| 575 | raise TypeError("A single constraint is not allowed") |
| 576 | msg = "TypeVar(name, constraint, ...): constraints must be types." |
| 577 | self.__constraints__ = tuple(_type_check(t, msg) for t in constraints) |
| 578 | if bound: |
| 579 | self.__bound__ = _type_check(bound, "Bound must be a type.") |
| 580 | else: |
| 581 | self.__bound__ = None |
HongWeipeng | a25a04f | 2020-04-21 04:01:53 +0800 | [diff] [blame] | 582 | try: |
| 583 | def_mod = sys._getframe(1).f_globals.get('__name__', '__main__') # for pickling |
| 584 | except (AttributeError, ValueError): |
| 585 | def_mod = None |
Serhiy Storchaka | 09f3221 | 2018-05-26 21:19:26 +0300 | [diff] [blame] | 586 | if def_mod != 'typing': |
| 587 | self.__module__ = def_mod |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 588 | |
Maggie Moss | 1b4552c | 2020-09-09 13:23:24 -0700 | [diff] [blame] | 589 | def __or__(self, right): |
| 590 | return Union[self, right] |
| 591 | |
| 592 | def __ror__(self, right): |
| 593 | return Union[self, right] |
| 594 | |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 595 | def __repr__(self): |
| 596 | if self.__covariant__: |
| 597 | prefix = '+' |
| 598 | elif self.__contravariant__: |
| 599 | prefix = '-' |
| 600 | else: |
| 601 | prefix = '~' |
| 602 | return prefix + self.__name__ |
| 603 | |
Ivan Levkivskyi | 8349403 | 2018-03-26 23:01:12 +0100 | [diff] [blame] | 604 | def __reduce__(self): |
Serhiy Storchaka | 09f3221 | 2018-05-26 21:19:26 +0300 | [diff] [blame] | 605 | return self.__name__ |
Ivan Levkivskyi | 8349403 | 2018-03-26 23:01:12 +0100 | [diff] [blame] | 606 | |
Guido van Rossum | 5fc25a8 | 2016-10-29 08:54:56 -0700 | [diff] [blame] | 607 | |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 608 | def _is_dunder(attr): |
| 609 | return attr.startswith('__') and attr.endswith('__') |
Guido van Rossum | 83ec302 | 2017-01-17 20:43:28 -0800 | [diff] [blame] | 610 | |
Serhiy Storchaka | c1c7d8e | 2020-05-07 04:09:33 +0300 | [diff] [blame] | 611 | class _BaseGenericAlias(_Final, _root=True): |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 612 | """The central part of internal API. |
| 613 | |
| 614 | This represents a generic version of type 'origin' with type arguments 'params'. |
| 615 | There are two kind of these aliases: user defined and special. The special ones |
| 616 | are wrappers around builtin collections and ABCs in collections.abc. These must |
| 617 | have 'name' always set. If 'inst' is False, then the alias can't be instantiated, |
| 618 | this is used by e.g. typing.List and typing.Dict. |
Guido van Rossum | 5fc25a8 | 2016-10-29 08:54:56 -0700 | [diff] [blame] | 619 | """ |
Serhiy Storchaka | fcb2856 | 2020-05-10 11:53:16 +0300 | [diff] [blame] | 620 | def __init__(self, origin, *, inst=True, name=None): |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 621 | self._inst = inst |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 622 | self._name = name |
Guido van Rossum | 5fc25a8 | 2016-10-29 08:54:56 -0700 | [diff] [blame] | 623 | self.__origin__ = origin |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 624 | self.__slots__ = None # This is not documented. |
Serhiy Storchaka | c1c7d8e | 2020-05-07 04:09:33 +0300 | [diff] [blame] | 625 | |
| 626 | def __call__(self, *args, **kwargs): |
| 627 | if not self._inst: |
| 628 | raise TypeError(f"Type {self._name} cannot be instantiated; " |
| 629 | f"use {self.__origin__.__name__}() instead") |
| 630 | result = self.__origin__(*args, **kwargs) |
| 631 | try: |
| 632 | result.__orig_class__ = self |
| 633 | except AttributeError: |
| 634 | pass |
| 635 | return result |
| 636 | |
| 637 | def __mro_entries__(self, bases): |
| 638 | res = [] |
| 639 | if self.__origin__ not in bases: |
| 640 | res.append(self.__origin__) |
| 641 | i = bases.index(self) |
| 642 | for b in bases[i+1:]: |
| 643 | if isinstance(b, _BaseGenericAlias) or issubclass(b, Generic): |
| 644 | break |
| 645 | else: |
| 646 | res.append(Generic) |
| 647 | return tuple(res) |
| 648 | |
| 649 | def __getattr__(self, attr): |
| 650 | # We are careful for copy and pickle. |
| 651 | # Also for simplicity we just don't relay all dunder names |
| 652 | if '__origin__' in self.__dict__ and not _is_dunder(attr): |
| 653 | return getattr(self.__origin__, attr) |
| 654 | raise AttributeError(attr) |
| 655 | |
| 656 | def __setattr__(self, attr, val): |
Serhiy Storchaka | fcb2856 | 2020-05-10 11:53:16 +0300 | [diff] [blame] | 657 | if _is_dunder(attr) or attr in ('_name', '_inst', '_nparams'): |
Serhiy Storchaka | c1c7d8e | 2020-05-07 04:09:33 +0300 | [diff] [blame] | 658 | super().__setattr__(attr, val) |
| 659 | else: |
| 660 | setattr(self.__origin__, attr, val) |
| 661 | |
| 662 | def __instancecheck__(self, obj): |
| 663 | return self.__subclasscheck__(type(obj)) |
| 664 | |
| 665 | def __subclasscheck__(self, cls): |
| 666 | raise TypeError("Subscripted generics cannot be used with" |
| 667 | " class and instance checks") |
| 668 | |
| 669 | |
Serhiy Storchaka | fcb2856 | 2020-05-10 11:53:16 +0300 | [diff] [blame] | 670 | # Special typing constructs Union, Optional, Generic, Callable and Tuple |
| 671 | # use three special attributes for internal bookkeeping of generic types: |
| 672 | # * __parameters__ is a tuple of unique free type parameters of a generic |
| 673 | # type, for example, Dict[T, T].__parameters__ == (T,); |
| 674 | # * __origin__ keeps a reference to a type that was subscripted, |
| 675 | # e.g., Union[T, int].__origin__ == Union, or the non-generic version of |
| 676 | # the type. |
| 677 | # * __args__ is a tuple of all arguments used in subscripting, |
| 678 | # e.g., Dict[T, int].__args__ == (T, int). |
| 679 | |
| 680 | |
Serhiy Storchaka | c1c7d8e | 2020-05-07 04:09:33 +0300 | [diff] [blame] | 681 | class _GenericAlias(_BaseGenericAlias, _root=True): |
Serhiy Storchaka | fcb2856 | 2020-05-10 11:53:16 +0300 | [diff] [blame] | 682 | def __init__(self, origin, params, *, inst=True, name=None): |
| 683 | super().__init__(origin, inst=inst, name=name) |
| 684 | if not isinstance(params, tuple): |
| 685 | params = (params,) |
| 686 | self.__args__ = tuple(... if a is _TypingEllipsis else |
| 687 | () if a is _TypingEmpty else |
| 688 | a for a in params) |
| 689 | self.__parameters__ = _collect_type_vars(params) |
| 690 | if not name: |
| 691 | self.__module__ = origin.__module__ |
| 692 | |
| 693 | def __eq__(self, other): |
| 694 | if not isinstance(other, _GenericAlias): |
| 695 | return NotImplemented |
| 696 | return (self.__origin__ == other.__origin__ |
| 697 | and self.__args__ == other.__args__) |
| 698 | |
| 699 | def __hash__(self): |
| 700 | return hash((self.__origin__, self.__args__)) |
| 701 | |
Maggie Moss | 1b4552c | 2020-09-09 13:23:24 -0700 | [diff] [blame] | 702 | def __or__(self, right): |
| 703 | return Union[self, right] |
| 704 | |
| 705 | def __ror__(self, right): |
| 706 | return Union[self, right] |
| 707 | |
Guido van Rossum | 4cefe74 | 2016-09-27 15:20:12 -0700 | [diff] [blame] | 708 | @_tp_cache |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 709 | def __getitem__(self, params): |
Ivan Levkivskyi | 74d7f76 | 2019-05-28 08:40:15 +0100 | [diff] [blame] | 710 | if self.__origin__ in (Generic, Protocol): |
| 711 | # Can't subscript Generic[...] or Protocol[...]. |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 712 | raise TypeError(f"Cannot subscript already-subscripted {self}") |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 713 | if not isinstance(params, tuple): |
| 714 | params = (params,) |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 715 | msg = "Parameters to generic types must be types." |
| 716 | params = tuple(_type_check(p, msg) for p in params) |
Serhiy Storchaka | fcb2856 | 2020-05-10 11:53:16 +0300 | [diff] [blame] | 717 | _check_generic(self, params, len(self.__parameters__)) |
Serhiy Storchaka | c1c7d8e | 2020-05-07 04:09:33 +0300 | [diff] [blame] | 718 | |
| 719 | subst = dict(zip(self.__parameters__, params)) |
| 720 | new_args = [] |
| 721 | for arg in self.__args__: |
| 722 | if isinstance(arg, TypeVar): |
| 723 | arg = subst[arg] |
Serhiy Storchaka | fcb2856 | 2020-05-10 11:53:16 +0300 | [diff] [blame] | 724 | elif isinstance(arg, (_GenericAlias, GenericAlias)): |
Serhiy Storchaka | 0122d48 | 2020-05-10 13:39:40 +0300 | [diff] [blame] | 725 | subparams = arg.__parameters__ |
| 726 | if subparams: |
| 727 | subargs = tuple(subst[x] for x in subparams) |
| 728 | arg = arg[subargs] |
Serhiy Storchaka | c1c7d8e | 2020-05-07 04:09:33 +0300 | [diff] [blame] | 729 | new_args.append(arg) |
| 730 | return self.copy_with(tuple(new_args)) |
Ivan Levkivskyi | b692dc8 | 2017-02-13 22:50:14 +0100 | [diff] [blame] | 731 | |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 732 | def copy_with(self, params): |
Serhiy Storchaka | c1c7d8e | 2020-05-07 04:09:33 +0300 | [diff] [blame] | 733 | return self.__class__(self.__origin__, params, name=self._name, inst=self._inst) |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 734 | |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 735 | def __repr__(self): |
Serhiy Storchaka | c1c7d8e | 2020-05-07 04:09:33 +0300 | [diff] [blame] | 736 | if self._name: |
| 737 | name = 'typing.' + self._name |
| 738 | else: |
| 739 | name = _type_repr(self.__origin__) |
| 740 | args = ", ".join([_type_repr(a) for a in self.__args__]) |
| 741 | return f'{name}[{args}]' |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 742 | |
Serhiy Storchaka | c1c7d8e | 2020-05-07 04:09:33 +0300 | [diff] [blame] | 743 | def __reduce__(self): |
| 744 | if self._name: |
| 745 | origin = globals()[self._name] |
| 746 | else: |
| 747 | origin = self.__origin__ |
| 748 | args = tuple(self.__args__) |
| 749 | if len(args) == 1 and not isinstance(args[0], tuple): |
| 750 | args, = args |
| 751 | return operator.getitem, (origin, args) |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 752 | |
| 753 | def __mro_entries__(self, bases): |
| 754 | if self._name: # generic version of an ABC or built-in class |
Serhiy Storchaka | c1c7d8e | 2020-05-07 04:09:33 +0300 | [diff] [blame] | 755 | return super().__mro_entries__(bases) |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 756 | if self.__origin__ is Generic: |
Ivan Levkivskyi | 74d7f76 | 2019-05-28 08:40:15 +0100 | [diff] [blame] | 757 | if Protocol in bases: |
| 758 | return () |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 759 | i = bases.index(self) |
| 760 | for b in bases[i+1:]: |
Serhiy Storchaka | c1c7d8e | 2020-05-07 04:09:33 +0300 | [diff] [blame] | 761 | if isinstance(b, _BaseGenericAlias) and b is not self: |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 762 | return () |
| 763 | return (self.__origin__,) |
| 764 | |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 765 | |
Serhiy Storchaka | fcb2856 | 2020-05-10 11:53:16 +0300 | [diff] [blame] | 766 | # _nparams is the number of accepted parameters, e.g. 0 for Hashable, |
| 767 | # 1 for List and 2 for Dict. It may be -1 if variable number of |
| 768 | # parameters are accepted (needs custom __getitem__). |
| 769 | |
Serhiy Storchaka | c1c7d8e | 2020-05-07 04:09:33 +0300 | [diff] [blame] | 770 | class _SpecialGenericAlias(_BaseGenericAlias, _root=True): |
Serhiy Storchaka | fcb2856 | 2020-05-10 11:53:16 +0300 | [diff] [blame] | 771 | def __init__(self, origin, nparams, *, inst=True, name=None): |
Serhiy Storchaka | c1c7d8e | 2020-05-07 04:09:33 +0300 | [diff] [blame] | 772 | if name is None: |
| 773 | name = origin.__name__ |
Serhiy Storchaka | fcb2856 | 2020-05-10 11:53:16 +0300 | [diff] [blame] | 774 | super().__init__(origin, inst=inst, name=name) |
| 775 | self._nparams = nparams |
Serhiy Storchaka | 2fbc57a | 2020-05-10 15:14:27 +0300 | [diff] [blame] | 776 | if origin.__module__ == 'builtins': |
| 777 | self.__doc__ = f'A generic version of {origin.__qualname__}.' |
| 778 | else: |
| 779 | self.__doc__ = f'A generic version of {origin.__module__}.{origin.__qualname__}.' |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 780 | |
Serhiy Storchaka | c1c7d8e | 2020-05-07 04:09:33 +0300 | [diff] [blame] | 781 | @_tp_cache |
| 782 | def __getitem__(self, params): |
| 783 | if not isinstance(params, tuple): |
| 784 | params = (params,) |
| 785 | msg = "Parameters to generic types must be types." |
| 786 | params = tuple(_type_check(p, msg) for p in params) |
Serhiy Storchaka | fcb2856 | 2020-05-10 11:53:16 +0300 | [diff] [blame] | 787 | _check_generic(self, params, self._nparams) |
Serhiy Storchaka | c1c7d8e | 2020-05-07 04:09:33 +0300 | [diff] [blame] | 788 | return self.copy_with(params) |
| 789 | |
| 790 | def copy_with(self, params): |
| 791 | return _GenericAlias(self.__origin__, params, |
| 792 | name=self._name, inst=self._inst) |
| 793 | |
| 794 | def __repr__(self): |
| 795 | return 'typing.' + self._name |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 796 | |
| 797 | def __subclasscheck__(self, cls): |
Serhiy Storchaka | c1c7d8e | 2020-05-07 04:09:33 +0300 | [diff] [blame] | 798 | if isinstance(cls, _SpecialGenericAlias): |
| 799 | return issubclass(cls.__origin__, self.__origin__) |
| 800 | if not isinstance(cls, _GenericAlias): |
| 801 | return issubclass(cls, self.__origin__) |
| 802 | return super().__subclasscheck__(cls) |
Guido van Rossum | 5fc25a8 | 2016-10-29 08:54:56 -0700 | [diff] [blame] | 803 | |
Ivan Levkivskyi | 8349403 | 2018-03-26 23:01:12 +0100 | [diff] [blame] | 804 | def __reduce__(self): |
Serhiy Storchaka | c1c7d8e | 2020-05-07 04:09:33 +0300 | [diff] [blame] | 805 | return self._name |
Ivan Levkivskyi | 8349403 | 2018-03-26 23:01:12 +0100 | [diff] [blame] | 806 | |
Maggie Moss | 1b4552c | 2020-09-09 13:23:24 -0700 | [diff] [blame] | 807 | def __or__(self, right): |
| 808 | return Union[self, right] |
| 809 | |
| 810 | def __ror__(self, right): |
| 811 | return Union[self, right] |
Guido van Rossum | 5fc25a8 | 2016-10-29 08:54:56 -0700 | [diff] [blame] | 812 | |
Serhiy Storchaka | c1c7d8e | 2020-05-07 04:09:33 +0300 | [diff] [blame] | 813 | class _CallableGenericAlias(_GenericAlias, _root=True): |
| 814 | def __repr__(self): |
| 815 | assert self._name == 'Callable' |
| 816 | if len(self.__args__) == 2 and self.__args__[0] is Ellipsis: |
| 817 | return super().__repr__() |
| 818 | return (f'typing.Callable' |
| 819 | f'[[{", ".join([_type_repr(a) for a in self.__args__[:-1]])}], ' |
| 820 | f'{_type_repr(self.__args__[-1])}]') |
| 821 | |
| 822 | def __reduce__(self): |
| 823 | args = self.__args__ |
| 824 | if not (len(args) == 2 and args[0] is ...): |
| 825 | args = list(args[:-1]), args[-1] |
| 826 | return operator.getitem, (Callable, args) |
| 827 | |
| 828 | |
| 829 | class _CallableType(_SpecialGenericAlias, _root=True): |
| 830 | def copy_with(self, params): |
| 831 | return _CallableGenericAlias(self.__origin__, params, |
| 832 | name=self._name, inst=self._inst) |
| 833 | |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 834 | def __getitem__(self, params): |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 835 | if not isinstance(params, tuple) or len(params) != 2: |
| 836 | raise TypeError("Callable must be used as " |
| 837 | "Callable[[arg, ...], result].") |
| 838 | args, result = params |
| 839 | if args is Ellipsis: |
| 840 | params = (Ellipsis, result) |
| 841 | else: |
| 842 | if not isinstance(args, list): |
| 843 | raise TypeError(f"Callable[args, result]: args must be a list." |
| 844 | f" Got {args}") |
| 845 | params = (tuple(args), result) |
| 846 | return self.__getitem_inner__(params) |
| 847 | |
| 848 | @_tp_cache |
| 849 | def __getitem_inner__(self, params): |
Serhiy Storchaka | c1c7d8e | 2020-05-07 04:09:33 +0300 | [diff] [blame] | 850 | args, result = params |
| 851 | msg = "Callable[args, result]: result must be a type." |
| 852 | result = _type_check(result, msg) |
| 853 | if args is Ellipsis: |
| 854 | return self.copy_with((_TypingEllipsis, result)) |
| 855 | msg = "Callable[[arg, ...], result]: each arg must be a type." |
| 856 | args = tuple(_type_check(arg, msg) for arg in args) |
| 857 | params = args + (result,) |
| 858 | return self.copy_with(params) |
| 859 | |
| 860 | |
| 861 | class _TupleType(_SpecialGenericAlias, _root=True): |
| 862 | @_tp_cache |
| 863 | def __getitem__(self, params): |
| 864 | if params == (): |
| 865 | return self.copy_with((_TypingEmpty,)) |
| 866 | if not isinstance(params, tuple): |
| 867 | params = (params,) |
| 868 | if len(params) == 2 and params[1] is ...: |
| 869 | msg = "Tuple[t, ...]: t must be a type." |
| 870 | p = _type_check(params[0], msg) |
| 871 | return self.copy_with((p, _TypingEllipsis)) |
| 872 | msg = "Tuple[t0, t1, ...]: each t must be a type." |
| 873 | params = tuple(_type_check(p, msg) for p in params) |
| 874 | return self.copy_with(params) |
| 875 | |
| 876 | |
| 877 | class _UnionGenericAlias(_GenericAlias, _root=True): |
| 878 | def copy_with(self, params): |
| 879 | return Union[params] |
| 880 | |
| 881 | def __eq__(self, other): |
| 882 | if not isinstance(other, _UnionGenericAlias): |
| 883 | return NotImplemented |
| 884 | return set(self.__args__) == set(other.__args__) |
| 885 | |
| 886 | def __hash__(self): |
| 887 | return hash(frozenset(self.__args__)) |
| 888 | |
| 889 | def __repr__(self): |
| 890 | args = self.__args__ |
| 891 | if len(args) == 2: |
| 892 | if args[0] is type(None): |
| 893 | return f'typing.Optional[{_type_repr(args[1])}]' |
| 894 | elif args[1] is type(None): |
| 895 | return f'typing.Optional[{_type_repr(args[0])}]' |
| 896 | return super().__repr__() |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 897 | |
Maggie Moss | 1b4552c | 2020-09-09 13:23:24 -0700 | [diff] [blame] | 898 | def __instancecheck__(self, obj): |
| 899 | return self.__subclasscheck__(type(obj)) |
| 900 | |
| 901 | def __subclasscheck__(self, cls): |
| 902 | for arg in self.__args__: |
| 903 | if issubclass(cls, arg): |
| 904 | return True |
| 905 | |
| 906 | |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 907 | |
| 908 | class Generic: |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 909 | """Abstract base class for generic types. |
| 910 | |
Guido van Rossum | b24569a | 2016-11-20 18:01:29 -0800 | [diff] [blame] | 911 | A generic type is typically declared by inheriting from |
| 912 | this class parameterized with one or more type variables. |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 913 | For example, a generic mapping type might be defined as:: |
| 914 | |
| 915 | class Mapping(Generic[KT, VT]): |
| 916 | def __getitem__(self, key: KT) -> VT: |
| 917 | ... |
| 918 | # Etc. |
| 919 | |
| 920 | This class can then be used as follows:: |
| 921 | |
Guido van Rossum | bd5b9a0 | 2016-04-05 08:28:52 -0700 | [diff] [blame] | 922 | def lookup_name(mapping: Mapping[KT, VT], key: KT, default: VT) -> VT: |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 923 | try: |
| 924 | return mapping[key] |
| 925 | except KeyError: |
| 926 | return default |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 927 | """ |
Guido van Rossum | d70fe63 | 2015-08-05 12:11:06 +0200 | [diff] [blame] | 928 | __slots__ = () |
Ivan Levkivskyi | 74d7f76 | 2019-05-28 08:40:15 +0100 | [diff] [blame] | 929 | _is_protocol = False |
Guido van Rossum | d70fe63 | 2015-08-05 12:11:06 +0200 | [diff] [blame] | 930 | |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 931 | @_tp_cache |
| 932 | def __class_getitem__(cls, params): |
| 933 | if not isinstance(params, tuple): |
| 934 | params = (params,) |
| 935 | if not params and cls is not Tuple: |
| 936 | raise TypeError( |
| 937 | f"Parameter list to {cls.__qualname__}[...] cannot be empty") |
| 938 | msg = "Parameters to generic types must be types." |
| 939 | params = tuple(_type_check(p, msg) for p in params) |
Ivan Levkivskyi | 74d7f76 | 2019-05-28 08:40:15 +0100 | [diff] [blame] | 940 | if cls in (Generic, Protocol): |
| 941 | # Generic and Protocol can only be subscripted with unique type variables. |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 942 | if not all(isinstance(p, TypeVar) for p in params): |
| 943 | raise TypeError( |
Ivan Levkivskyi | 74d7f76 | 2019-05-28 08:40:15 +0100 | [diff] [blame] | 944 | f"Parameters to {cls.__name__}[...] must all be type variables") |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 945 | if len(set(params)) != len(params): |
| 946 | raise TypeError( |
Ivan Levkivskyi | 74d7f76 | 2019-05-28 08:40:15 +0100 | [diff] [blame] | 947 | f"Parameters to {cls.__name__}[...] must all be unique") |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 948 | else: |
| 949 | # Subscripting a regular Generic subclass. |
Serhiy Storchaka | fcb2856 | 2020-05-10 11:53:16 +0300 | [diff] [blame] | 950 | _check_generic(cls, params, len(cls.__parameters__)) |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 951 | return _GenericAlias(cls, params) |
| 952 | |
| 953 | def __init_subclass__(cls, *args, **kwargs): |
Ivan Levkivskyi | ee566fe | 2018-04-04 17:00:15 +0100 | [diff] [blame] | 954 | super().__init_subclass__(*args, **kwargs) |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 955 | tvars = [] |
| 956 | if '__orig_bases__' in cls.__dict__: |
| 957 | error = Generic in cls.__orig_bases__ |
| 958 | else: |
Ivan Levkivskyi | 74d7f76 | 2019-05-28 08:40:15 +0100 | [diff] [blame] | 959 | error = Generic in cls.__bases__ and cls.__name__ != 'Protocol' |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 960 | if error: |
| 961 | raise TypeError("Cannot inherit from plain Generic") |
| 962 | if '__orig_bases__' in cls.__dict__: |
| 963 | tvars = _collect_type_vars(cls.__orig_bases__) |
| 964 | # Look for Generic[T1, ..., Tn]. |
| 965 | # If found, tvars must be a subset of it. |
| 966 | # If not found, tvars is it. |
| 967 | # Also check for and reject plain Generic, |
| 968 | # and reject multiple Generic[...]. |
| 969 | gvars = None |
| 970 | for base in cls.__orig_bases__: |
| 971 | if (isinstance(base, _GenericAlias) and |
| 972 | base.__origin__ is Generic): |
| 973 | if gvars is not None: |
| 974 | raise TypeError( |
| 975 | "Cannot inherit from Generic[...] multiple types.") |
| 976 | gvars = base.__parameters__ |
Ivan Levkivskyi | 74d7f76 | 2019-05-28 08:40:15 +0100 | [diff] [blame] | 977 | if gvars is not None: |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 978 | tvarset = set(tvars) |
| 979 | gvarset = set(gvars) |
| 980 | if not tvarset <= gvarset: |
| 981 | s_vars = ', '.join(str(t) for t in tvars if t not in gvarset) |
| 982 | s_args = ', '.join(str(g) for g in gvars) |
| 983 | raise TypeError(f"Some type variables ({s_vars}) are" |
| 984 | f" not listed in Generic[{s_args}]") |
| 985 | tvars = gvars |
| 986 | cls.__parameters__ = tuple(tvars) |
Guido van Rossum | 5fc25a8 | 2016-10-29 08:54:56 -0700 | [diff] [blame] | 987 | |
| 988 | |
| 989 | class _TypingEmpty: |
Guido van Rossum | b24569a | 2016-11-20 18:01:29 -0800 | [diff] [blame] | 990 | """Internal placeholder for () or []. Used by TupleMeta and CallableMeta |
| 991 | to allow empty list/tuple in specific places, without allowing them |
Guido van Rossum | 5fc25a8 | 2016-10-29 08:54:56 -0700 | [diff] [blame] | 992 | to sneak in where prohibited. |
| 993 | """ |
| 994 | |
| 995 | |
| 996 | class _TypingEllipsis: |
Guido van Rossum | b24569a | 2016-11-20 18:01:29 -0800 | [diff] [blame] | 997 | """Internal placeholder for ... (ellipsis).""" |
Guido van Rossum | 5fc25a8 | 2016-10-29 08:54:56 -0700 | [diff] [blame] | 998 | |
| 999 | |
Ivan Levkivskyi | 74d7f76 | 2019-05-28 08:40:15 +0100 | [diff] [blame] | 1000 | _TYPING_INTERNALS = ['__parameters__', '__orig_bases__', '__orig_class__', |
| 1001 | '_is_protocol', '_is_runtime_protocol'] |
| 1002 | |
| 1003 | _SPECIAL_NAMES = ['__abstractmethods__', '__annotations__', '__dict__', '__doc__', |
| 1004 | '__init__', '__module__', '__new__', '__slots__', |
Guido van Rossum | 48b069a | 2020-04-07 09:50:06 -0700 | [diff] [blame] | 1005 | '__subclasshook__', '__weakref__', '__class_getitem__'] |
Ivan Levkivskyi | 74d7f76 | 2019-05-28 08:40:15 +0100 | [diff] [blame] | 1006 | |
| 1007 | # These special attributes will be not collected as protocol members. |
| 1008 | EXCLUDED_ATTRIBUTES = _TYPING_INTERNALS + _SPECIAL_NAMES + ['_MutableMapping__marker'] |
| 1009 | |
| 1010 | |
| 1011 | def _get_protocol_attrs(cls): |
| 1012 | """Collect protocol members from a protocol class objects. |
| 1013 | |
| 1014 | This includes names actually defined in the class dictionary, as well |
| 1015 | as names that appear in annotations. Special names (above) are skipped. |
| 1016 | """ |
| 1017 | attrs = set() |
| 1018 | for base in cls.__mro__[:-1]: # without object |
| 1019 | if base.__name__ in ('Protocol', 'Generic'): |
| 1020 | continue |
| 1021 | annotations = getattr(base, '__annotations__', {}) |
| 1022 | for attr in list(base.__dict__.keys()) + list(annotations.keys()): |
| 1023 | if not attr.startswith('_abc_') and attr not in EXCLUDED_ATTRIBUTES: |
| 1024 | attrs.add(attr) |
| 1025 | return attrs |
| 1026 | |
| 1027 | |
| 1028 | def _is_callable_members_only(cls): |
| 1029 | # PEP 544 prohibits using issubclass() with protocols that have non-method members. |
| 1030 | return all(callable(getattr(cls, attr, None)) for attr in _get_protocol_attrs(cls)) |
| 1031 | |
| 1032 | |
| 1033 | def _no_init(self, *args, **kwargs): |
| 1034 | if type(self)._is_protocol: |
| 1035 | raise TypeError('Protocols cannot be instantiated') |
| 1036 | |
| 1037 | |
| 1038 | def _allow_reckless_class_cheks(): |
Nickolena Fisher | cfaf4c0 | 2020-04-26 12:49:11 -0500 | [diff] [blame] | 1039 | """Allow instance and class checks for special stdlib modules. |
Ivan Levkivskyi | 74d7f76 | 2019-05-28 08:40:15 +0100 | [diff] [blame] | 1040 | |
| 1041 | The abc and functools modules indiscriminately call isinstance() and |
| 1042 | issubclass() on the whole MRO of a user class, which may contain protocols. |
| 1043 | """ |
| 1044 | try: |
| 1045 | return sys._getframe(3).f_globals['__name__'] in ['abc', 'functools'] |
| 1046 | except (AttributeError, ValueError): # For platforms without _getframe(). |
| 1047 | return True |
| 1048 | |
| 1049 | |
Victor Stinner | 0e95bbf | 2020-08-12 10:53:12 +0200 | [diff] [blame] | 1050 | _PROTO_ALLOWLIST = { |
Divij Rajkumar | 692a0dc | 2019-09-12 11:13:51 +0100 | [diff] [blame] | 1051 | 'collections.abc': [ |
| 1052 | 'Callable', 'Awaitable', 'Iterable', 'Iterator', 'AsyncIterable', |
| 1053 | 'Hashable', 'Sized', 'Container', 'Collection', 'Reversible', |
| 1054 | ], |
| 1055 | 'contextlib': ['AbstractContextManager', 'AbstractAsyncContextManager'], |
| 1056 | } |
Ivan Levkivskyi | 74d7f76 | 2019-05-28 08:40:15 +0100 | [diff] [blame] | 1057 | |
| 1058 | |
| 1059 | class _ProtocolMeta(ABCMeta): |
| 1060 | # This metaclass is really unfortunate and exists only because of |
| 1061 | # the lack of __instancehook__. |
| 1062 | def __instancecheck__(cls, instance): |
| 1063 | # We need this method for situations where attributes are |
| 1064 | # assigned in __init__. |
| 1065 | if ((not getattr(cls, '_is_protocol', False) or |
| 1066 | _is_callable_members_only(cls)) and |
| 1067 | issubclass(instance.__class__, cls)): |
| 1068 | return True |
| 1069 | if cls._is_protocol: |
| 1070 | if all(hasattr(instance, attr) and |
| 1071 | # All *methods* can be blocked by setting them to None. |
| 1072 | (not callable(getattr(cls, attr, None)) or |
| 1073 | getattr(instance, attr) is not None) |
| 1074 | for attr in _get_protocol_attrs(cls)): |
| 1075 | return True |
| 1076 | return super().__instancecheck__(instance) |
| 1077 | |
| 1078 | |
| 1079 | class Protocol(Generic, metaclass=_ProtocolMeta): |
| 1080 | """Base class for protocol classes. |
| 1081 | |
| 1082 | Protocol classes are defined as:: |
| 1083 | |
| 1084 | class Proto(Protocol): |
| 1085 | def meth(self) -> int: |
| 1086 | ... |
| 1087 | |
| 1088 | Such classes are primarily used with static type checkers that recognize |
| 1089 | structural subtyping (static duck-typing), for example:: |
| 1090 | |
| 1091 | class C: |
| 1092 | def meth(self) -> int: |
| 1093 | return 0 |
| 1094 | |
| 1095 | def func(x: Proto) -> int: |
| 1096 | return x.meth() |
| 1097 | |
| 1098 | func(C()) # Passes static type check |
| 1099 | |
| 1100 | See PEP 544 for details. Protocol classes decorated with |
| 1101 | @typing.runtime_checkable act as simple-minded runtime protocols that check |
| 1102 | only the presence of given attributes, ignoring their type signatures. |
| 1103 | Protocol classes can be generic, they are defined as:: |
| 1104 | |
| 1105 | class GenProto(Protocol[T]): |
| 1106 | def meth(self) -> T: |
| 1107 | ... |
| 1108 | """ |
| 1109 | __slots__ = () |
| 1110 | _is_protocol = True |
| 1111 | _is_runtime_protocol = False |
| 1112 | |
| 1113 | def __init_subclass__(cls, *args, **kwargs): |
| 1114 | super().__init_subclass__(*args, **kwargs) |
| 1115 | |
| 1116 | # Determine if this is a protocol or a concrete subclass. |
| 1117 | if not cls.__dict__.get('_is_protocol', False): |
| 1118 | cls._is_protocol = any(b is Protocol for b in cls.__bases__) |
| 1119 | |
| 1120 | # Set (or override) the protocol subclass hook. |
| 1121 | def _proto_hook(other): |
| 1122 | if not cls.__dict__.get('_is_protocol', False): |
| 1123 | return NotImplemented |
| 1124 | |
| 1125 | # First, perform various sanity checks. |
| 1126 | if not getattr(cls, '_is_runtime_protocol', False): |
| 1127 | if _allow_reckless_class_cheks(): |
| 1128 | return NotImplemented |
| 1129 | raise TypeError("Instance and class checks can only be used with" |
| 1130 | " @runtime_checkable protocols") |
| 1131 | if not _is_callable_members_only(cls): |
| 1132 | if _allow_reckless_class_cheks(): |
| 1133 | return NotImplemented |
| 1134 | raise TypeError("Protocols with non-method members" |
| 1135 | " don't support issubclass()") |
| 1136 | if not isinstance(other, type): |
| 1137 | # Same error message as for issubclass(1, int). |
| 1138 | raise TypeError('issubclass() arg 1 must be a class') |
| 1139 | |
| 1140 | # Second, perform the actual structural compatibility check. |
| 1141 | for attr in _get_protocol_attrs(cls): |
| 1142 | for base in other.__mro__: |
| 1143 | # Check if the members appears in the class dictionary... |
| 1144 | if attr in base.__dict__: |
| 1145 | if base.__dict__[attr] is None: |
| 1146 | return NotImplemented |
| 1147 | break |
| 1148 | |
| 1149 | # ...or in annotations, if it is a sub-protocol. |
| 1150 | annotations = getattr(base, '__annotations__', {}) |
| 1151 | if (isinstance(annotations, collections.abc.Mapping) and |
| 1152 | attr in annotations and |
| 1153 | issubclass(other, Generic) and other._is_protocol): |
| 1154 | break |
| 1155 | else: |
| 1156 | return NotImplemented |
| 1157 | return True |
| 1158 | |
| 1159 | if '__subclasshook__' not in cls.__dict__: |
| 1160 | cls.__subclasshook__ = _proto_hook |
| 1161 | |
| 1162 | # We have nothing more to do for non-protocols... |
| 1163 | if not cls._is_protocol: |
| 1164 | return |
| 1165 | |
| 1166 | # ... otherwise check consistency of bases, and prohibit instantiation. |
| 1167 | for base in cls.__bases__: |
| 1168 | if not (base in (object, Generic) or |
Victor Stinner | 0e95bbf | 2020-08-12 10:53:12 +0200 | [diff] [blame] | 1169 | base.__module__ in _PROTO_ALLOWLIST and |
| 1170 | base.__name__ in _PROTO_ALLOWLIST[base.__module__] or |
Ivan Levkivskyi | 74d7f76 | 2019-05-28 08:40:15 +0100 | [diff] [blame] | 1171 | issubclass(base, Generic) and base._is_protocol): |
| 1172 | raise TypeError('Protocols can only inherit from other' |
| 1173 | ' protocols, got %r' % base) |
| 1174 | cls.__init__ = _no_init |
| 1175 | |
| 1176 | |
Jakub Stasiak | cf5b109 | 2020-02-05 02:10:19 +0100 | [diff] [blame] | 1177 | class _AnnotatedAlias(_GenericAlias, _root=True): |
| 1178 | """Runtime representation of an annotated type. |
| 1179 | |
| 1180 | At its core 'Annotated[t, dec1, dec2, ...]' is an alias for the type 't' |
| 1181 | with extra annotations. The alias behaves like a normal typing alias, |
| 1182 | instantiating is the same as instantiating the underlying type, binding |
| 1183 | it to types is also the same. |
| 1184 | """ |
| 1185 | def __init__(self, origin, metadata): |
| 1186 | if isinstance(origin, _AnnotatedAlias): |
| 1187 | metadata = origin.__metadata__ + metadata |
| 1188 | origin = origin.__origin__ |
| 1189 | super().__init__(origin, origin) |
| 1190 | self.__metadata__ = metadata |
| 1191 | |
| 1192 | def copy_with(self, params): |
| 1193 | assert len(params) == 1 |
| 1194 | new_type = params[0] |
| 1195 | return _AnnotatedAlias(new_type, self.__metadata__) |
| 1196 | |
| 1197 | def __repr__(self): |
| 1198 | return "typing.Annotated[{}, {}]".format( |
| 1199 | _type_repr(self.__origin__), |
| 1200 | ", ".join(repr(a) for a in self.__metadata__) |
| 1201 | ) |
| 1202 | |
| 1203 | def __reduce__(self): |
| 1204 | return operator.getitem, ( |
| 1205 | Annotated, (self.__origin__,) + self.__metadata__ |
| 1206 | ) |
| 1207 | |
| 1208 | def __eq__(self, other): |
| 1209 | if not isinstance(other, _AnnotatedAlias): |
| 1210 | return NotImplemented |
Serhiy Storchaka | c1c7d8e | 2020-05-07 04:09:33 +0300 | [diff] [blame] | 1211 | return (self.__origin__ == other.__origin__ |
| 1212 | and self.__metadata__ == other.__metadata__) |
Jakub Stasiak | cf5b109 | 2020-02-05 02:10:19 +0100 | [diff] [blame] | 1213 | |
| 1214 | def __hash__(self): |
| 1215 | return hash((self.__origin__, self.__metadata__)) |
| 1216 | |
| 1217 | |
| 1218 | class Annotated: |
| 1219 | """Add context specific metadata to a type. |
| 1220 | |
| 1221 | Example: Annotated[int, runtime_check.Unsigned] indicates to the |
| 1222 | hypothetical runtime_check module that this type is an unsigned int. |
| 1223 | Every other consumer of this type can ignore this metadata and treat |
| 1224 | this type as int. |
| 1225 | |
| 1226 | The first argument to Annotated must be a valid type. |
| 1227 | |
| 1228 | Details: |
| 1229 | |
| 1230 | - It's an error to call `Annotated` with less than two arguments. |
| 1231 | - Nested Annotated are flattened:: |
| 1232 | |
| 1233 | Annotated[Annotated[T, Ann1, Ann2], Ann3] == Annotated[T, Ann1, Ann2, Ann3] |
| 1234 | |
| 1235 | - Instantiating an annotated type is equivalent to instantiating the |
| 1236 | underlying type:: |
| 1237 | |
| 1238 | Annotated[C, Ann1](5) == C(5) |
| 1239 | |
| 1240 | - Annotated can be used as a generic type alias:: |
| 1241 | |
| 1242 | Optimized = Annotated[T, runtime.Optimize()] |
| 1243 | Optimized[int] == Annotated[int, runtime.Optimize()] |
| 1244 | |
| 1245 | OptimizedList = Annotated[List[T], runtime.Optimize()] |
| 1246 | OptimizedList[int] == Annotated[List[int], runtime.Optimize()] |
| 1247 | """ |
| 1248 | |
| 1249 | __slots__ = () |
| 1250 | |
| 1251 | def __new__(cls, *args, **kwargs): |
| 1252 | raise TypeError("Type Annotated cannot be instantiated.") |
| 1253 | |
| 1254 | @_tp_cache |
| 1255 | def __class_getitem__(cls, params): |
| 1256 | if not isinstance(params, tuple) or len(params) < 2: |
| 1257 | raise TypeError("Annotated[...] should be used " |
| 1258 | "with at least two arguments (a type and an " |
| 1259 | "annotation).") |
| 1260 | msg = "Annotated[t, ...]: t must be a type." |
| 1261 | origin = _type_check(params[0], msg) |
| 1262 | metadata = tuple(params[1:]) |
| 1263 | return _AnnotatedAlias(origin, metadata) |
| 1264 | |
| 1265 | def __init_subclass__(cls, *args, **kwargs): |
| 1266 | raise TypeError( |
| 1267 | "Cannot subclass {}.Annotated".format(cls.__module__) |
| 1268 | ) |
| 1269 | |
| 1270 | |
Ivan Levkivskyi | 74d7f76 | 2019-05-28 08:40:15 +0100 | [diff] [blame] | 1271 | def runtime_checkable(cls): |
| 1272 | """Mark a protocol class as a runtime protocol. |
| 1273 | |
| 1274 | Such protocol can be used with isinstance() and issubclass(). |
| 1275 | Raise TypeError if applied to a non-protocol class. |
| 1276 | This allows a simple-minded structural check very similar to |
| 1277 | one trick ponies in collections.abc such as Iterable. |
| 1278 | For example:: |
| 1279 | |
| 1280 | @runtime_checkable |
| 1281 | class Closable(Protocol): |
| 1282 | def close(self): ... |
| 1283 | |
| 1284 | assert isinstance(open('/some/file'), Closable) |
| 1285 | |
| 1286 | Warning: this will check only the presence of the required methods, |
| 1287 | not their type signatures! |
| 1288 | """ |
| 1289 | if not issubclass(cls, Generic) or not cls._is_protocol: |
| 1290 | raise TypeError('@runtime_checkable can be only applied to protocol classes,' |
| 1291 | ' got %r' % cls) |
| 1292 | cls._is_runtime_protocol = True |
| 1293 | return cls |
| 1294 | |
| 1295 | |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1296 | def cast(typ, val): |
| 1297 | """Cast a value to a type. |
| 1298 | |
| 1299 | This returns the value unchanged. To the type checker this |
| 1300 | signals that the return value has the designated type, but at |
| 1301 | runtime we intentionally don't check anything (we want this |
| 1302 | to be as fast as possible). |
| 1303 | """ |
| 1304 | return val |
| 1305 | |
| 1306 | |
| 1307 | def _get_defaults(func): |
| 1308 | """Internal helper to extract the default arguments, by name.""" |
Guido van Rossum | 991d14f | 2016-11-09 13:12:51 -0800 | [diff] [blame] | 1309 | try: |
| 1310 | code = func.__code__ |
| 1311 | except AttributeError: |
| 1312 | # Some built-in functions don't have __code__, __defaults__, etc. |
| 1313 | return {} |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1314 | pos_count = code.co_argcount |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1315 | arg_names = code.co_varnames |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1316 | arg_names = arg_names[:pos_count] |
| 1317 | defaults = func.__defaults__ or () |
| 1318 | kwdefaults = func.__kwdefaults__ |
| 1319 | res = dict(kwdefaults) if kwdefaults else {} |
| 1320 | pos_offset = pos_count - len(defaults) |
| 1321 | for name, value in zip(arg_names[pos_offset:], defaults): |
| 1322 | assert name not in res |
| 1323 | res[name] = value |
| 1324 | return res |
| 1325 | |
| 1326 | |
Ivan Levkivskyi | b692dc8 | 2017-02-13 22:50:14 +0100 | [diff] [blame] | 1327 | _allowed_types = (types.FunctionType, types.BuiltinFunctionType, |
| 1328 | types.MethodType, types.ModuleType, |
Ivan Levkivskyi | f06e021 | 2017-05-02 19:14:07 +0200 | [diff] [blame] | 1329 | WrapperDescriptorType, MethodWrapperType, MethodDescriptorType) |
Ivan Levkivskyi | b692dc8 | 2017-02-13 22:50:14 +0100 | [diff] [blame] | 1330 | |
| 1331 | |
Jakub Stasiak | cf5b109 | 2020-02-05 02:10:19 +0100 | [diff] [blame] | 1332 | def get_type_hints(obj, globalns=None, localns=None, include_extras=False): |
Guido van Rossum | 991d14f | 2016-11-09 13:12:51 -0800 | [diff] [blame] | 1333 | """Return type hints for an object. |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1334 | |
Guido van Rossum | 991d14f | 2016-11-09 13:12:51 -0800 | [diff] [blame] | 1335 | This is often the same as obj.__annotations__, but it handles |
Jakub Stasiak | cf5b109 | 2020-02-05 02:10:19 +0100 | [diff] [blame] | 1336 | forward references encoded as string literals, adds Optional[t] if a |
| 1337 | default value equal to None is set and recursively replaces all |
| 1338 | 'Annotated[T, ...]' with 'T' (unless 'include_extras=True'). |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1339 | |
Guido van Rossum | 991d14f | 2016-11-09 13:12:51 -0800 | [diff] [blame] | 1340 | The argument may be a module, class, method, or function. The annotations |
| 1341 | are returned as a dictionary. For classes, annotations include also |
| 1342 | inherited members. |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1343 | |
Guido van Rossum | 991d14f | 2016-11-09 13:12:51 -0800 | [diff] [blame] | 1344 | TypeError is raised if the argument is not of a type that can contain |
| 1345 | annotations, and an empty dictionary is returned if no annotations are |
| 1346 | present. |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1347 | |
Guido van Rossum | 991d14f | 2016-11-09 13:12:51 -0800 | [diff] [blame] | 1348 | BEWARE -- the behavior of globalns and localns is counterintuitive |
| 1349 | (unless you are familiar with how eval() and exec() work). The |
| 1350 | search order is locals first, then globals. |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1351 | |
Guido van Rossum | 991d14f | 2016-11-09 13:12:51 -0800 | [diff] [blame] | 1352 | - If no dict arguments are passed, an attempt is made to use the |
Łukasz Langa | f350a26 | 2017-09-14 14:33:00 -0400 | [diff] [blame] | 1353 | globals from obj (or the respective module's globals for classes), |
| 1354 | and these are also used as the locals. If the object does not appear |
| 1355 | to have globals, an empty dictionary is used. |
Guido van Rossum | 0a6976d | 2016-09-11 15:34:56 -0700 | [diff] [blame] | 1356 | |
Guido van Rossum | 991d14f | 2016-11-09 13:12:51 -0800 | [diff] [blame] | 1357 | - If one dict argument is passed, it is used for both globals and |
| 1358 | locals. |
Guido van Rossum | 0a6976d | 2016-09-11 15:34:56 -0700 | [diff] [blame] | 1359 | |
Guido van Rossum | 991d14f | 2016-11-09 13:12:51 -0800 | [diff] [blame] | 1360 | - If two dict arguments are passed, they specify globals and |
| 1361 | locals, respectively. |
| 1362 | """ |
Guido van Rossum | 0a6976d | 2016-09-11 15:34:56 -0700 | [diff] [blame] | 1363 | |
Guido van Rossum | 991d14f | 2016-11-09 13:12:51 -0800 | [diff] [blame] | 1364 | if getattr(obj, '__no_type_check__', None): |
| 1365 | return {} |
Guido van Rossum | 991d14f | 2016-11-09 13:12:51 -0800 | [diff] [blame] | 1366 | # Classes require a special treatment. |
| 1367 | if isinstance(obj, type): |
| 1368 | hints = {} |
| 1369 | for base in reversed(obj.__mro__): |
Łukasz Langa | f350a26 | 2017-09-14 14:33:00 -0400 | [diff] [blame] | 1370 | if globalns is None: |
| 1371 | base_globals = sys.modules[base.__module__].__dict__ |
| 1372 | else: |
| 1373 | base_globals = globalns |
Guido van Rossum | 991d14f | 2016-11-09 13:12:51 -0800 | [diff] [blame] | 1374 | ann = base.__dict__.get('__annotations__', {}) |
| 1375 | for name, value in ann.items(): |
| 1376 | if value is None: |
| 1377 | value = type(None) |
| 1378 | if isinstance(value, str): |
Nina Zakharenko | 0e61dff | 2018-05-22 20:32:10 -0700 | [diff] [blame] | 1379 | value = ForwardRef(value, is_argument=False) |
Łukasz Langa | f350a26 | 2017-09-14 14:33:00 -0400 | [diff] [blame] | 1380 | value = _eval_type(value, base_globals, localns) |
Guido van Rossum | 991d14f | 2016-11-09 13:12:51 -0800 | [diff] [blame] | 1381 | hints[name] = value |
Jakub Stasiak | cf5b109 | 2020-02-05 02:10:19 +0100 | [diff] [blame] | 1382 | return hints if include_extras else {k: _strip_annotations(t) for k, t in hints.items()} |
Łukasz Langa | f350a26 | 2017-09-14 14:33:00 -0400 | [diff] [blame] | 1383 | |
| 1384 | if globalns is None: |
| 1385 | if isinstance(obj, types.ModuleType): |
| 1386 | globalns = obj.__dict__ |
| 1387 | else: |
benedwards14 | 0aca3a3 | 2019-11-21 17:24:58 +0000 | [diff] [blame] | 1388 | nsobj = obj |
| 1389 | # Find globalns for the unwrapped object. |
| 1390 | while hasattr(nsobj, '__wrapped__'): |
| 1391 | nsobj = nsobj.__wrapped__ |
| 1392 | globalns = getattr(nsobj, '__globals__', {}) |
Łukasz Langa | f350a26 | 2017-09-14 14:33:00 -0400 | [diff] [blame] | 1393 | if localns is None: |
| 1394 | localns = globalns |
| 1395 | elif localns is None: |
| 1396 | localns = globalns |
Guido van Rossum | 991d14f | 2016-11-09 13:12:51 -0800 | [diff] [blame] | 1397 | hints = getattr(obj, '__annotations__', None) |
| 1398 | if hints is None: |
| 1399 | # Return empty annotations for something that _could_ have them. |
Ivan Levkivskyi | b692dc8 | 2017-02-13 22:50:14 +0100 | [diff] [blame] | 1400 | if isinstance(obj, _allowed_types): |
Guido van Rossum | 0a6976d | 2016-09-11 15:34:56 -0700 | [diff] [blame] | 1401 | return {} |
Guido van Rossum | 991d14f | 2016-11-09 13:12:51 -0800 | [diff] [blame] | 1402 | else: |
| 1403 | raise TypeError('{!r} is not a module, class, method, ' |
| 1404 | 'or function.'.format(obj)) |
| 1405 | defaults = _get_defaults(obj) |
| 1406 | hints = dict(hints) |
| 1407 | for name, value in hints.items(): |
| 1408 | if value is None: |
| 1409 | value = type(None) |
| 1410 | if isinstance(value, str): |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 1411 | value = ForwardRef(value) |
Guido van Rossum | 991d14f | 2016-11-09 13:12:51 -0800 | [diff] [blame] | 1412 | value = _eval_type(value, globalns, localns) |
| 1413 | if name in defaults and defaults[name] is None: |
| 1414 | value = Optional[value] |
| 1415 | hints[name] = value |
Jakub Stasiak | cf5b109 | 2020-02-05 02:10:19 +0100 | [diff] [blame] | 1416 | return hints if include_extras else {k: _strip_annotations(t) for k, t in hints.items()} |
| 1417 | |
| 1418 | |
| 1419 | def _strip_annotations(t): |
| 1420 | """Strips the annotations from a given type. |
| 1421 | """ |
| 1422 | if isinstance(t, _AnnotatedAlias): |
| 1423 | return _strip_annotations(t.__origin__) |
| 1424 | if isinstance(t, _GenericAlias): |
| 1425 | stripped_args = tuple(_strip_annotations(a) for a in t.__args__) |
| 1426 | if stripped_args == t.__args__: |
| 1427 | return t |
Serhiy Storchaka | c1c7d8e | 2020-05-07 04:09:33 +0300 | [diff] [blame] | 1428 | return t.copy_with(stripped_args) |
Serhiy Storchaka | 68b352a | 2020-04-26 21:21:08 +0300 | [diff] [blame] | 1429 | if isinstance(t, GenericAlias): |
| 1430 | stripped_args = tuple(_strip_annotations(a) for a in t.__args__) |
| 1431 | if stripped_args == t.__args__: |
| 1432 | return t |
| 1433 | return GenericAlias(t.__origin__, stripped_args) |
Jakub Stasiak | cf5b109 | 2020-02-05 02:10:19 +0100 | [diff] [blame] | 1434 | return t |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1435 | |
| 1436 | |
Ivan Levkivskyi | 4c23aff | 2019-05-31 00:10:07 +0100 | [diff] [blame] | 1437 | def get_origin(tp): |
| 1438 | """Get the unsubscripted version of a type. |
| 1439 | |
Jakub Stasiak | 38aaaaa | 2020-02-07 02:15:12 +0100 | [diff] [blame] | 1440 | This supports generic types, Callable, Tuple, Union, Literal, Final, ClassVar |
| 1441 | and Annotated. Return None for unsupported types. Examples:: |
Ivan Levkivskyi | 4c23aff | 2019-05-31 00:10:07 +0100 | [diff] [blame] | 1442 | |
| 1443 | get_origin(Literal[42]) is Literal |
| 1444 | get_origin(int) is None |
| 1445 | get_origin(ClassVar[int]) is ClassVar |
| 1446 | get_origin(Generic) is Generic |
| 1447 | get_origin(Generic[T]) is Generic |
| 1448 | get_origin(Union[T, int]) is Union |
| 1449 | get_origin(List[Tuple[T, T]][int]) == list |
| 1450 | """ |
Jakub Stasiak | cf5b109 | 2020-02-05 02:10:19 +0100 | [diff] [blame] | 1451 | if isinstance(tp, _AnnotatedAlias): |
| 1452 | return Annotated |
Serhiy Storchaka | c1c7d8e | 2020-05-07 04:09:33 +0300 | [diff] [blame] | 1453 | if isinstance(tp, (_BaseGenericAlias, GenericAlias)): |
Ivan Levkivskyi | 4c23aff | 2019-05-31 00:10:07 +0100 | [diff] [blame] | 1454 | return tp.__origin__ |
| 1455 | if tp is Generic: |
| 1456 | return Generic |
| 1457 | return None |
| 1458 | |
| 1459 | |
| 1460 | def get_args(tp): |
| 1461 | """Get type arguments with all substitutions performed. |
| 1462 | |
| 1463 | For unions, basic simplifications used by Union constructor are performed. |
| 1464 | Examples:: |
| 1465 | get_args(Dict[str, int]) == (str, int) |
| 1466 | get_args(int) == () |
| 1467 | get_args(Union[int, Union[T, int], str][int]) == (int, str) |
| 1468 | get_args(Union[int, Tuple[T, int]][str]) == (int, Tuple[str, int]) |
| 1469 | get_args(Callable[[], T][int]) == ([], int) |
| 1470 | """ |
Jakub Stasiak | cf5b109 | 2020-02-05 02:10:19 +0100 | [diff] [blame] | 1471 | if isinstance(tp, _AnnotatedAlias): |
| 1472 | return (tp.__origin__,) + tp.__metadata__ |
Serhiy Storchaka | c1c7d8e | 2020-05-07 04:09:33 +0300 | [diff] [blame] | 1473 | if isinstance(tp, _GenericAlias): |
Ivan Levkivskyi | 4c23aff | 2019-05-31 00:10:07 +0100 | [diff] [blame] | 1474 | res = tp.__args__ |
Serhiy Storchaka | 68b352a | 2020-04-26 21:21:08 +0300 | [diff] [blame] | 1475 | if tp.__origin__ is collections.abc.Callable and res[0] is not Ellipsis: |
Ivan Levkivskyi | 4c23aff | 2019-05-31 00:10:07 +0100 | [diff] [blame] | 1476 | res = (list(res[:-1]), res[-1]) |
| 1477 | return res |
Serhiy Storchaka | 6292be7 | 2020-04-27 10:27:21 +0300 | [diff] [blame] | 1478 | if isinstance(tp, GenericAlias): |
| 1479 | return tp.__args__ |
Ivan Levkivskyi | 4c23aff | 2019-05-31 00:10:07 +0100 | [diff] [blame] | 1480 | return () |
| 1481 | |
| 1482 | |
Patrick Reader | 0705ec8 | 2020-09-16 05:58:32 +0100 | [diff] [blame] | 1483 | def is_typeddict(tp): |
| 1484 | """Check if an annotation is a TypedDict class |
| 1485 | |
| 1486 | For example:: |
| 1487 | class Film(TypedDict): |
| 1488 | title: str |
| 1489 | year: int |
| 1490 | |
| 1491 | is_typeddict(Film) # => True |
| 1492 | is_typeddict(Union[list, str]) # => False |
| 1493 | """ |
| 1494 | return isinstance(tp, _TypedDictMeta) |
| 1495 | |
| 1496 | |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1497 | def no_type_check(arg): |
| 1498 | """Decorator to indicate that annotations are not type hints. |
| 1499 | |
| 1500 | The argument must be a class or function; if it is a class, it |
Guido van Rossum | 0a6976d | 2016-09-11 15:34:56 -0700 | [diff] [blame] | 1501 | applies recursively to all methods and classes defined in that class |
| 1502 | (but not to methods defined in its superclasses or subclasses). |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1503 | |
Guido van Rossum | 0a6976d | 2016-09-11 15:34:56 -0700 | [diff] [blame] | 1504 | This mutates the function(s) or class(es) in place. |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1505 | """ |
| 1506 | if isinstance(arg, type): |
Guido van Rossum | 0a6976d | 2016-09-11 15:34:56 -0700 | [diff] [blame] | 1507 | arg_attrs = arg.__dict__.copy() |
| 1508 | for attr, val in arg.__dict__.items(): |
Ivan Levkivskyi | 65bc620 | 2017-09-14 01:25:15 +0200 | [diff] [blame] | 1509 | if val in arg.__bases__ + (arg,): |
Guido van Rossum | 0a6976d | 2016-09-11 15:34:56 -0700 | [diff] [blame] | 1510 | arg_attrs.pop(attr) |
| 1511 | for obj in arg_attrs.values(): |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1512 | if isinstance(obj, types.FunctionType): |
| 1513 | obj.__no_type_check__ = True |
Guido van Rossum | 0a6976d | 2016-09-11 15:34:56 -0700 | [diff] [blame] | 1514 | if isinstance(obj, type): |
| 1515 | no_type_check(obj) |
| 1516 | try: |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1517 | arg.__no_type_check__ = True |
Guido van Rossum | d7adfe1 | 2017-01-22 17:43:53 -0800 | [diff] [blame] | 1518 | except TypeError: # built-in classes |
Guido van Rossum | 0a6976d | 2016-09-11 15:34:56 -0700 | [diff] [blame] | 1519 | pass |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1520 | return arg |
| 1521 | |
| 1522 | |
| 1523 | def no_type_check_decorator(decorator): |
| 1524 | """Decorator to give another decorator the @no_type_check effect. |
| 1525 | |
| 1526 | This wraps the decorator with something that wraps the decorated |
| 1527 | function in @no_type_check. |
| 1528 | """ |
| 1529 | |
| 1530 | @functools.wraps(decorator) |
| 1531 | def wrapped_decorator(*args, **kwds): |
| 1532 | func = decorator(*args, **kwds) |
| 1533 | func = no_type_check(func) |
| 1534 | return func |
| 1535 | |
| 1536 | return wrapped_decorator |
| 1537 | |
| 1538 | |
Guido van Rossum | bd5b9a0 | 2016-04-05 08:28:52 -0700 | [diff] [blame] | 1539 | def _overload_dummy(*args, **kwds): |
| 1540 | """Helper for @overload to raise when called.""" |
| 1541 | raise NotImplementedError( |
| 1542 | "You should not call an overloaded function. " |
| 1543 | "A series of @overload-decorated functions " |
| 1544 | "outside a stub module should always be followed " |
| 1545 | "by an implementation that is not @overload-ed.") |
| 1546 | |
| 1547 | |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1548 | def overload(func): |
Guido van Rossum | bd5b9a0 | 2016-04-05 08:28:52 -0700 | [diff] [blame] | 1549 | """Decorator for overloaded functions/methods. |
| 1550 | |
| 1551 | In a stub file, place two or more stub definitions for the same |
| 1552 | function in a row, each decorated with @overload. For example: |
| 1553 | |
| 1554 | @overload |
| 1555 | def utf8(value: None) -> None: ... |
| 1556 | @overload |
| 1557 | def utf8(value: bytes) -> bytes: ... |
| 1558 | @overload |
| 1559 | def utf8(value: str) -> bytes: ... |
| 1560 | |
| 1561 | In a non-stub file (i.e. a regular .py file), do the same but |
| 1562 | follow it with an implementation. The implementation should *not* |
| 1563 | be decorated with @overload. For example: |
| 1564 | |
| 1565 | @overload |
| 1566 | def utf8(value: None) -> None: ... |
| 1567 | @overload |
| 1568 | def utf8(value: bytes) -> bytes: ... |
| 1569 | @overload |
| 1570 | def utf8(value: str) -> bytes: ... |
| 1571 | def utf8(value): |
| 1572 | # implementation goes here |
| 1573 | """ |
| 1574 | return _overload_dummy |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1575 | |
| 1576 | |
Ivan Levkivskyi | f367242 | 2019-05-26 09:37:07 +0100 | [diff] [blame] | 1577 | def final(f): |
| 1578 | """A decorator to indicate final methods and final classes. |
| 1579 | |
| 1580 | Use this decorator to indicate to type checkers that the decorated |
| 1581 | method cannot be overridden, and decorated class cannot be subclassed. |
| 1582 | For example: |
| 1583 | |
| 1584 | class Base: |
| 1585 | @final |
| 1586 | def done(self) -> None: |
| 1587 | ... |
| 1588 | class Sub(Base): |
| 1589 | def done(self) -> None: # Error reported by type checker |
| 1590 | ... |
| 1591 | |
| 1592 | @final |
| 1593 | class Leaf: |
| 1594 | ... |
| 1595 | class Other(Leaf): # Error reported by type checker |
| 1596 | ... |
| 1597 | |
| 1598 | There is no runtime checking of these properties. |
| 1599 | """ |
| 1600 | return f |
| 1601 | |
| 1602 | |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 1603 | # Some unconstrained type variables. These are used by the container types. |
| 1604 | # (These are not for export.) |
| 1605 | T = TypeVar('T') # Any type. |
| 1606 | KT = TypeVar('KT') # Key type. |
| 1607 | VT = TypeVar('VT') # Value type. |
| 1608 | T_co = TypeVar('T_co', covariant=True) # Any type covariant containers. |
| 1609 | V_co = TypeVar('V_co', covariant=True) # Any type covariant containers. |
| 1610 | VT_co = TypeVar('VT_co', covariant=True) # Value type covariant containers. |
| 1611 | T_contra = TypeVar('T_contra', contravariant=True) # Ditto contravariant. |
| 1612 | # Internal type variable used for Type[]. |
| 1613 | CT_co = TypeVar('CT_co', covariant=True, bound=type) |
| 1614 | |
| 1615 | # A useful type variable with constraints. This represents string types. |
| 1616 | # (This one *is* for export!) |
| 1617 | AnyStr = TypeVar('AnyStr', bytes, str) |
| 1618 | |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1619 | |
| 1620 | # Various ABCs mimicking those in collections.abc. |
Serhiy Storchaka | c1c7d8e | 2020-05-07 04:09:33 +0300 | [diff] [blame] | 1621 | _alias = _SpecialGenericAlias |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1622 | |
Serhiy Storchaka | fcb2856 | 2020-05-10 11:53:16 +0300 | [diff] [blame] | 1623 | Hashable = _alias(collections.abc.Hashable, 0) # Not generic. |
| 1624 | Awaitable = _alias(collections.abc.Awaitable, 1) |
| 1625 | Coroutine = _alias(collections.abc.Coroutine, 3) |
| 1626 | AsyncIterable = _alias(collections.abc.AsyncIterable, 1) |
| 1627 | AsyncIterator = _alias(collections.abc.AsyncIterator, 1) |
| 1628 | Iterable = _alias(collections.abc.Iterable, 1) |
| 1629 | Iterator = _alias(collections.abc.Iterator, 1) |
| 1630 | Reversible = _alias(collections.abc.Reversible, 1) |
| 1631 | Sized = _alias(collections.abc.Sized, 0) # Not generic. |
| 1632 | Container = _alias(collections.abc.Container, 1) |
| 1633 | Collection = _alias(collections.abc.Collection, 1) |
| 1634 | Callable = _CallableType(collections.abc.Callable, 2) |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 1635 | Callable.__doc__ = \ |
| 1636 | """Callable type; Callable[[int], str] is a function of (int) -> str. |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1637 | |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 1638 | The subscription syntax must always be used with exactly two |
| 1639 | values: the argument list and the return type. The argument list |
| 1640 | must be a list of types or ellipsis; the return type must be a single type. |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1641 | |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 1642 | There is no syntax to indicate optional or keyword arguments, |
| 1643 | such function types are rarely used as callback types. |
| 1644 | """ |
Serhiy Storchaka | fcb2856 | 2020-05-10 11:53:16 +0300 | [diff] [blame] | 1645 | AbstractSet = _alias(collections.abc.Set, 1, name='AbstractSet') |
| 1646 | MutableSet = _alias(collections.abc.MutableSet, 1) |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 1647 | # NOTE: Mapping is only covariant in the value type. |
Serhiy Storchaka | fcb2856 | 2020-05-10 11:53:16 +0300 | [diff] [blame] | 1648 | Mapping = _alias(collections.abc.Mapping, 2) |
| 1649 | MutableMapping = _alias(collections.abc.MutableMapping, 2) |
| 1650 | Sequence = _alias(collections.abc.Sequence, 1) |
| 1651 | MutableSequence = _alias(collections.abc.MutableSequence, 1) |
| 1652 | ByteString = _alias(collections.abc.ByteString, 0) # Not generic |
| 1653 | # Tuple accepts variable number of parameters. |
| 1654 | Tuple = _TupleType(tuple, -1, inst=False, name='Tuple') |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 1655 | Tuple.__doc__ = \ |
| 1656 | """Tuple type; Tuple[X, Y] is the cross-product type of X and Y. |
Guido van Rossum | 62fe1bb | 2016-10-29 16:05:26 -0700 | [diff] [blame] | 1657 | |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 1658 | Example: Tuple[T1, T2] is a tuple of two elements corresponding |
| 1659 | to type variables T1 and T2. Tuple[int, float, str] is a tuple |
| 1660 | of an int, a float and a string. |
Guido van Rossum | 62fe1bb | 2016-10-29 16:05:26 -0700 | [diff] [blame] | 1661 | |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 1662 | To specify a variable-length tuple of homogeneous type, use Tuple[T, ...]. |
| 1663 | """ |
Serhiy Storchaka | fcb2856 | 2020-05-10 11:53:16 +0300 | [diff] [blame] | 1664 | List = _alias(list, 1, inst=False, name='List') |
| 1665 | Deque = _alias(collections.deque, 1, name='Deque') |
| 1666 | Set = _alias(set, 1, inst=False, name='Set') |
| 1667 | FrozenSet = _alias(frozenset, 1, inst=False, name='FrozenSet') |
| 1668 | MappingView = _alias(collections.abc.MappingView, 1) |
| 1669 | KeysView = _alias(collections.abc.KeysView, 1) |
| 1670 | ItemsView = _alias(collections.abc.ItemsView, 2) |
| 1671 | ValuesView = _alias(collections.abc.ValuesView, 1) |
| 1672 | ContextManager = _alias(contextlib.AbstractContextManager, 1, name='ContextManager') |
| 1673 | AsyncContextManager = _alias(contextlib.AbstractAsyncContextManager, 1, name='AsyncContextManager') |
| 1674 | Dict = _alias(dict, 2, inst=False, name='Dict') |
| 1675 | DefaultDict = _alias(collections.defaultdict, 2, name='DefaultDict') |
| 1676 | OrderedDict = _alias(collections.OrderedDict, 2) |
| 1677 | Counter = _alias(collections.Counter, 1) |
| 1678 | ChainMap = _alias(collections.ChainMap, 2) |
| 1679 | Generator = _alias(collections.abc.Generator, 3) |
| 1680 | AsyncGenerator = _alias(collections.abc.AsyncGenerator, 2) |
| 1681 | Type = _alias(type, 1, inst=False, name='Type') |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 1682 | Type.__doc__ = \ |
| 1683 | """A special construct usable to annotate class objects. |
Guido van Rossum | 62fe1bb | 2016-10-29 16:05:26 -0700 | [diff] [blame] | 1684 | |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 1685 | For example, suppose we have the following classes:: |
Guido van Rossum | 62fe1bb | 2016-10-29 16:05:26 -0700 | [diff] [blame] | 1686 | |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 1687 | class User: ... # Abstract base for User classes |
| 1688 | class BasicUser(User): ... |
| 1689 | class ProUser(User): ... |
| 1690 | class TeamUser(User): ... |
Guido van Rossum | f17c200 | 2015-12-03 17:31:24 -0800 | [diff] [blame] | 1691 | |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 1692 | And a function that takes a class argument that's a subclass of |
| 1693 | User and returns an instance of the corresponding class:: |
Guido van Rossum | f17c200 | 2015-12-03 17:31:24 -0800 | [diff] [blame] | 1694 | |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 1695 | U = TypeVar('U', bound=User) |
| 1696 | def new_user(user_class: Type[U]) -> U: |
| 1697 | user = user_class() |
| 1698 | # (Here we could write the user object to a database) |
| 1699 | return user |
Guido van Rossum | f17c200 | 2015-12-03 17:31:24 -0800 | [diff] [blame] | 1700 | |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 1701 | joe = new_user(BasicUser) |
Guido van Rossum | f17c200 | 2015-12-03 17:31:24 -0800 | [diff] [blame] | 1702 | |
Ivan Levkivskyi | d911e40 | 2018-01-20 11:23:59 +0000 | [diff] [blame] | 1703 | At this point the type checker knows that joe has type BasicUser. |
| 1704 | """ |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1705 | |
| 1706 | |
Ivan Levkivskyi | 74d7f76 | 2019-05-28 08:40:15 +0100 | [diff] [blame] | 1707 | @runtime_checkable |
| 1708 | class SupportsInt(Protocol): |
Serhiy Storchaka | 8252c52 | 2019-10-08 16:30:17 +0300 | [diff] [blame] | 1709 | """An ABC with one abstract method __int__.""" |
Guido van Rossum | d70fe63 | 2015-08-05 12:11:06 +0200 | [diff] [blame] | 1710 | __slots__ = () |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1711 | |
| 1712 | @abstractmethod |
| 1713 | def __int__(self) -> int: |
| 1714 | pass |
| 1715 | |
| 1716 | |
Ivan Levkivskyi | 74d7f76 | 2019-05-28 08:40:15 +0100 | [diff] [blame] | 1717 | @runtime_checkable |
| 1718 | class SupportsFloat(Protocol): |
Serhiy Storchaka | 8252c52 | 2019-10-08 16:30:17 +0300 | [diff] [blame] | 1719 | """An ABC with one abstract method __float__.""" |
Guido van Rossum | d70fe63 | 2015-08-05 12:11:06 +0200 | [diff] [blame] | 1720 | __slots__ = () |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1721 | |
| 1722 | @abstractmethod |
| 1723 | def __float__(self) -> float: |
| 1724 | pass |
| 1725 | |
| 1726 | |
Ivan Levkivskyi | 74d7f76 | 2019-05-28 08:40:15 +0100 | [diff] [blame] | 1727 | @runtime_checkable |
| 1728 | class SupportsComplex(Protocol): |
Serhiy Storchaka | 8252c52 | 2019-10-08 16:30:17 +0300 | [diff] [blame] | 1729 | """An ABC with one abstract method __complex__.""" |
Guido van Rossum | d70fe63 | 2015-08-05 12:11:06 +0200 | [diff] [blame] | 1730 | __slots__ = () |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1731 | |
| 1732 | @abstractmethod |
| 1733 | def __complex__(self) -> complex: |
| 1734 | pass |
| 1735 | |
| 1736 | |
Ivan Levkivskyi | 74d7f76 | 2019-05-28 08:40:15 +0100 | [diff] [blame] | 1737 | @runtime_checkable |
| 1738 | class SupportsBytes(Protocol): |
Serhiy Storchaka | 8252c52 | 2019-10-08 16:30:17 +0300 | [diff] [blame] | 1739 | """An ABC with one abstract method __bytes__.""" |
Guido van Rossum | d70fe63 | 2015-08-05 12:11:06 +0200 | [diff] [blame] | 1740 | __slots__ = () |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1741 | |
| 1742 | @abstractmethod |
| 1743 | def __bytes__(self) -> bytes: |
| 1744 | pass |
| 1745 | |
| 1746 | |
Ivan Levkivskyi | 74d7f76 | 2019-05-28 08:40:15 +0100 | [diff] [blame] | 1747 | @runtime_checkable |
| 1748 | class SupportsIndex(Protocol): |
Serhiy Storchaka | 8252c52 | 2019-10-08 16:30:17 +0300 | [diff] [blame] | 1749 | """An ABC with one abstract method __index__.""" |
Paul Dagnelie | 4c7a46e | 2019-05-22 07:23:01 -0700 | [diff] [blame] | 1750 | __slots__ = () |
| 1751 | |
| 1752 | @abstractmethod |
| 1753 | def __index__(self) -> int: |
| 1754 | pass |
| 1755 | |
| 1756 | |
Ivan Levkivskyi | 74d7f76 | 2019-05-28 08:40:15 +0100 | [diff] [blame] | 1757 | @runtime_checkable |
| 1758 | class SupportsAbs(Protocol[T_co]): |
Serhiy Storchaka | 8252c52 | 2019-10-08 16:30:17 +0300 | [diff] [blame] | 1759 | """An ABC with one abstract method __abs__ that is covariant in its return type.""" |
Guido van Rossum | d70fe63 | 2015-08-05 12:11:06 +0200 | [diff] [blame] | 1760 | __slots__ = () |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1761 | |
| 1762 | @abstractmethod |
Guido van Rossum | d70fe63 | 2015-08-05 12:11:06 +0200 | [diff] [blame] | 1763 | def __abs__(self) -> T_co: |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1764 | pass |
| 1765 | |
| 1766 | |
Ivan Levkivskyi | 74d7f76 | 2019-05-28 08:40:15 +0100 | [diff] [blame] | 1767 | @runtime_checkable |
| 1768 | class SupportsRound(Protocol[T_co]): |
Serhiy Storchaka | 8252c52 | 2019-10-08 16:30:17 +0300 | [diff] [blame] | 1769 | """An ABC with one abstract method __round__ that is covariant in its return type.""" |
Guido van Rossum | d70fe63 | 2015-08-05 12:11:06 +0200 | [diff] [blame] | 1770 | __slots__ = () |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1771 | |
| 1772 | @abstractmethod |
Guido van Rossum | d70fe63 | 2015-08-05 12:11:06 +0200 | [diff] [blame] | 1773 | def __round__(self, ndigits: int = 0) -> T_co: |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1774 | pass |
| 1775 | |
| 1776 | |
Serhiy Storchaka | a2ec069 | 2020-04-08 10:59:04 +0300 | [diff] [blame] | 1777 | def _make_nmtuple(name, types, module, defaults = ()): |
| 1778 | fields = [n for n, t in types] |
| 1779 | types = {n: _type_check(t, f"field {n} annotation must be a type") |
| 1780 | for n, t in types} |
| 1781 | nm_tpl = collections.namedtuple(name, fields, |
| 1782 | defaults=defaults, module=module) |
| 1783 | nm_tpl.__annotations__ = nm_tpl.__new__.__annotations__ = types |
Guido van Rossum | 0a6976d | 2016-09-11 15:34:56 -0700 | [diff] [blame] | 1784 | return nm_tpl |
| 1785 | |
| 1786 | |
Ivan Levkivskyi | b692dc8 | 2017-02-13 22:50:14 +0100 | [diff] [blame] | 1787 | # attributes prohibited to set in NamedTuple class syntax |
Serhiy Storchaka | a2ec069 | 2020-04-08 10:59:04 +0300 | [diff] [blame] | 1788 | _prohibited = frozenset({'__new__', '__init__', '__slots__', '__getnewargs__', |
| 1789 | '_fields', '_field_defaults', |
| 1790 | '_make', '_replace', '_asdict', '_source'}) |
Ivan Levkivskyi | b692dc8 | 2017-02-13 22:50:14 +0100 | [diff] [blame] | 1791 | |
Serhiy Storchaka | a2ec069 | 2020-04-08 10:59:04 +0300 | [diff] [blame] | 1792 | _special = frozenset({'__module__', '__name__', '__annotations__'}) |
Ivan Levkivskyi | b692dc8 | 2017-02-13 22:50:14 +0100 | [diff] [blame] | 1793 | |
Guido van Rossum | 0a6976d | 2016-09-11 15:34:56 -0700 | [diff] [blame] | 1794 | |
Guido van Rossum | 2f84144 | 2016-11-15 09:48:06 -0800 | [diff] [blame] | 1795 | class NamedTupleMeta(type): |
Guido van Rossum | 0a6976d | 2016-09-11 15:34:56 -0700 | [diff] [blame] | 1796 | |
Guido van Rossum | 2f84144 | 2016-11-15 09:48:06 -0800 | [diff] [blame] | 1797 | def __new__(cls, typename, bases, ns): |
Serhiy Storchaka | a2ec069 | 2020-04-08 10:59:04 +0300 | [diff] [blame] | 1798 | assert bases[0] is _NamedTuple |
Guido van Rossum | 2f84144 | 2016-11-15 09:48:06 -0800 | [diff] [blame] | 1799 | types = ns.get('__annotations__', {}) |
Serhiy Storchaka | a2ec069 | 2020-04-08 10:59:04 +0300 | [diff] [blame] | 1800 | default_names = [] |
Guido van Rossum | 3c268be | 2017-01-18 08:03:50 -0800 | [diff] [blame] | 1801 | for field_name in types: |
| 1802 | if field_name in ns: |
Serhiy Storchaka | a2ec069 | 2020-04-08 10:59:04 +0300 | [diff] [blame] | 1803 | default_names.append(field_name) |
| 1804 | elif default_names: |
| 1805 | raise TypeError(f"Non-default namedtuple field {field_name} " |
| 1806 | f"cannot follow default field" |
| 1807 | f"{'s' if len(default_names) > 1 else ''} " |
| 1808 | f"{', '.join(default_names)}") |
| 1809 | nm_tpl = _make_nmtuple(typename, types.items(), |
| 1810 | defaults=[ns[n] for n in default_names], |
| 1811 | module=ns['__module__']) |
Guido van Rossum | 95919c0 | 2017-01-22 17:47:20 -0800 | [diff] [blame] | 1812 | # update from user namespace without overriding special namedtuple attributes |
| 1813 | for key in ns: |
Ivan Levkivskyi | b692dc8 | 2017-02-13 22:50:14 +0100 | [diff] [blame] | 1814 | if key in _prohibited: |
| 1815 | raise AttributeError("Cannot overwrite NamedTuple attribute " + key) |
| 1816 | elif key not in _special and key not in nm_tpl._fields: |
Guido van Rossum | 95919c0 | 2017-01-22 17:47:20 -0800 | [diff] [blame] | 1817 | setattr(nm_tpl, key, ns[key]) |
Guido van Rossum | 3c268be | 2017-01-18 08:03:50 -0800 | [diff] [blame] | 1818 | return nm_tpl |
Guido van Rossum | 0a6976d | 2016-09-11 15:34:56 -0700 | [diff] [blame] | 1819 | |
Guido van Rossum | d7adfe1 | 2017-01-22 17:43:53 -0800 | [diff] [blame] | 1820 | |
Serhiy Storchaka | a2ec069 | 2020-04-08 10:59:04 +0300 | [diff] [blame] | 1821 | def NamedTuple(typename, fields=None, /, **kwargs): |
Guido van Rossum | 2f84144 | 2016-11-15 09:48:06 -0800 | [diff] [blame] | 1822 | """Typed version of namedtuple. |
Guido van Rossum | 0a6976d | 2016-09-11 15:34:56 -0700 | [diff] [blame] | 1823 | |
Guido van Rossum | 2f84144 | 2016-11-15 09:48:06 -0800 | [diff] [blame] | 1824 | Usage in Python versions >= 3.6:: |
Guido van Rossum | 0a6976d | 2016-09-11 15:34:56 -0700 | [diff] [blame] | 1825 | |
Guido van Rossum | 2f84144 | 2016-11-15 09:48:06 -0800 | [diff] [blame] | 1826 | class Employee(NamedTuple): |
| 1827 | name: str |
| 1828 | id: int |
Guido van Rossum | 0a6976d | 2016-09-11 15:34:56 -0700 | [diff] [blame] | 1829 | |
Guido van Rossum | 2f84144 | 2016-11-15 09:48:06 -0800 | [diff] [blame] | 1830 | This is equivalent to:: |
Guido van Rossum | 0a6976d | 2016-09-11 15:34:56 -0700 | [diff] [blame] | 1831 | |
Guido van Rossum | 2f84144 | 2016-11-15 09:48:06 -0800 | [diff] [blame] | 1832 | Employee = collections.namedtuple('Employee', ['name', 'id']) |
Guido van Rossum | 0a6976d | 2016-09-11 15:34:56 -0700 | [diff] [blame] | 1833 | |
Raymond Hettinger | f7b57df | 2019-03-18 09:53:56 -0700 | [diff] [blame] | 1834 | The resulting class has an extra __annotations__ attribute, giving a |
| 1835 | dict that maps field names to types. (The field names are also in |
| 1836 | the _fields attribute, which is part of the namedtuple API.) |
| 1837 | Alternative equivalent keyword syntax is also accepted:: |
Guido van Rossum | 0a6976d | 2016-09-11 15:34:56 -0700 | [diff] [blame] | 1838 | |
Guido van Rossum | 2f84144 | 2016-11-15 09:48:06 -0800 | [diff] [blame] | 1839 | Employee = NamedTuple('Employee', name=str, id=int) |
Guido van Rossum | 0a6976d | 2016-09-11 15:34:56 -0700 | [diff] [blame] | 1840 | |
Guido van Rossum | 2f84144 | 2016-11-15 09:48:06 -0800 | [diff] [blame] | 1841 | In Python versions <= 3.5 use:: |
Guido van Rossum | 0a6976d | 2016-09-11 15:34:56 -0700 | [diff] [blame] | 1842 | |
Guido van Rossum | 2f84144 | 2016-11-15 09:48:06 -0800 | [diff] [blame] | 1843 | Employee = NamedTuple('Employee', [('name', str), ('id', int)]) |
| 1844 | """ |
Serhiy Storchaka | a2ec069 | 2020-04-08 10:59:04 +0300 | [diff] [blame] | 1845 | if fields is None: |
| 1846 | fields = kwargs.items() |
| 1847 | elif kwargs: |
| 1848 | raise TypeError("Either list of fields or keywords" |
| 1849 | " can be provided to NamedTuple, not both") |
| 1850 | try: |
| 1851 | module = sys._getframe(1).f_globals.get('__name__', '__main__') |
| 1852 | except (AttributeError, ValueError): |
| 1853 | module = None |
| 1854 | return _make_nmtuple(typename, fields, module=module) |
Guido van Rossum | 0a6976d | 2016-09-11 15:34:56 -0700 | [diff] [blame] | 1855 | |
Serhiy Storchaka | a2ec069 | 2020-04-08 10:59:04 +0300 | [diff] [blame] | 1856 | _NamedTuple = type.__new__(NamedTupleMeta, 'NamedTuple', (), {}) |
| 1857 | |
| 1858 | def _namedtuple_mro_entries(bases): |
| 1859 | if len(bases) > 1: |
| 1860 | raise TypeError("Multiple inheritance with NamedTuple is not supported") |
| 1861 | assert bases[0] is NamedTuple |
| 1862 | return (_NamedTuple,) |
| 1863 | |
| 1864 | NamedTuple.__mro_entries__ = _namedtuple_mro_entries |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 1865 | |
| 1866 | |
Ivan Levkivskyi | 135c6a5 | 2019-05-26 09:39:24 +0100 | [diff] [blame] | 1867 | class _TypedDictMeta(type): |
| 1868 | def __new__(cls, name, bases, ns, total=True): |
| 1869 | """Create new typed dict class object. |
| 1870 | |
Serhiy Storchaka | f228bf2 | 2020-04-08 11:03:27 +0300 | [diff] [blame] | 1871 | This method is called when TypedDict is subclassed, |
| 1872 | or when TypedDict is instantiated. This way |
Ivan Levkivskyi | 135c6a5 | 2019-05-26 09:39:24 +0100 | [diff] [blame] | 1873 | TypedDict supports all three syntax forms described in its docstring. |
Serhiy Storchaka | f228bf2 | 2020-04-08 11:03:27 +0300 | [diff] [blame] | 1874 | Subclasses and instances of TypedDict return actual dictionaries. |
Ivan Levkivskyi | 135c6a5 | 2019-05-26 09:39:24 +0100 | [diff] [blame] | 1875 | """ |
Serhiy Storchaka | f228bf2 | 2020-04-08 11:03:27 +0300 | [diff] [blame] | 1876 | for base in bases: |
| 1877 | if type(base) is not _TypedDictMeta: |
| 1878 | raise TypeError('cannot inherit from both a TypedDict type ' |
| 1879 | 'and a non-TypedDict base class') |
| 1880 | tp_dict = type.__new__(_TypedDictMeta, name, (dict,), ns) |
Ivan Levkivskyi | 135c6a5 | 2019-05-26 09:39:24 +0100 | [diff] [blame] | 1881 | |
Vlad Emelianov | 10e87e5 | 2020-02-13 20:53:29 +0100 | [diff] [blame] | 1882 | annotations = {} |
| 1883 | own_annotations = ns.get('__annotations__', {}) |
| 1884 | own_annotation_keys = set(own_annotations.keys()) |
Ivan Levkivskyi | 135c6a5 | 2019-05-26 09:39:24 +0100 | [diff] [blame] | 1885 | msg = "TypedDict('Name', {f0: t0, f1: t1, ...}); each t must be a type" |
Vlad Emelianov | 10e87e5 | 2020-02-13 20:53:29 +0100 | [diff] [blame] | 1886 | own_annotations = { |
| 1887 | n: _type_check(tp, msg) for n, tp in own_annotations.items() |
| 1888 | } |
| 1889 | required_keys = set() |
| 1890 | optional_keys = set() |
Zac Hatfield-Dodds | 665ad3d | 2019-11-24 21:48:48 +1100 | [diff] [blame] | 1891 | |
Ivan Levkivskyi | 135c6a5 | 2019-05-26 09:39:24 +0100 | [diff] [blame] | 1892 | for base in bases: |
Vlad Emelianov | 10e87e5 | 2020-02-13 20:53:29 +0100 | [diff] [blame] | 1893 | annotations.update(base.__dict__.get('__annotations__', {})) |
| 1894 | required_keys.update(base.__dict__.get('__required_keys__', ())) |
| 1895 | optional_keys.update(base.__dict__.get('__optional_keys__', ())) |
Zac Hatfield-Dodds | 665ad3d | 2019-11-24 21:48:48 +1100 | [diff] [blame] | 1896 | |
Vlad Emelianov | 10e87e5 | 2020-02-13 20:53:29 +0100 | [diff] [blame] | 1897 | annotations.update(own_annotations) |
| 1898 | if total: |
| 1899 | required_keys.update(own_annotation_keys) |
| 1900 | else: |
| 1901 | optional_keys.update(own_annotation_keys) |
| 1902 | |
| 1903 | tp_dict.__annotations__ = annotations |
| 1904 | tp_dict.__required_keys__ = frozenset(required_keys) |
| 1905 | tp_dict.__optional_keys__ = frozenset(optional_keys) |
Ivan Levkivskyi | 135c6a5 | 2019-05-26 09:39:24 +0100 | [diff] [blame] | 1906 | if not hasattr(tp_dict, '__total__'): |
| 1907 | tp_dict.__total__ = total |
| 1908 | return tp_dict |
| 1909 | |
Serhiy Storchaka | f228bf2 | 2020-04-08 11:03:27 +0300 | [diff] [blame] | 1910 | __call__ = dict # static method |
| 1911 | |
| 1912 | def __subclasscheck__(cls, other): |
| 1913 | # Typed dicts are only for static structural subtyping. |
| 1914 | raise TypeError('TypedDict does not support instance and class checks') |
| 1915 | |
| 1916 | __instancecheck__ = __subclasscheck__ |
Ivan Levkivskyi | 135c6a5 | 2019-05-26 09:39:24 +0100 | [diff] [blame] | 1917 | |
| 1918 | |
Serhiy Storchaka | f228bf2 | 2020-04-08 11:03:27 +0300 | [diff] [blame] | 1919 | def TypedDict(typename, fields=None, /, *, total=True, **kwargs): |
Ivan Levkivskyi | 135c6a5 | 2019-05-26 09:39:24 +0100 | [diff] [blame] | 1920 | """A simple typed namespace. At runtime it is equivalent to a plain dict. |
| 1921 | |
| 1922 | TypedDict creates a dictionary type that expects all of its |
| 1923 | instances to have a certain set of keys, where each key is |
| 1924 | associated with a value of a consistent type. This expectation |
| 1925 | is not checked at runtime but is only enforced by type checkers. |
| 1926 | Usage:: |
| 1927 | |
| 1928 | class Point2D(TypedDict): |
| 1929 | x: int |
| 1930 | y: int |
| 1931 | label: str |
| 1932 | |
| 1933 | a: Point2D = {'x': 1, 'y': 2, 'label': 'good'} # OK |
| 1934 | b: Point2D = {'z': 3, 'label': 'bad'} # Fails type check |
| 1935 | |
| 1936 | assert Point2D(x=1, y=2, label='first') == dict(x=1, y=2, label='first') |
| 1937 | |
Zac Hatfield-Dodds | 665ad3d | 2019-11-24 21:48:48 +1100 | [diff] [blame] | 1938 | The type info can be accessed via the Point2D.__annotations__ dict, and |
| 1939 | the Point2D.__required_keys__ and Point2D.__optional_keys__ frozensets. |
| 1940 | TypedDict supports two additional equivalent forms:: |
Ivan Levkivskyi | 135c6a5 | 2019-05-26 09:39:24 +0100 | [diff] [blame] | 1941 | |
| 1942 | Point2D = TypedDict('Point2D', x=int, y=int, label=str) |
| 1943 | Point2D = TypedDict('Point2D', {'x': int, 'y': int, 'label': str}) |
| 1944 | |
ananthan-123 | ab6423f | 2020-02-19 10:03:05 +0530 | [diff] [blame] | 1945 | By default, all keys must be present in a TypedDict. It is possible |
| 1946 | to override this by specifying totality. |
| 1947 | Usage:: |
| 1948 | |
| 1949 | class point2D(TypedDict, total=False): |
| 1950 | x: int |
| 1951 | y: int |
| 1952 | |
| 1953 | This means that a point2D TypedDict can have any of the keys omitted.A type |
| 1954 | checker is only expected to support a literal False or True as the value of |
| 1955 | the total argument. True is the default, and makes all items defined in the |
| 1956 | class body be required. |
| 1957 | |
Ivan Levkivskyi | 135c6a5 | 2019-05-26 09:39:24 +0100 | [diff] [blame] | 1958 | The class syntax is only supported in Python 3.6+, while two other |
| 1959 | syntax forms work for Python 2.7 and 3.2+ |
| 1960 | """ |
Serhiy Storchaka | f228bf2 | 2020-04-08 11:03:27 +0300 | [diff] [blame] | 1961 | if fields is None: |
| 1962 | fields = kwargs |
| 1963 | elif kwargs: |
| 1964 | raise TypeError("TypedDict takes either a dict or keyword arguments," |
| 1965 | " but not both") |
| 1966 | |
| 1967 | ns = {'__annotations__': dict(fields), '__total__': total} |
| 1968 | try: |
| 1969 | # Setting correct module is necessary to make typed dict classes pickleable. |
| 1970 | ns['__module__'] = sys._getframe(1).f_globals.get('__name__', '__main__') |
| 1971 | except (AttributeError, ValueError): |
| 1972 | pass |
| 1973 | |
| 1974 | return _TypedDictMeta(typename, (), ns) |
| 1975 | |
| 1976 | _TypedDict = type.__new__(_TypedDictMeta, 'TypedDict', (), {}) |
| 1977 | TypedDict.__mro_entries__ = lambda bases: (_TypedDict,) |
Ivan Levkivskyi | 135c6a5 | 2019-05-26 09:39:24 +0100 | [diff] [blame] | 1978 | |
| 1979 | |
Guido van Rossum | 91185fe | 2016-06-08 11:19:11 -0700 | [diff] [blame] | 1980 | def NewType(name, tp): |
| 1981 | """NewType creates simple unique types with almost zero |
| 1982 | runtime overhead. NewType(name, tp) is considered a subtype of tp |
| 1983 | by static type checkers. At runtime, NewType(name, tp) returns |
| 1984 | a dummy function that simply returns its argument. Usage:: |
| 1985 | |
| 1986 | UserId = NewType('UserId', int) |
| 1987 | |
| 1988 | def name_by_id(user_id: UserId) -> str: |
| 1989 | ... |
| 1990 | |
| 1991 | UserId('user') # Fails type check |
| 1992 | |
| 1993 | name_by_id(42) # Fails type check |
| 1994 | name_by_id(UserId(42)) # OK |
| 1995 | |
| 1996 | num = UserId(5) + 1 # type: int |
| 1997 | """ |
| 1998 | |
| 1999 | def new_type(x): |
| 2000 | return x |
| 2001 | |
| 2002 | new_type.__name__ = name |
| 2003 | new_type.__supertype__ = tp |
| 2004 | return new_type |
| 2005 | |
| 2006 | |
Guido van Rossum | 0e0563c | 2016-04-05 14:54:25 -0700 | [diff] [blame] | 2007 | # Python-version-specific alias (Python 2: unicode; Python 3: str) |
| 2008 | Text = str |
| 2009 | |
| 2010 | |
Guido van Rossum | 91185fe | 2016-06-08 11:19:11 -0700 | [diff] [blame] | 2011 | # Constant that's True when type checking, but False here. |
| 2012 | TYPE_CHECKING = False |
| 2013 | |
| 2014 | |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 2015 | class IO(Generic[AnyStr]): |
| 2016 | """Generic base class for TextIO and BinaryIO. |
| 2017 | |
| 2018 | This is an abstract, generic version of the return of open(). |
| 2019 | |
| 2020 | NOTE: This does not distinguish between the different possible |
| 2021 | classes (text vs. binary, read vs. write vs. read/write, |
| 2022 | append-only, unbuffered). The TextIO and BinaryIO subclasses |
| 2023 | below capture the distinctions between text vs. binary, which is |
| 2024 | pervasive in the interface; however we currently do not offer a |
| 2025 | way to track the other distinctions in the type system. |
| 2026 | """ |
| 2027 | |
Guido van Rossum | d70fe63 | 2015-08-05 12:11:06 +0200 | [diff] [blame] | 2028 | __slots__ = () |
| 2029 | |
HongWeipeng | 6ce03ec | 2019-09-27 15:54:26 +0800 | [diff] [blame] | 2030 | @property |
| 2031 | @abstractmethod |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 2032 | def mode(self) -> str: |
| 2033 | pass |
| 2034 | |
HongWeipeng | 6ce03ec | 2019-09-27 15:54:26 +0800 | [diff] [blame] | 2035 | @property |
| 2036 | @abstractmethod |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 2037 | def name(self) -> str: |
| 2038 | pass |
| 2039 | |
| 2040 | @abstractmethod |
| 2041 | def close(self) -> None: |
| 2042 | pass |
| 2043 | |
Shantanu | 2e6569b | 2020-01-29 18:52:36 -0800 | [diff] [blame] | 2044 | @property |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 2045 | @abstractmethod |
| 2046 | def closed(self) -> bool: |
| 2047 | pass |
| 2048 | |
| 2049 | @abstractmethod |
| 2050 | def fileno(self) -> int: |
| 2051 | pass |
| 2052 | |
| 2053 | @abstractmethod |
| 2054 | def flush(self) -> None: |
| 2055 | pass |
| 2056 | |
| 2057 | @abstractmethod |
| 2058 | def isatty(self) -> bool: |
| 2059 | pass |
| 2060 | |
| 2061 | @abstractmethod |
| 2062 | def read(self, n: int = -1) -> AnyStr: |
| 2063 | pass |
| 2064 | |
| 2065 | @abstractmethod |
| 2066 | def readable(self) -> bool: |
| 2067 | pass |
| 2068 | |
| 2069 | @abstractmethod |
| 2070 | def readline(self, limit: int = -1) -> AnyStr: |
| 2071 | pass |
| 2072 | |
| 2073 | @abstractmethod |
| 2074 | def readlines(self, hint: int = -1) -> List[AnyStr]: |
| 2075 | pass |
| 2076 | |
| 2077 | @abstractmethod |
| 2078 | def seek(self, offset: int, whence: int = 0) -> int: |
| 2079 | pass |
| 2080 | |
| 2081 | @abstractmethod |
| 2082 | def seekable(self) -> bool: |
| 2083 | pass |
| 2084 | |
| 2085 | @abstractmethod |
| 2086 | def tell(self) -> int: |
| 2087 | pass |
| 2088 | |
| 2089 | @abstractmethod |
| 2090 | def truncate(self, size: int = None) -> int: |
| 2091 | pass |
| 2092 | |
| 2093 | @abstractmethod |
| 2094 | def writable(self) -> bool: |
| 2095 | pass |
| 2096 | |
| 2097 | @abstractmethod |
| 2098 | def write(self, s: AnyStr) -> int: |
| 2099 | pass |
| 2100 | |
| 2101 | @abstractmethod |
| 2102 | def writelines(self, lines: List[AnyStr]) -> None: |
| 2103 | pass |
| 2104 | |
| 2105 | @abstractmethod |
| 2106 | def __enter__(self) -> 'IO[AnyStr]': |
| 2107 | pass |
| 2108 | |
| 2109 | @abstractmethod |
| 2110 | def __exit__(self, type, value, traceback) -> None: |
| 2111 | pass |
| 2112 | |
| 2113 | |
| 2114 | class BinaryIO(IO[bytes]): |
| 2115 | """Typed version of the return of open() in binary mode.""" |
| 2116 | |
Guido van Rossum | d70fe63 | 2015-08-05 12:11:06 +0200 | [diff] [blame] | 2117 | __slots__ = () |
| 2118 | |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 2119 | @abstractmethod |
| 2120 | def write(self, s: Union[bytes, bytearray]) -> int: |
| 2121 | pass |
| 2122 | |
| 2123 | @abstractmethod |
| 2124 | def __enter__(self) -> 'BinaryIO': |
| 2125 | pass |
| 2126 | |
| 2127 | |
| 2128 | class TextIO(IO[str]): |
| 2129 | """Typed version of the return of open() in text mode.""" |
| 2130 | |
Guido van Rossum | d70fe63 | 2015-08-05 12:11:06 +0200 | [diff] [blame] | 2131 | __slots__ = () |
| 2132 | |
HongWeipeng | 6ce03ec | 2019-09-27 15:54:26 +0800 | [diff] [blame] | 2133 | @property |
| 2134 | @abstractmethod |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 2135 | def buffer(self) -> BinaryIO: |
| 2136 | pass |
| 2137 | |
HongWeipeng | 6ce03ec | 2019-09-27 15:54:26 +0800 | [diff] [blame] | 2138 | @property |
| 2139 | @abstractmethod |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 2140 | def encoding(self) -> str: |
| 2141 | pass |
| 2142 | |
HongWeipeng | 6ce03ec | 2019-09-27 15:54:26 +0800 | [diff] [blame] | 2143 | @property |
| 2144 | @abstractmethod |
Guido van Rossum | 991d14f | 2016-11-09 13:12:51 -0800 | [diff] [blame] | 2145 | def errors(self) -> Optional[str]: |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 2146 | pass |
| 2147 | |
HongWeipeng | 6ce03ec | 2019-09-27 15:54:26 +0800 | [diff] [blame] | 2148 | @property |
| 2149 | @abstractmethod |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 2150 | def line_buffering(self) -> bool: |
| 2151 | pass |
| 2152 | |
HongWeipeng | 6ce03ec | 2019-09-27 15:54:26 +0800 | [diff] [blame] | 2153 | @property |
| 2154 | @abstractmethod |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 2155 | def newlines(self) -> Any: |
| 2156 | pass |
| 2157 | |
| 2158 | @abstractmethod |
| 2159 | def __enter__(self) -> 'TextIO': |
| 2160 | pass |
| 2161 | |
| 2162 | |
| 2163 | class io: |
| 2164 | """Wrapper namespace for IO generic classes.""" |
| 2165 | |
| 2166 | __all__ = ['IO', 'TextIO', 'BinaryIO'] |
| 2167 | IO = IO |
| 2168 | TextIO = TextIO |
| 2169 | BinaryIO = BinaryIO |
| 2170 | |
Guido van Rossum | d7adfe1 | 2017-01-22 17:43:53 -0800 | [diff] [blame] | 2171 | |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 2172 | io.__name__ = __name__ + '.io' |
| 2173 | sys.modules[io.__name__] = io |
| 2174 | |
Serhiy Storchaka | fcb2856 | 2020-05-10 11:53:16 +0300 | [diff] [blame] | 2175 | Pattern = _alias(stdlib_re.Pattern, 1) |
| 2176 | Match = _alias(stdlib_re.Match, 1) |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 2177 | |
| 2178 | class re: |
| 2179 | """Wrapper namespace for re type aliases.""" |
| 2180 | |
| 2181 | __all__ = ['Pattern', 'Match'] |
| 2182 | Pattern = Pattern |
| 2183 | Match = Match |
| 2184 | |
Guido van Rossum | d7adfe1 | 2017-01-22 17:43:53 -0800 | [diff] [blame] | 2185 | |
Guido van Rossum | 46dbb7d | 2015-05-22 10:14:11 -0700 | [diff] [blame] | 2186 | re.__name__ = __name__ + '.re' |
| 2187 | sys.modules[re.__name__] = re |