blob: d45502ffee48beef38f50398ccc083d39c01ad24 [file] [log] [blame]
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001"""
2The typing module: Support for gradual typing as defined by PEP 484.
3
4At large scale, the structure of the module is following:
5* Imports and exports, all public names should be explicitelly added to __all__.
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.
12* The public counterpart of the generics API consists of two classes: Generic and Protocol
13 (the latter is currently private, but will be made public after PEP 544 acceptance).
14* Public helper functions: get_type_hints, overload, cast, no_type_check,
15 no_type_check_decorator.
16* Generic aliases for collections.abc ABCs and few additional protocols.
17* Special types: NewType, NamedTuple, TypedDict (may be added soon).
18* Wrapper submodules for re and io related types.
19"""
20
Guido van Rossum46dbb7d2015-05-22 10:14:11 -070021import abc
22from abc import abstractmethod, abstractproperty
23import collections
Ivan Levkivskyid911e402018-01-20 11:23:59 +000024import collections.abc
Brett Cannonf3ad0422016-04-15 10:51:30 -070025import contextlib
Guido van Rossum46dbb7d2015-05-22 10:14:11 -070026import functools
27import re as stdlib_re # Avoid confusion with the re we export.
28import sys
29import types
Ivan Levkivskyid911e402018-01-20 11:23:59 +000030from types import WrapperDescriptorType, MethodWrapperType, MethodDescriptorType
Guido van Rossum46dbb7d2015-05-22 10:14:11 -070031
32# Please keep __all__ alphabetized within each category.
33__all__ = [
34 # Super-special typing primitives.
35 'Any',
36 'Callable',
Guido van Rossum0a6976d2016-09-11 15:34:56 -070037 'ClassVar',
Guido van Rossum46dbb7d2015-05-22 10:14:11 -070038 'Generic',
39 'Optional',
Guido van Rossumeb9aca32016-05-24 16:38:22 -070040 'Tuple',
41 'Type',
Guido van Rossum46dbb7d2015-05-22 10:14:11 -070042 'TypeVar',
43 'Union',
Guido van Rossum46dbb7d2015-05-22 10:14:11 -070044
45 # ABCs (from collections.abc).
46 'AbstractSet', # collections.abc.Set.
47 'ByteString',
48 'Container',
Ivan Levkivskyi29fda8d2017-06-10 21:57:56 +020049 'ContextManager',
Guido van Rossum46dbb7d2015-05-22 10:14:11 -070050 'Hashable',
51 'ItemsView',
52 'Iterable',
53 'Iterator',
54 'KeysView',
55 'Mapping',
56 'MappingView',
57 'MutableMapping',
58 'MutableSequence',
59 'MutableSet',
60 'Sequence',
61 'Sized',
62 'ValuesView',
Ivan Levkivskyid911e402018-01-20 11:23:59 +000063 'Awaitable',
64 'AsyncIterator',
65 'AsyncIterable',
66 'Coroutine',
67 'Collection',
68 'AsyncGenerator',
69 'AsyncContextManager',
Guido van Rossum46dbb7d2015-05-22 10:14:11 -070070
71 # Structural checks, a.k.a. protocols.
72 'Reversible',
73 'SupportsAbs',
Ivan Levkivskyif06e0212017-05-02 19:14:07 +020074 'SupportsBytes',
75 'SupportsComplex',
Guido van Rossum46dbb7d2015-05-22 10:14:11 -070076 'SupportsFloat',
77 'SupportsInt',
78 'SupportsRound',
79
80 # Concrete collection types.
Ivan Levkivskyib692dc82017-02-13 22:50:14 +010081 'Counter',
Raymond Hettinger80490522017-01-16 22:42:37 -080082 'Deque',
Guido van Rossum46dbb7d2015-05-22 10:14:11 -070083 'Dict',
Guido van Rossumbd5b9a02016-04-05 08:28:52 -070084 'DefaultDict',
Guido van Rossum46dbb7d2015-05-22 10:14:11 -070085 'List',
86 'Set',
Guido van Rossumefa798d2016-08-23 11:01:50 -070087 'FrozenSet',
Guido van Rossum46dbb7d2015-05-22 10:14:11 -070088 'NamedTuple', # Not really a type.
89 'Generator',
90
91 # One-off things.
92 'AnyStr',
93 'cast',
94 'get_type_hints',
Guido van Rossum91185fe2016-06-08 11:19:11 -070095 'NewType',
Guido van Rossum46dbb7d2015-05-22 10:14:11 -070096 'no_type_check',
97 'no_type_check_decorator',
aetracht45738202018-03-19 14:41:32 -040098 'NoReturn',
Guido van Rossum46dbb7d2015-05-22 10:14:11 -070099 'overload',
Guido van Rossum0e0563c2016-04-05 14:54:25 -0700100 'Text',
Guido van Rossum91185fe2016-06-08 11:19:11 -0700101 'TYPE_CHECKING',
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700102]
103
Guido van Rossumbd5b9a02016-04-05 08:28:52 -0700104# The pseudo-submodules 're' and 'io' are part of the public
105# namespace, but excluded from __all__ because they might stomp on
106# legitimate imports of those modules.
107
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700108
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000109def _type_check(arg, msg):
110 """Check that the argument is a type, and return it (internal helper).
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700111
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000112 As a special case, accept None and return type(None) instead. Also wrap strings
113 into ForwardRef instances. Consider several corner cases, for example plain
114 special forms like Union are not valid, while Union[int, str] is OK, etc.
115 The msg argument is a human-readable error message, e.g::
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700116
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000117 "Union[arg, ...]: arg should be a type."
Guido van Rossum4cefe742016-09-27 15:20:12 -0700118
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000119 We append the repr() of the actual value (truncated to 100 chars).
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700120 """
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000121 if arg is None:
122 return type(None)
123 if isinstance(arg, str):
124 return ForwardRef(arg)
125 if (isinstance(arg, _GenericAlias) and
126 arg.__origin__ in (Generic, _Protocol, ClassVar)):
127 raise TypeError(f"{arg} is not valid as type argument")
128 if (isinstance(arg, _SpecialForm) and arg is not Any or
129 arg in (Generic, _Protocol)):
130 raise TypeError(f"Plain {arg} is not valid as type argument")
131 if isinstance(arg, (type, TypeVar, ForwardRef)):
132 return arg
133 if not callable(arg):
134 raise TypeError(f"{msg} Got {arg!r:.100}.")
135 return arg
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700136
137
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000138def _type_repr(obj):
139 """Return the repr() of an object, special-casing types (internal helper).
140
141 If obj is a type, we return a shorter version than the default
142 type.__repr__, based on the module and qualified name, which is
143 typically enough to uniquely identify a type. For everything
144 else, we fall back on repr(obj).
145 """
146 if isinstance(obj, type):
147 if obj.__module__ == 'builtins':
148 return obj.__qualname__
149 return f'{obj.__module__}.{obj.__qualname__}'
150 if obj is ...:
151 return('...')
152 if isinstance(obj, types.FunctionType):
153 return obj.__name__
154 return repr(obj)
155
156
157def _collect_type_vars(types):
158 """Collect all type variable contained in types in order of
159 first appearance (lexicographic order). For example::
160
161 _collect_type_vars((T, List[S, T])) == (T, S)
162 """
163 tvars = []
164 for t in types:
165 if isinstance(t, TypeVar) and t not in tvars:
166 tvars.append(t)
167 if isinstance(t, _GenericAlias) and not t._special:
168 tvars.extend([t for t in t.__parameters__ if t not in tvars])
169 return tuple(tvars)
170
171
172def _subs_tvars(tp, tvars, subs):
173 """Substitute type variables 'tvars' with substitutions 'subs'.
174 These two must have the same length.
175 """
176 if not isinstance(tp, _GenericAlias):
177 return tp
178 new_args = list(tp.__args__)
179 for a, arg in enumerate(tp.__args__):
180 if isinstance(arg, TypeVar):
181 for i, tvar in enumerate(tvars):
182 if arg == tvar:
183 new_args[a] = subs[i]
184 else:
185 new_args[a] = _subs_tvars(arg, tvars, subs)
186 if tp.__origin__ is Union:
187 return Union[tuple(new_args)]
188 return tp.copy_with(tuple(new_args))
189
190
191def _check_generic(cls, parameters):
192 """Check correct count for parameters of a generic cls (internal helper).
193 This gives a nice error message in case of count mismatch.
194 """
195 if not cls.__parameters__:
196 raise TypeError(f"{cls} is not a generic class")
197 alen = len(parameters)
198 elen = len(cls.__parameters__)
199 if alen != elen:
200 raise TypeError(f"Too {'many' if alen > elen else 'few'} parameters for {cls};"
201 f" actual {alen}, expected {elen}")
202
203
204def _remove_dups_flatten(parameters):
205 """An internal helper for Union creation and substitution: flatten Union's
206 among parameters, then remove duplicates and strict subclasses.
207 """
208 # Flatten out Union[Union[...], ...].
209 params = []
210 for p in parameters:
211 if isinstance(p, _GenericAlias) and p.__origin__ is Union:
212 params.extend(p.__args__)
213 elif isinstance(p, tuple) and len(p) > 0 and p[0] is Union:
214 params.extend(p[1:])
215 else:
216 params.append(p)
217 # Weed out strict duplicates, preserving the first of each occurrence.
218 all_params = set(params)
219 if len(all_params) < len(params):
220 new_params = []
221 for t in params:
222 if t in all_params:
223 new_params.append(t)
224 all_params.remove(t)
225 params = new_params
226 assert not all_params, all_params
227 # Weed out subclasses.
228 # E.g. Union[int, Employee, Manager] == Union[int, Employee].
229 # If object is present it will be sole survivor among proper classes.
230 # Never discard type variables.
231 # (In particular, Union[str, AnyStr] != AnyStr.)
232 all_params = set(params)
233 for t1 in params:
234 if not isinstance(t1, type):
235 continue
236 if any((isinstance(t2, type) or
237 isinstance(t2, _GenericAlias) and t2._special) and issubclass(t1, t2)
238 for t2 in all_params - {t1}):
239 all_params.remove(t1)
240 return tuple(t for t in params if t in all_params)
241
242
243_cleanups = []
244
245
246def _tp_cache(func):
247 """Internal wrapper caching __getitem__ of generic types with a fallback to
248 original function for non-hashable arguments.
249 """
250 cached = functools.lru_cache()(func)
251 _cleanups.append(cached.cache_clear)
252
253 @functools.wraps(func)
254 def inner(*args, **kwds):
255 try:
256 return cached(*args, **kwds)
257 except TypeError:
258 pass # All real errors (not unhashable args) are raised below.
259 return func(*args, **kwds)
260 return inner
261
262
263def _eval_type(t, globalns, localns):
264 """Evaluate all forward reverences in the given type t.
265 For use of globalns and localns see the docstring for get_type_hints().
266 """
267 if isinstance(t, ForwardRef):
268 return t._evaluate(globalns, localns)
269 if isinstance(t, _GenericAlias):
270 ev_args = tuple(_eval_type(a, globalns, localns) for a in t.__args__)
271 if ev_args == t.__args__:
272 return t
273 res = t.copy_with(ev_args)
274 res._special = t._special
275 return res
276 return t
277
278
279class _Final:
280 """Mixin to prohibit subclassing"""
Guido van Rossum4cefe742016-09-27 15:20:12 -0700281
Guido van Rossum83ec3022017-01-17 20:43:28 -0800282 __slots__ = ('__weakref__',)
Guido van Rossum4cefe742016-09-27 15:20:12 -0700283
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000284 def __init_subclass__(self, *args, **kwds):
285 if '_root' not in kwds:
286 raise TypeError("Cannot subclass special typing classes")
287
Ivan Levkivskyi83494032018-03-26 23:01:12 +0100288class _Immutable:
289 """Mixin to indicate that object should not be copied."""
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000290
Ivan Levkivskyi83494032018-03-26 23:01:12 +0100291 def __copy__(self):
292 return self
293
294 def __deepcopy__(self, memo):
295 return self
296
297
298class _SpecialForm(_Final, _Immutable, _root=True):
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000299 """Internal indicator of special typing constructs.
300 See _doc instance attribute for specific docs.
301 """
302
303 __slots__ = ('_name', '_doc')
304
305 def __getstate__(self):
306 return {'name': self._name, 'doc': self._doc}
307
308 def __setstate__(self, state):
309 self._name = state['name']
310 self._doc = state['doc']
Guido van Rossum4cefe742016-09-27 15:20:12 -0700311
312 def __new__(cls, *args, **kwds):
313 """Constructor.
314
315 This only exists to give a better error message in case
316 someone tries to subclass a special typing object (not a good idea).
317 """
318 if (len(args) == 3 and
319 isinstance(args[0], str) and
320 isinstance(args[1], tuple)):
321 # Close enough.
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000322 raise TypeError(f"Cannot subclass {cls!r}")
Guido van Rossumb47c9d22016-10-03 08:40:50 -0700323 return super().__new__(cls)
Guido van Rossum4cefe742016-09-27 15:20:12 -0700324
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000325 def __init__(self, name, doc):
326 self._name = name
327 self._doc = doc
Guido van Rossum4cefe742016-09-27 15:20:12 -0700328
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000329 def __eq__(self, other):
330 if not isinstance(other, _SpecialForm):
331 return NotImplemented
332 return self._name == other._name
333
334 def __hash__(self):
335 return hash((self._name,))
Guido van Rossum4cefe742016-09-27 15:20:12 -0700336
337 def __repr__(self):
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000338 return 'typing.' + self._name
339
Ivan Levkivskyi83494032018-03-26 23:01:12 +0100340 def __reduce__(self):
341 return self._name
Guido van Rossum4cefe742016-09-27 15:20:12 -0700342
343 def __call__(self, *args, **kwds):
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000344 raise TypeError(f"Cannot instantiate {self!r}")
345
346 def __instancecheck__(self, obj):
347 raise TypeError(f"{self} cannot be used with isinstance()")
348
349 def __subclasscheck__(self, cls):
350 raise TypeError(f"{self} cannot be used with issubclass()")
351
352 @_tp_cache
353 def __getitem__(self, parameters):
354 if self._name == 'ClassVar':
355 item = _type_check(parameters, 'ClassVar accepts only single type.')
356 return _GenericAlias(self, (item,))
357 if self._name == 'Union':
358 if parameters == ():
359 raise TypeError("Cannot take a Union of no types.")
360 if not isinstance(parameters, tuple):
361 parameters = (parameters,)
362 msg = "Union[arg, ...]: each arg must be a type."
363 parameters = tuple(_type_check(p, msg) for p in parameters)
364 parameters = _remove_dups_flatten(parameters)
365 if len(parameters) == 1:
366 return parameters[0]
367 return _GenericAlias(self, parameters)
368 if self._name == 'Optional':
369 arg = _type_check(parameters, "Optional[t] requires a single type.")
370 return Union[arg, type(None)]
371 raise TypeError(f"{self} is not subscriptable")
Guido van Rossum4cefe742016-09-27 15:20:12 -0700372
373
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000374Any = _SpecialForm('Any', doc=
375 """Special type indicating an unconstrained type.
Guido van Rossumb47c9d22016-10-03 08:40:50 -0700376
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000377 - Any is compatible with every type.
378 - Any assumed to have all methods.
379 - All values assumed to be instances of Any.
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700380
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000381 Note that all the above statements are true from the point of view of
382 static type checkers. At runtime, Any should not be used with instance
383 or class checks.
384 """)
Guido van Rossumd70fe632015-08-05 12:11:06 +0200385
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000386NoReturn = _SpecialForm('NoReturn', doc=
387 """Special type indicating functions that never return.
388 Example::
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700389
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000390 from typing import NoReturn
391
392 def stop() -> NoReturn:
393 raise Exception('no way')
394
395 This type is invalid in other positions, e.g., ``List[NoReturn]``
396 will fail in static type checkers.
397 """)
398
399ClassVar = _SpecialForm('ClassVar', doc=
400 """Special type construct to mark class variables.
401
402 An annotation wrapped in ClassVar indicates that a given
403 attribute is intended to be used as a class variable and
404 should not be set on instances of that class. Usage::
405
406 class Starship:
407 stats: ClassVar[Dict[str, int]] = {} # class variable
408 damage: int = 10 # instance variable
409
410 ClassVar accepts only types and cannot be further subscribed.
411
412 Note that ClassVar is not a class itself, and should not
413 be used with isinstance() or issubclass().
414 """)
415
416Union = _SpecialForm('Union', doc=
417 """Union type; Union[X, Y] means either X or Y.
418
419 To define a union, use e.g. Union[int, str]. Details:
420 - The arguments must be types and there must be at least one.
421 - None as an argument is a special case and is replaced by
422 type(None).
423 - Unions of unions are flattened, e.g.::
424
425 Union[Union[int, str], float] == Union[int, str, float]
426
427 - Unions of a single argument vanish, e.g.::
428
429 Union[int] == int # The constructor actually returns int
430
431 - Redundant arguments are skipped, e.g.::
432
433 Union[int, str, int] == Union[int, str]
434
435 - When comparing unions, the argument order is ignored, e.g.::
436
437 Union[int, str] == Union[str, int]
438
439 - When two arguments have a subclass relationship, the least
440 derived argument is kept, e.g.::
441
442 class Employee: pass
443 class Manager(Employee): pass
444 Union[int, Employee, Manager] == Union[int, Employee]
445 Union[Manager, int, Employee] == Union[int, Employee]
446 Union[Employee, Manager] == Employee
447
448 - Similar for object::
449
450 Union[int, object] == object
451
452 - You cannot subclass or instantiate a union.
453 - You can use Optional[X] as a shorthand for Union[X, None].
454 """)
455
456Optional = _SpecialForm('Optional', doc=
457 """Optional type.
458
459 Optional[X] is equivalent to Union[X, None].
460 """)
Guido van Rossumb7dedc82016-10-29 12:44:29 -0700461
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700462
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000463class ForwardRef(_Final, _root=True):
Guido van Rossumb24569a2016-11-20 18:01:29 -0800464 """Internal wrapper to hold a forward reference."""
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700465
Guido van Rossum4cefe742016-09-27 15:20:12 -0700466 __slots__ = ('__forward_arg__', '__forward_code__',
Guido van Rossumc7b92952016-11-10 08:24:06 -0800467 '__forward_evaluated__', '__forward_value__')
Guido van Rossum4cefe742016-09-27 15:20:12 -0700468
469 def __init__(self, arg):
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700470 if not isinstance(arg, str):
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000471 raise TypeError(f"Forward reference must be a string -- got {arg!r}")
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700472 try:
473 code = compile(arg, '<string>', 'eval')
474 except SyntaxError:
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000475 raise SyntaxError(f"Forward reference must be an expression -- got {arg!r}")
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700476 self.__forward_arg__ = arg
477 self.__forward_code__ = code
478 self.__forward_evaluated__ = False
479 self.__forward_value__ = None
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700480
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000481 def _evaluate(self, globalns, localns):
Guido van Rossumdad17902016-11-10 08:29:18 -0800482 if not self.__forward_evaluated__ or localns is not globalns:
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700483 if globalns is None and localns is None:
484 globalns = localns = {}
485 elif globalns is None:
486 globalns = localns
487 elif localns is None:
488 localns = globalns
489 self.__forward_value__ = _type_check(
490 eval(self.__forward_code__, globalns, localns),
491 "Forward references must evaluate to types.")
492 self.__forward_evaluated__ = True
493 return self.__forward_value__
494
Guido van Rossum4cefe742016-09-27 15:20:12 -0700495 def __eq__(self, other):
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000496 if not isinstance(other, ForwardRef):
Guido van Rossum4cefe742016-09-27 15:20:12 -0700497 return NotImplemented
498 return (self.__forward_arg__ == other.__forward_arg__ and
Guido van Rossumc7b92952016-11-10 08:24:06 -0800499 self.__forward_value__ == other.__forward_value__)
Guido van Rossum4cefe742016-09-27 15:20:12 -0700500
501 def __hash__(self):
Guido van Rossumc7b92952016-11-10 08:24:06 -0800502 return hash((self.__forward_arg__, self.__forward_value__))
Guido van Rossum4cefe742016-09-27 15:20:12 -0700503
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700504 def __repr__(self):
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000505 return f'ForwardRef({self.__forward_arg__!r})'
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700506
507
Ivan Levkivskyi83494032018-03-26 23:01:12 +0100508def _find_name(mod, name):
509 return getattr(sys.modules[mod], name)
510
511
512class TypeVar(_Final, _Immutable, _root=True):
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700513 """Type variable.
514
515 Usage::
516
517 T = TypeVar('T') # Can be anything
518 A = TypeVar('A', str, bytes) # Must be str or bytes
519
520 Type variables exist primarily for the benefit of static type
521 checkers. They serve as the parameters for generic types as well
522 as for generic function definitions. See class Generic for more
523 information on generic types. Generic functions work as follows:
524
Guido van Rossumb24569a2016-11-20 18:01:29 -0800525 def repeat(x: T, n: int) -> List[T]:
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700526 '''Return a list containing n references to x.'''
527 return [x]*n
528
529 def longest(x: A, y: A) -> A:
530 '''Return the longest of two strings.'''
531 return x if len(x) >= len(y) else y
532
533 The latter example's signature is essentially the overloading
534 of (str, str) -> str and (bytes, bytes) -> bytes. Also note
535 that if the arguments are instances of some subclass of str,
536 the return type is still plain str.
537
Guido van Rossumb24569a2016-11-20 18:01:29 -0800538 At runtime, isinstance(x, T) and issubclass(C, T) will raise TypeError.
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700539
Guido van Rossumefa798d2016-08-23 11:01:50 -0700540 Type variables defined with covariant=True or contravariant=True
541 can be used do declare covariant or contravariant generic types.
542 See PEP 484 for more details. By default generic types are invariant
543 in all type variables.
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700544
545 Type variables can be introspected. e.g.:
546
547 T.__name__ == 'T'
548 T.__constraints__ == ()
549 T.__covariant__ == False
550 T.__contravariant__ = False
551 A.__constraints__ == (str, bytes)
Ivan Levkivskyi83494032018-03-26 23:01:12 +0100552
553 Note that only type variables defined in global scope can be pickled.
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700554 """
555
Guido van Rossum4cefe742016-09-27 15:20:12 -0700556 __slots__ = ('__name__', '__bound__', '__constraints__',
Ivan Levkivskyi83494032018-03-26 23:01:12 +0100557 '__covariant__', '__contravariant__', '_def_mod')
Guido van Rossum4cefe742016-09-27 15:20:12 -0700558
559 def __init__(self, name, *constraints, bound=None,
Guido van Rossumd7adfe12017-01-22 17:43:53 -0800560 covariant=False, contravariant=False):
Guido van Rossum4cefe742016-09-27 15:20:12 -0700561 self.__name__ = name
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700562 if covariant and contravariant:
Guido van Rossumefa798d2016-08-23 11:01:50 -0700563 raise ValueError("Bivariant types are not supported.")
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700564 self.__covariant__ = bool(covariant)
565 self.__contravariant__ = bool(contravariant)
566 if constraints and bound is not None:
567 raise TypeError("Constraints cannot be combined with bound=...")
568 if constraints and len(constraints) == 1:
569 raise TypeError("A single constraint is not allowed")
570 msg = "TypeVar(name, constraint, ...): constraints must be types."
571 self.__constraints__ = tuple(_type_check(t, msg) for t in constraints)
572 if bound:
573 self.__bound__ = _type_check(bound, "Bound must be a type.")
574 else:
575 self.__bound__ = None
Ivan Levkivskyi83494032018-03-26 23:01:12 +0100576 self._def_mod = sys._getframe(1).f_globals['__name__'] # for pickling
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700577
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000578 def __getstate__(self):
579 return {'name': self.__name__,
580 'bound': self.__bound__,
581 'constraints': self.__constraints__,
582 'co': self.__covariant__,
583 'contra': self.__contravariant__}
584
585 def __setstate__(self, state):
586 self.__name__ = state['name']
587 self.__bound__ = state['bound']
588 self.__constraints__ = state['constraints']
589 self.__covariant__ = state['co']
590 self.__contravariant__ = state['contra']
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700591
592 def __repr__(self):
593 if self.__covariant__:
594 prefix = '+'
595 elif self.__contravariant__:
596 prefix = '-'
597 else:
598 prefix = '~'
599 return prefix + self.__name__
600
Ivan Levkivskyi83494032018-03-26 23:01:12 +0100601 def __reduce__(self):
602 return (_find_name, (self._def_mod, self.__name__))
603
Guido van Rossum5fc25a82016-10-29 08:54:56 -0700604
Guido van Rossum83ec3022017-01-17 20:43:28 -0800605# Special typing constructs Union, Optional, Generic, Callable and Tuple
606# use three special attributes for internal bookkeeping of generic types:
607# * __parameters__ is a tuple of unique free type parameters of a generic
608# type, for example, Dict[T, T].__parameters__ == (T,);
609# * __origin__ keeps a reference to a type that was subscripted,
610# e.g., Union[T, int].__origin__ == Union;
611# * __args__ is a tuple of all arguments used in subscripting,
612# e.g., Dict[T, int].__args__ == (T, int).
613
Ivan Levkivskyi2a363d22018-04-05 01:25:15 +0100614
615# Mapping from non-generic type names that have a generic alias in typing
616# but with a different name.
617_normalize_alias = {'list': 'List',
618 'tuple': 'Tuple',
619 'dict': 'Dict',
620 'set': 'Set',
621 'frozenset': 'FrozenSet',
622 'deque': 'Deque',
623 'defaultdict': 'DefaultDict',
624 'type': 'Type',
625 'Set': 'AbstractSet'}
626
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000627def _is_dunder(attr):
628 return attr.startswith('__') and attr.endswith('__')
Guido van Rossum83ec3022017-01-17 20:43:28 -0800629
Guido van Rossumb24569a2016-11-20 18:01:29 -0800630
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000631class _GenericAlias(_Final, _root=True):
632 """The central part of internal API.
633
634 This represents a generic version of type 'origin' with type arguments 'params'.
635 There are two kind of these aliases: user defined and special. The special ones
636 are wrappers around builtin collections and ABCs in collections.abc. These must
637 have 'name' always set. If 'inst' is False, then the alias can't be instantiated,
638 this is used by e.g. typing.List and typing.Dict.
Guido van Rossum5fc25a82016-10-29 08:54:56 -0700639 """
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000640 def __init__(self, origin, params, *, inst=True, special=False, name=None):
641 self._inst = inst
642 self._special = special
643 if special and name is None:
644 orig_name = origin.__name__
Ivan Levkivskyi2a363d22018-04-05 01:25:15 +0100645 name = _normalize_alias.get(orig_name, orig_name)
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000646 self._name = name
647 if not isinstance(params, tuple):
648 params = (params,)
Guido van Rossum5fc25a82016-10-29 08:54:56 -0700649 self.__origin__ = origin
Guido van Rossum5fc25a82016-10-29 08:54:56 -0700650 self.__args__ = tuple(... if a is _TypingEllipsis else
651 () if a is _TypingEmpty else
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000652 a for a in params)
653 self.__parameters__ = _collect_type_vars(params)
654 self.__slots__ = None # This is not documented.
655 if not name:
656 self.__module__ = origin.__module__
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700657
Guido van Rossum4cefe742016-09-27 15:20:12 -0700658 @_tp_cache
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700659 def __getitem__(self, params):
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000660 if self.__origin__ in (Generic, _Protocol):
661 # Can't subscript Generic[...] or _Protocol[...].
662 raise TypeError(f"Cannot subscript already-subscripted {self}")
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700663 if not isinstance(params, tuple):
664 params = (params,)
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700665 msg = "Parameters to generic types must be types."
666 params = tuple(_type_check(p, msg) for p in params)
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000667 _check_generic(self, params)
668 return _subs_tvars(self, self.__parameters__, params)
Ivan Levkivskyib692dc82017-02-13 22:50:14 +0100669
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000670 def copy_with(self, params):
671 # We don't copy self._special.
672 return _GenericAlias(self.__origin__, params, name=self._name, inst=self._inst)
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700673
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000674 def __repr__(self):
675 if (self._name != 'Callable' or
676 len(self.__args__) == 2 and self.__args__[0] is Ellipsis):
677 if self._name:
678 name = 'typing.' + self._name
679 else:
680 name = _type_repr(self.__origin__)
681 if not self._special:
682 args = f'[{", ".join([_type_repr(a) for a in self.__args__])}]'
683 else:
684 args = ''
685 return (f'{name}{args}')
686 if self._special:
687 return 'typing.Callable'
688 return (f'typing.Callable'
689 f'[[{", ".join([_type_repr(a) for a in self.__args__[:-1]])}], '
690 f'{_type_repr(self.__args__[-1])}]')
691
692 def __eq__(self, other):
693 if not isinstance(other, _GenericAlias):
694 return NotImplemented
695 if self.__origin__ != other.__origin__:
Ivan Levkivskyib692dc82017-02-13 22:50:14 +0100696 return False
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000697 if self.__origin__ is Union and other.__origin__ is Union:
698 return frozenset(self.__args__) == frozenset(other.__args__)
699 return self.__args__ == other.__args__
Ivan Levkivskyib692dc82017-02-13 22:50:14 +0100700
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000701 def __hash__(self):
702 if self.__origin__ is Union:
703 return hash((Union, frozenset(self.__args__)))
704 return hash((self.__origin__, self.__args__))
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700705
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000706 def __call__(self, *args, **kwargs):
707 if not self._inst:
708 raise TypeError(f"Type {self._name} cannot be instantiated; "
709 f"use {self._name.lower()}() instead")
710 result = self.__origin__(*args, **kwargs)
Guido van Rossum5fc25a82016-10-29 08:54:56 -0700711 try:
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000712 result.__orig_class__ = self
Guido van Rossum5fc25a82016-10-29 08:54:56 -0700713 except AttributeError:
714 pass
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000715 return result
716
717 def __mro_entries__(self, bases):
718 if self._name: # generic version of an ABC or built-in class
719 res = []
720 if self.__origin__ not in bases:
721 res.append(self.__origin__)
722 i = bases.index(self)
723 if not any(isinstance(b, _GenericAlias) or issubclass(b, Generic)
724 for b in bases[i+1:]):
725 res.append(Generic)
726 return tuple(res)
727 if self.__origin__ is Generic:
728 i = bases.index(self)
729 for b in bases[i+1:]:
730 if isinstance(b, _GenericAlias) and b is not self:
731 return ()
732 return (self.__origin__,)
733
734 def __getattr__(self, attr):
735 # We are carefull for copy and pickle.
736 # Also for simplicity we just don't relay all dunder names
737 if '__origin__' in self.__dict__ and not _is_dunder(attr):
738 return getattr(self.__origin__, attr)
739 raise AttributeError(attr)
740
741 def __setattr__(self, attr, val):
742 if _is_dunder(attr) or attr in ('_name', '_inst', '_special'):
743 super().__setattr__(attr, val)
744 else:
745 setattr(self.__origin__, attr, val)
746
747 def __instancecheck__(self, obj):
748 return self.__subclasscheck__(type(obj))
749
750 def __subclasscheck__(self, cls):
751 if self._special:
752 if not isinstance(cls, _GenericAlias):
753 return issubclass(cls, self.__origin__)
754 if cls._special:
755 return issubclass(cls.__origin__, self.__origin__)
756 raise TypeError("Subscripted generics cannot be used with"
757 " class and instance checks")
Guido van Rossum5fc25a82016-10-29 08:54:56 -0700758
Ivan Levkivskyi83494032018-03-26 23:01:12 +0100759 def __reduce__(self):
760 if self._special:
761 return self._name
762 return super().__reduce__()
763
Guido van Rossum5fc25a82016-10-29 08:54:56 -0700764
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000765class _VariadicGenericAlias(_GenericAlias, _root=True):
766 """Same as _GenericAlias above but for variadic aliases. Currently,
767 this is used only by special internal aliases: Tuple and Callable.
768 """
769 def __getitem__(self, params):
770 if self._name != 'Callable' or not self._special:
771 return self.__getitem_inner__(params)
772 if not isinstance(params, tuple) or len(params) != 2:
773 raise TypeError("Callable must be used as "
774 "Callable[[arg, ...], result].")
775 args, result = params
776 if args is Ellipsis:
777 params = (Ellipsis, result)
778 else:
779 if not isinstance(args, list):
780 raise TypeError(f"Callable[args, result]: args must be a list."
781 f" Got {args}")
782 params = (tuple(args), result)
783 return self.__getitem_inner__(params)
784
785 @_tp_cache
786 def __getitem_inner__(self, params):
787 if self.__origin__ is tuple and self._special:
788 if params == ():
789 return self.copy_with((_TypingEmpty,))
790 if not isinstance(params, tuple):
791 params = (params,)
792 if len(params) == 2 and params[1] is ...:
793 msg = "Tuple[t, ...]: t must be a type."
794 p = _type_check(params[0], msg)
795 return self.copy_with((p, _TypingEllipsis))
796 msg = "Tuple[t0, t1, ...]: each t must be a type."
797 params = tuple(_type_check(p, msg) for p in params)
798 return self.copy_with(params)
799 if self.__origin__ is collections.abc.Callable and self._special:
800 args, result = params
801 msg = "Callable[args, result]: result must be a type."
802 result = _type_check(result, msg)
803 if args is Ellipsis:
804 return self.copy_with((_TypingEllipsis, result))
805 msg = "Callable[[arg, ...], result]: each arg must be a type."
806 args = tuple(_type_check(arg, msg) for arg in args)
807 params = args + (result,)
808 return self.copy_with(params)
809 return super().__getitem__(params)
810
811
812class Generic:
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700813 """Abstract base class for generic types.
814
Guido van Rossumb24569a2016-11-20 18:01:29 -0800815 A generic type is typically declared by inheriting from
816 this class parameterized with one or more type variables.
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700817 For example, a generic mapping type might be defined as::
818
819 class Mapping(Generic[KT, VT]):
820 def __getitem__(self, key: KT) -> VT:
821 ...
822 # Etc.
823
824 This class can then be used as follows::
825
Guido van Rossumbd5b9a02016-04-05 08:28:52 -0700826 def lookup_name(mapping: Mapping[KT, VT], key: KT, default: VT) -> VT:
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700827 try:
828 return mapping[key]
829 except KeyError:
830 return default
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700831 """
Guido van Rossumd70fe632015-08-05 12:11:06 +0200832 __slots__ = ()
833
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700834 def __new__(cls, *args, **kwds):
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000835 if cls is Generic:
Guido van Rossum62fe1bb2016-10-29 16:05:26 -0700836 raise TypeError("Type Generic cannot be instantiated; "
837 "it can be used only as a base class")
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000838 return super().__new__(cls)
839
840 @_tp_cache
841 def __class_getitem__(cls, params):
842 if not isinstance(params, tuple):
843 params = (params,)
844 if not params and cls is not Tuple:
845 raise TypeError(
846 f"Parameter list to {cls.__qualname__}[...] cannot be empty")
847 msg = "Parameters to generic types must be types."
848 params = tuple(_type_check(p, msg) for p in params)
849 if cls is Generic:
850 # Generic can only be subscripted with unique type variables.
851 if not all(isinstance(p, TypeVar) for p in params):
852 raise TypeError(
853 "Parameters to Generic[...] must all be type variables")
854 if len(set(params)) != len(params):
855 raise TypeError(
856 "Parameters to Generic[...] must all be unique")
857 elif cls is _Protocol:
858 # _Protocol is internal at the moment, just skip the check
859 pass
860 else:
861 # Subscripting a regular Generic subclass.
862 _check_generic(cls, params)
863 return _GenericAlias(cls, params)
864
865 def __init_subclass__(cls, *args, **kwargs):
Ivan Levkivskyiee566fe2018-04-04 17:00:15 +0100866 super().__init_subclass__(*args, **kwargs)
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000867 tvars = []
868 if '__orig_bases__' in cls.__dict__:
869 error = Generic in cls.__orig_bases__
870 else:
871 error = Generic in cls.__bases__ and cls.__name__ != '_Protocol'
872 if error:
873 raise TypeError("Cannot inherit from plain Generic")
874 if '__orig_bases__' in cls.__dict__:
875 tvars = _collect_type_vars(cls.__orig_bases__)
876 # Look for Generic[T1, ..., Tn].
877 # If found, tvars must be a subset of it.
878 # If not found, tvars is it.
879 # Also check for and reject plain Generic,
880 # and reject multiple Generic[...].
881 gvars = None
882 for base in cls.__orig_bases__:
883 if (isinstance(base, _GenericAlias) and
884 base.__origin__ is Generic):
885 if gvars is not None:
886 raise TypeError(
887 "Cannot inherit from Generic[...] multiple types.")
888 gvars = base.__parameters__
889 if gvars is None:
890 gvars = tvars
891 else:
892 tvarset = set(tvars)
893 gvarset = set(gvars)
894 if not tvarset <= gvarset:
895 s_vars = ', '.join(str(t) for t in tvars if t not in gvarset)
896 s_args = ', '.join(str(g) for g in gvars)
897 raise TypeError(f"Some type variables ({s_vars}) are"
898 f" not listed in Generic[{s_args}]")
899 tvars = gvars
900 cls.__parameters__ = tuple(tvars)
Guido van Rossum5fc25a82016-10-29 08:54:56 -0700901
902
903class _TypingEmpty:
Guido van Rossumb24569a2016-11-20 18:01:29 -0800904 """Internal placeholder for () or []. Used by TupleMeta and CallableMeta
905 to allow empty list/tuple in specific places, without allowing them
Guido van Rossum5fc25a82016-10-29 08:54:56 -0700906 to sneak in where prohibited.
907 """
908
909
910class _TypingEllipsis:
Guido van Rossumb24569a2016-11-20 18:01:29 -0800911 """Internal placeholder for ... (ellipsis)."""
Guido van Rossum5fc25a82016-10-29 08:54:56 -0700912
913
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700914def cast(typ, val):
915 """Cast a value to a type.
916
917 This returns the value unchanged. To the type checker this
918 signals that the return value has the designated type, but at
919 runtime we intentionally don't check anything (we want this
920 to be as fast as possible).
921 """
922 return val
923
924
925def _get_defaults(func):
926 """Internal helper to extract the default arguments, by name."""
Guido van Rossum991d14f2016-11-09 13:12:51 -0800927 try:
928 code = func.__code__
929 except AttributeError:
930 # Some built-in functions don't have __code__, __defaults__, etc.
931 return {}
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700932 pos_count = code.co_argcount
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700933 arg_names = code.co_varnames
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700934 arg_names = arg_names[:pos_count]
935 defaults = func.__defaults__ or ()
936 kwdefaults = func.__kwdefaults__
937 res = dict(kwdefaults) if kwdefaults else {}
938 pos_offset = pos_count - len(defaults)
939 for name, value in zip(arg_names[pos_offset:], defaults):
940 assert name not in res
941 res[name] = value
942 return res
943
944
Ivan Levkivskyib692dc82017-02-13 22:50:14 +0100945_allowed_types = (types.FunctionType, types.BuiltinFunctionType,
946 types.MethodType, types.ModuleType,
Ivan Levkivskyif06e0212017-05-02 19:14:07 +0200947 WrapperDescriptorType, MethodWrapperType, MethodDescriptorType)
Ivan Levkivskyib692dc82017-02-13 22:50:14 +0100948
949
Guido van Rossum991d14f2016-11-09 13:12:51 -0800950def get_type_hints(obj, globalns=None, localns=None):
951 """Return type hints for an object.
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700952
Guido van Rossum991d14f2016-11-09 13:12:51 -0800953 This is often the same as obj.__annotations__, but it handles
954 forward references encoded as string literals, and if necessary
955 adds Optional[t] if a default value equal to None is set.
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700956
Guido van Rossum991d14f2016-11-09 13:12:51 -0800957 The argument may be a module, class, method, or function. The annotations
958 are returned as a dictionary. For classes, annotations include also
959 inherited members.
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700960
Guido van Rossum991d14f2016-11-09 13:12:51 -0800961 TypeError is raised if the argument is not of a type that can contain
962 annotations, and an empty dictionary is returned if no annotations are
963 present.
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700964
Guido van Rossum991d14f2016-11-09 13:12:51 -0800965 BEWARE -- the behavior of globalns and localns is counterintuitive
966 (unless you are familiar with how eval() and exec() work). The
967 search order is locals first, then globals.
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700968
Guido van Rossum991d14f2016-11-09 13:12:51 -0800969 - If no dict arguments are passed, an attempt is made to use the
Łukasz Langaf350a262017-09-14 14:33:00 -0400970 globals from obj (or the respective module's globals for classes),
971 and these are also used as the locals. If the object does not appear
972 to have globals, an empty dictionary is used.
Guido van Rossum0a6976d2016-09-11 15:34:56 -0700973
Guido van Rossum991d14f2016-11-09 13:12:51 -0800974 - If one dict argument is passed, it is used for both globals and
975 locals.
Guido van Rossum0a6976d2016-09-11 15:34:56 -0700976
Guido van Rossum991d14f2016-11-09 13:12:51 -0800977 - If two dict arguments are passed, they specify globals and
978 locals, respectively.
979 """
Guido van Rossum0a6976d2016-09-11 15:34:56 -0700980
Guido van Rossum991d14f2016-11-09 13:12:51 -0800981 if getattr(obj, '__no_type_check__', None):
982 return {}
Guido van Rossum991d14f2016-11-09 13:12:51 -0800983 # Classes require a special treatment.
984 if isinstance(obj, type):
985 hints = {}
986 for base in reversed(obj.__mro__):
Łukasz Langaf350a262017-09-14 14:33:00 -0400987 if globalns is None:
988 base_globals = sys.modules[base.__module__].__dict__
989 else:
990 base_globals = globalns
Guido van Rossum991d14f2016-11-09 13:12:51 -0800991 ann = base.__dict__.get('__annotations__', {})
992 for name, value in ann.items():
993 if value is None:
994 value = type(None)
995 if isinstance(value, str):
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000996 value = ForwardRef(value)
Łukasz Langaf350a262017-09-14 14:33:00 -0400997 value = _eval_type(value, base_globals, localns)
Guido van Rossum991d14f2016-11-09 13:12:51 -0800998 hints[name] = value
999 return hints
Łukasz Langaf350a262017-09-14 14:33:00 -04001000
1001 if globalns is None:
1002 if isinstance(obj, types.ModuleType):
1003 globalns = obj.__dict__
1004 else:
1005 globalns = getattr(obj, '__globals__', {})
1006 if localns is None:
1007 localns = globalns
1008 elif localns is None:
1009 localns = globalns
Guido van Rossum991d14f2016-11-09 13:12:51 -08001010 hints = getattr(obj, '__annotations__', None)
1011 if hints is None:
1012 # Return empty annotations for something that _could_ have them.
Ivan Levkivskyib692dc82017-02-13 22:50:14 +01001013 if isinstance(obj, _allowed_types):
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001014 return {}
Guido van Rossum991d14f2016-11-09 13:12:51 -08001015 else:
1016 raise TypeError('{!r} is not a module, class, method, '
1017 'or function.'.format(obj))
1018 defaults = _get_defaults(obj)
1019 hints = dict(hints)
1020 for name, value in hints.items():
1021 if value is None:
1022 value = type(None)
1023 if isinstance(value, str):
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001024 value = ForwardRef(value)
Guido van Rossum991d14f2016-11-09 13:12:51 -08001025 value = _eval_type(value, globalns, localns)
1026 if name in defaults and defaults[name] is None:
1027 value = Optional[value]
1028 hints[name] = value
1029 return hints
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001030
1031
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001032def no_type_check(arg):
1033 """Decorator to indicate that annotations are not type hints.
1034
1035 The argument must be a class or function; if it is a class, it
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001036 applies recursively to all methods and classes defined in that class
1037 (but not to methods defined in its superclasses or subclasses).
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001038
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001039 This mutates the function(s) or class(es) in place.
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001040 """
1041 if isinstance(arg, type):
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001042 arg_attrs = arg.__dict__.copy()
1043 for attr, val in arg.__dict__.items():
Ivan Levkivskyi65bc6202017-09-14 01:25:15 +02001044 if val in arg.__bases__ + (arg,):
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001045 arg_attrs.pop(attr)
1046 for obj in arg_attrs.values():
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001047 if isinstance(obj, types.FunctionType):
1048 obj.__no_type_check__ = True
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001049 if isinstance(obj, type):
1050 no_type_check(obj)
1051 try:
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001052 arg.__no_type_check__ = True
Guido van Rossumd7adfe12017-01-22 17:43:53 -08001053 except TypeError: # built-in classes
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001054 pass
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001055 return arg
1056
1057
1058def no_type_check_decorator(decorator):
1059 """Decorator to give another decorator the @no_type_check effect.
1060
1061 This wraps the decorator with something that wraps the decorated
1062 function in @no_type_check.
1063 """
1064
1065 @functools.wraps(decorator)
1066 def wrapped_decorator(*args, **kwds):
1067 func = decorator(*args, **kwds)
1068 func = no_type_check(func)
1069 return func
1070
1071 return wrapped_decorator
1072
1073
Guido van Rossumbd5b9a02016-04-05 08:28:52 -07001074def _overload_dummy(*args, **kwds):
1075 """Helper for @overload to raise when called."""
1076 raise NotImplementedError(
1077 "You should not call an overloaded function. "
1078 "A series of @overload-decorated functions "
1079 "outside a stub module should always be followed "
1080 "by an implementation that is not @overload-ed.")
1081
1082
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001083def overload(func):
Guido van Rossumbd5b9a02016-04-05 08:28:52 -07001084 """Decorator for overloaded functions/methods.
1085
1086 In a stub file, place two or more stub definitions for the same
1087 function in a row, each decorated with @overload. For example:
1088
1089 @overload
1090 def utf8(value: None) -> None: ...
1091 @overload
1092 def utf8(value: bytes) -> bytes: ...
1093 @overload
1094 def utf8(value: str) -> bytes: ...
1095
1096 In a non-stub file (i.e. a regular .py file), do the same but
1097 follow it with an implementation. The implementation should *not*
1098 be decorated with @overload. For example:
1099
1100 @overload
1101 def utf8(value: None) -> None: ...
1102 @overload
1103 def utf8(value: bytes) -> bytes: ...
1104 @overload
1105 def utf8(value: str) -> bytes: ...
1106 def utf8(value):
1107 # implementation goes here
1108 """
1109 return _overload_dummy
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001110
1111
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001112class _ProtocolMeta(type):
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001113 """Internal metaclass for _Protocol.
1114
1115 This exists so _Protocol classes can be generic without deriving
1116 from Generic.
1117 """
1118
Guido van Rossumd70fe632015-08-05 12:11:06 +02001119 def __instancecheck__(self, obj):
Guido van Rossumca4b2522016-11-19 10:32:41 -08001120 if _Protocol not in self.__bases__:
1121 return super().__instancecheck__(obj)
Guido van Rossumd70fe632015-08-05 12:11:06 +02001122 raise TypeError("Protocols cannot be used with isinstance().")
1123
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001124 def __subclasscheck__(self, cls):
1125 if not self._is_protocol:
1126 # No structural checks since this isn't a protocol.
1127 return NotImplemented
1128
1129 if self is _Protocol:
1130 # Every class is a subclass of the empty protocol.
1131 return True
1132
1133 # Find all attributes defined in the protocol.
1134 attrs = self._get_protocol_attrs()
1135
1136 for attr in attrs:
1137 if not any(attr in d.__dict__ for d in cls.__mro__):
1138 return False
1139 return True
1140
1141 def _get_protocol_attrs(self):
1142 # Get all Protocol base classes.
1143 protocol_bases = []
1144 for c in self.__mro__:
1145 if getattr(c, '_is_protocol', False) and c.__name__ != '_Protocol':
1146 protocol_bases.append(c)
1147
1148 # Get attributes included in protocol.
1149 attrs = set()
1150 for base in protocol_bases:
1151 for attr in base.__dict__.keys():
1152 # Include attributes not defined in any non-protocol bases.
1153 for c in self.__mro__:
1154 if (c is not base and attr in c.__dict__ and
1155 not getattr(c, '_is_protocol', False)):
1156 break
1157 else:
1158 if (not attr.startswith('_abc_') and
Guido van Rossumbd5b9a02016-04-05 08:28:52 -07001159 attr != '__abstractmethods__' and
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001160 attr != '__annotations__' and
1161 attr != '__weakref__' and
Guido van Rossumbd5b9a02016-04-05 08:28:52 -07001162 attr != '_is_protocol' and
Ivan Levkivskyi65bc6202017-09-14 01:25:15 +02001163 attr != '_gorg' and
Guido van Rossumbd5b9a02016-04-05 08:28:52 -07001164 attr != '__dict__' and
1165 attr != '__args__' and
1166 attr != '__slots__' and
1167 attr != '_get_protocol_attrs' and
1168 attr != '__next_in_mro__' and
1169 attr != '__parameters__' and
1170 attr != '__origin__' and
Guido van Rossum7ef22d62016-10-21 14:27:58 -07001171 attr != '__orig_bases__' and
Guido van Rossum1cea70f2016-05-18 08:35:00 -07001172 attr != '__extra__' and
Guido van Rossum5fc25a82016-10-29 08:54:56 -07001173 attr != '__tree_hash__' and
Guido van Rossumbd5b9a02016-04-05 08:28:52 -07001174 attr != '__module__'):
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001175 attrs.add(attr)
1176
1177 return attrs
1178
1179
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001180class _Protocol(Generic, metaclass=_ProtocolMeta):
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001181 """Internal base class for protocol classes.
1182
Guido van Rossumb24569a2016-11-20 18:01:29 -08001183 This implements a simple-minded structural issubclass check
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001184 (similar but more general than the one-offs in collections.abc
1185 such as Hashable).
1186 """
1187
Guido van Rossumd70fe632015-08-05 12:11:06 +02001188 __slots__ = ()
1189
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001190 _is_protocol = True
1191
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001192 def __class_getitem__(cls, params):
1193 return super().__class_getitem__(params)
1194
1195
1196# Some unconstrained type variables. These are used by the container types.
1197# (These are not for export.)
1198T = TypeVar('T') # Any type.
1199KT = TypeVar('KT') # Key type.
1200VT = TypeVar('VT') # Value type.
1201T_co = TypeVar('T_co', covariant=True) # Any type covariant containers.
1202V_co = TypeVar('V_co', covariant=True) # Any type covariant containers.
1203VT_co = TypeVar('VT_co', covariant=True) # Value type covariant containers.
1204T_contra = TypeVar('T_contra', contravariant=True) # Ditto contravariant.
1205# Internal type variable used for Type[].
1206CT_co = TypeVar('CT_co', covariant=True, bound=type)
1207
1208# A useful type variable with constraints. This represents string types.
1209# (This one *is* for export!)
1210AnyStr = TypeVar('AnyStr', bytes, str)
1211
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001212
1213# Various ABCs mimicking those in collections.abc.
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001214def _alias(origin, params, inst=True):
1215 return _GenericAlias(origin, params, special=True, inst=inst)
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001216
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001217Hashable = _alias(collections.abc.Hashable, ()) # Not generic.
1218Awaitable = _alias(collections.abc.Awaitable, T_co)
1219Coroutine = _alias(collections.abc.Coroutine, (T_co, T_contra, V_co))
1220AsyncIterable = _alias(collections.abc.AsyncIterable, T_co)
1221AsyncIterator = _alias(collections.abc.AsyncIterator, T_co)
1222Iterable = _alias(collections.abc.Iterable, T_co)
1223Iterator = _alias(collections.abc.Iterator, T_co)
1224Reversible = _alias(collections.abc.Reversible, T_co)
1225Sized = _alias(collections.abc.Sized, ()) # Not generic.
1226Container = _alias(collections.abc.Container, T_co)
1227Collection = _alias(collections.abc.Collection, T_co)
1228Callable = _VariadicGenericAlias(collections.abc.Callable, (), special=True)
1229Callable.__doc__ = \
1230 """Callable type; Callable[[int], str] is a function of (int) -> str.
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001231
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001232 The subscription syntax must always be used with exactly two
1233 values: the argument list and the return type. The argument list
1234 must be a list of types or ellipsis; the return type must be a single type.
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001235
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001236 There is no syntax to indicate optional or keyword arguments,
1237 such function types are rarely used as callback types.
1238 """
1239AbstractSet = _alias(collections.abc.Set, T_co)
1240MutableSet = _alias(collections.abc.MutableSet, T)
1241# NOTE: Mapping is only covariant in the value type.
1242Mapping = _alias(collections.abc.Mapping, (KT, VT_co))
1243MutableMapping = _alias(collections.abc.MutableMapping, (KT, VT))
1244Sequence = _alias(collections.abc.Sequence, T_co)
1245MutableSequence = _alias(collections.abc.MutableSequence, T)
1246ByteString = _alias(collections.abc.ByteString, ()) # Not generic
1247Tuple = _VariadicGenericAlias(tuple, (), inst=False, special=True)
1248Tuple.__doc__ = \
1249 """Tuple type; Tuple[X, Y] is the cross-product type of X and Y.
Guido van Rossum62fe1bb2016-10-29 16:05:26 -07001250
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001251 Example: Tuple[T1, T2] is a tuple of two elements corresponding
1252 to type variables T1 and T2. Tuple[int, float, str] is a tuple
1253 of an int, a float and a string.
Guido van Rossum62fe1bb2016-10-29 16:05:26 -07001254
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001255 To specify a variable-length tuple of homogeneous type, use Tuple[T, ...].
1256 """
1257List = _alias(list, T, inst=False)
1258Deque = _alias(collections.deque, T)
1259Set = _alias(set, T, inst=False)
1260FrozenSet = _alias(frozenset, T_co, inst=False)
1261MappingView = _alias(collections.abc.MappingView, T_co)
1262KeysView = _alias(collections.abc.KeysView, KT)
1263ItemsView = _alias(collections.abc.ItemsView, (KT, VT_co))
1264ValuesView = _alias(collections.abc.ValuesView, VT_co)
1265ContextManager = _alias(contextlib.AbstractContextManager, T_co)
1266AsyncContextManager = _alias(contextlib.AbstractAsyncContextManager, T_co)
1267Dict = _alias(dict, (KT, VT), inst=False)
1268DefaultDict = _alias(collections.defaultdict, (KT, VT))
1269Counter = _alias(collections.Counter, T)
1270ChainMap = _alias(collections.ChainMap, (KT, VT))
1271Generator = _alias(collections.abc.Generator, (T_co, T_contra, V_co))
1272AsyncGenerator = _alias(collections.abc.AsyncGenerator, (T_co, T_contra))
1273Type = _alias(type, CT_co, inst=False)
1274Type.__doc__ = \
1275 """A special construct usable to annotate class objects.
Guido van Rossum62fe1bb2016-10-29 16:05:26 -07001276
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001277 For example, suppose we have the following classes::
Guido van Rossum62fe1bb2016-10-29 16:05:26 -07001278
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001279 class User: ... # Abstract base for User classes
1280 class BasicUser(User): ...
1281 class ProUser(User): ...
1282 class TeamUser(User): ...
Guido van Rossumf17c2002015-12-03 17:31:24 -08001283
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001284 And a function that takes a class argument that's a subclass of
1285 User and returns an instance of the corresponding class::
Guido van Rossumf17c2002015-12-03 17:31:24 -08001286
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001287 U = TypeVar('U', bound=User)
1288 def new_user(user_class: Type[U]) -> U:
1289 user = user_class()
1290 # (Here we could write the user object to a database)
1291 return user
Guido van Rossumf17c2002015-12-03 17:31:24 -08001292
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001293 joe = new_user(BasicUser)
Guido van Rossumf17c2002015-12-03 17:31:24 -08001294
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001295 At this point the type checker knows that joe has type BasicUser.
1296 """
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001297
1298
1299class SupportsInt(_Protocol):
Guido van Rossumd70fe632015-08-05 12:11:06 +02001300 __slots__ = ()
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001301
1302 @abstractmethod
1303 def __int__(self) -> int:
1304 pass
1305
1306
1307class SupportsFloat(_Protocol):
Guido van Rossumd70fe632015-08-05 12:11:06 +02001308 __slots__ = ()
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001309
1310 @abstractmethod
1311 def __float__(self) -> float:
1312 pass
1313
1314
1315class SupportsComplex(_Protocol):
Guido van Rossumd70fe632015-08-05 12:11:06 +02001316 __slots__ = ()
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001317
1318 @abstractmethod
1319 def __complex__(self) -> complex:
1320 pass
1321
1322
1323class SupportsBytes(_Protocol):
Guido van Rossumd70fe632015-08-05 12:11:06 +02001324 __slots__ = ()
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001325
1326 @abstractmethod
1327 def __bytes__(self) -> bytes:
1328 pass
1329
1330
Guido van Rossumd70fe632015-08-05 12:11:06 +02001331class SupportsAbs(_Protocol[T_co]):
1332 __slots__ = ()
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001333
1334 @abstractmethod
Guido van Rossumd70fe632015-08-05 12:11:06 +02001335 def __abs__(self) -> T_co:
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001336 pass
1337
1338
Guido van Rossumd70fe632015-08-05 12:11:06 +02001339class SupportsRound(_Protocol[T_co]):
1340 __slots__ = ()
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001341
1342 @abstractmethod
Guido van Rossumd70fe632015-08-05 12:11:06 +02001343 def __round__(self, ndigits: int = 0) -> T_co:
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001344 pass
1345
1346
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001347def _make_nmtuple(name, types):
Guido van Rossum2f841442016-11-15 09:48:06 -08001348 msg = "NamedTuple('Name', [(f0, t0), (f1, t1), ...]); each t must be a type"
1349 types = [(n, _type_check(t, msg)) for n, t in types]
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001350 nm_tpl = collections.namedtuple(name, [n for n, t in types])
Guido van Rossum83ec3022017-01-17 20:43:28 -08001351 # Prior to PEP 526, only _field_types attribute was assigned.
1352 # Now, both __annotations__ and _field_types are used to maintain compatibility.
1353 nm_tpl.__annotations__ = nm_tpl._field_types = collections.OrderedDict(types)
Guido van Rossum557d1eb2015-11-19 08:16:31 -08001354 try:
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001355 nm_tpl.__module__ = sys._getframe(2).f_globals.get('__name__', '__main__')
Guido van Rossum557d1eb2015-11-19 08:16:31 -08001356 except (AttributeError, ValueError):
1357 pass
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001358 return nm_tpl
1359
1360
Ivan Levkivskyib692dc82017-02-13 22:50:14 +01001361# attributes prohibited to set in NamedTuple class syntax
1362_prohibited = ('__new__', '__init__', '__slots__', '__getnewargs__',
1363 '_fields', '_field_defaults', '_field_types',
Ivan Levkivskyif06e0212017-05-02 19:14:07 +02001364 '_make', '_replace', '_asdict', '_source')
Ivan Levkivskyib692dc82017-02-13 22:50:14 +01001365
1366_special = ('__module__', '__name__', '__qualname__', '__annotations__')
1367
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001368
Guido van Rossum2f841442016-11-15 09:48:06 -08001369class NamedTupleMeta(type):
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001370
Guido van Rossum2f841442016-11-15 09:48:06 -08001371 def __new__(cls, typename, bases, ns):
1372 if ns.get('_root', False):
1373 return super().__new__(cls, typename, bases, ns)
Guido van Rossum2f841442016-11-15 09:48:06 -08001374 types = ns.get('__annotations__', {})
Guido van Rossum3c268be2017-01-18 08:03:50 -08001375 nm_tpl = _make_nmtuple(typename, types.items())
1376 defaults = []
1377 defaults_dict = {}
1378 for field_name in types:
1379 if field_name in ns:
1380 default_value = ns[field_name]
1381 defaults.append(default_value)
1382 defaults_dict[field_name] = default_value
1383 elif defaults:
Guido van Rossumd7adfe12017-01-22 17:43:53 -08001384 raise TypeError("Non-default namedtuple field {field_name} cannot "
1385 "follow default field(s) {default_names}"
Guido van Rossum3c268be2017-01-18 08:03:50 -08001386 .format(field_name=field_name,
1387 default_names=', '.join(defaults_dict.keys())))
1388 nm_tpl.__new__.__defaults__ = tuple(defaults)
1389 nm_tpl._field_defaults = defaults_dict
Guido van Rossum95919c02017-01-22 17:47:20 -08001390 # update from user namespace without overriding special namedtuple attributes
1391 for key in ns:
Ivan Levkivskyib692dc82017-02-13 22:50:14 +01001392 if key in _prohibited:
1393 raise AttributeError("Cannot overwrite NamedTuple attribute " + key)
1394 elif key not in _special and key not in nm_tpl._fields:
Guido van Rossum95919c02017-01-22 17:47:20 -08001395 setattr(nm_tpl, key, ns[key])
Guido van Rossum3c268be2017-01-18 08:03:50 -08001396 return nm_tpl
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001397
Guido van Rossumd7adfe12017-01-22 17:43:53 -08001398
Guido van Rossum2f841442016-11-15 09:48:06 -08001399class NamedTuple(metaclass=NamedTupleMeta):
1400 """Typed version of namedtuple.
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001401
Guido van Rossum2f841442016-11-15 09:48:06 -08001402 Usage in Python versions >= 3.6::
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001403
Guido van Rossum2f841442016-11-15 09:48:06 -08001404 class Employee(NamedTuple):
1405 name: str
1406 id: int
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001407
Guido van Rossum2f841442016-11-15 09:48:06 -08001408 This is equivalent to::
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001409
Guido van Rossum2f841442016-11-15 09:48:06 -08001410 Employee = collections.namedtuple('Employee', ['name', 'id'])
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001411
Guido van Rossum83ec3022017-01-17 20:43:28 -08001412 The resulting class has extra __annotations__ and _field_types
1413 attributes, giving an ordered dict mapping field names to types.
1414 __annotations__ should be preferred, while _field_types
1415 is kept to maintain pre PEP 526 compatibility. (The field names
Guido van Rossum2f841442016-11-15 09:48:06 -08001416 are in the _fields attribute, which is part of the namedtuple
1417 API.) Alternative equivalent keyword syntax is also accepted::
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001418
Guido van Rossum2f841442016-11-15 09:48:06 -08001419 Employee = NamedTuple('Employee', name=str, id=int)
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001420
Guido van Rossum2f841442016-11-15 09:48:06 -08001421 In Python versions <= 3.5 use::
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001422
Guido van Rossum2f841442016-11-15 09:48:06 -08001423 Employee = NamedTuple('Employee', [('name', str), ('id', int)])
1424 """
1425 _root = True
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001426
Guido van Rossum2f841442016-11-15 09:48:06 -08001427 def __new__(self, typename, fields=None, **kwargs):
Guido van Rossum2f841442016-11-15 09:48:06 -08001428 if fields is None:
1429 fields = kwargs.items()
1430 elif kwargs:
1431 raise TypeError("Either list of fields or keywords"
1432 " can be provided to NamedTuple, not both")
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001433 return _make_nmtuple(typename, fields)
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001434
1435
Guido van Rossum91185fe2016-06-08 11:19:11 -07001436def NewType(name, tp):
1437 """NewType creates simple unique types with almost zero
1438 runtime overhead. NewType(name, tp) is considered a subtype of tp
1439 by static type checkers. At runtime, NewType(name, tp) returns
1440 a dummy function that simply returns its argument. Usage::
1441
1442 UserId = NewType('UserId', int)
1443
1444 def name_by_id(user_id: UserId) -> str:
1445 ...
1446
1447 UserId('user') # Fails type check
1448
1449 name_by_id(42) # Fails type check
1450 name_by_id(UserId(42)) # OK
1451
1452 num = UserId(5) + 1 # type: int
1453 """
1454
1455 def new_type(x):
1456 return x
1457
1458 new_type.__name__ = name
1459 new_type.__supertype__ = tp
1460 return new_type
1461
1462
Guido van Rossum0e0563c2016-04-05 14:54:25 -07001463# Python-version-specific alias (Python 2: unicode; Python 3: str)
1464Text = str
1465
1466
Guido van Rossum91185fe2016-06-08 11:19:11 -07001467# Constant that's True when type checking, but False here.
1468TYPE_CHECKING = False
1469
1470
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001471class IO(Generic[AnyStr]):
1472 """Generic base class for TextIO and BinaryIO.
1473
1474 This is an abstract, generic version of the return of open().
1475
1476 NOTE: This does not distinguish between the different possible
1477 classes (text vs. binary, read vs. write vs. read/write,
1478 append-only, unbuffered). The TextIO and BinaryIO subclasses
1479 below capture the distinctions between text vs. binary, which is
1480 pervasive in the interface; however we currently do not offer a
1481 way to track the other distinctions in the type system.
1482 """
1483
Guido van Rossumd70fe632015-08-05 12:11:06 +02001484 __slots__ = ()
1485
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001486 @abstractproperty
1487 def mode(self) -> str:
1488 pass
1489
1490 @abstractproperty
1491 def name(self) -> str:
1492 pass
1493
1494 @abstractmethod
1495 def close(self) -> None:
1496 pass
1497
1498 @abstractmethod
1499 def closed(self) -> bool:
1500 pass
1501
1502 @abstractmethod
1503 def fileno(self) -> int:
1504 pass
1505
1506 @abstractmethod
1507 def flush(self) -> None:
1508 pass
1509
1510 @abstractmethod
1511 def isatty(self) -> bool:
1512 pass
1513
1514 @abstractmethod
1515 def read(self, n: int = -1) -> AnyStr:
1516 pass
1517
1518 @abstractmethod
1519 def readable(self) -> bool:
1520 pass
1521
1522 @abstractmethod
1523 def readline(self, limit: int = -1) -> AnyStr:
1524 pass
1525
1526 @abstractmethod
1527 def readlines(self, hint: int = -1) -> List[AnyStr]:
1528 pass
1529
1530 @abstractmethod
1531 def seek(self, offset: int, whence: int = 0) -> int:
1532 pass
1533
1534 @abstractmethod
1535 def seekable(self) -> bool:
1536 pass
1537
1538 @abstractmethod
1539 def tell(self) -> int:
1540 pass
1541
1542 @abstractmethod
1543 def truncate(self, size: int = None) -> int:
1544 pass
1545
1546 @abstractmethod
1547 def writable(self) -> bool:
1548 pass
1549
1550 @abstractmethod
1551 def write(self, s: AnyStr) -> int:
1552 pass
1553
1554 @abstractmethod
1555 def writelines(self, lines: List[AnyStr]) -> None:
1556 pass
1557
1558 @abstractmethod
1559 def __enter__(self) -> 'IO[AnyStr]':
1560 pass
1561
1562 @abstractmethod
1563 def __exit__(self, type, value, traceback) -> None:
1564 pass
1565
1566
1567class BinaryIO(IO[bytes]):
1568 """Typed version of the return of open() in binary mode."""
1569
Guido van Rossumd70fe632015-08-05 12:11:06 +02001570 __slots__ = ()
1571
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001572 @abstractmethod
1573 def write(self, s: Union[bytes, bytearray]) -> int:
1574 pass
1575
1576 @abstractmethod
1577 def __enter__(self) -> 'BinaryIO':
1578 pass
1579
1580
1581class TextIO(IO[str]):
1582 """Typed version of the return of open() in text mode."""
1583
Guido van Rossumd70fe632015-08-05 12:11:06 +02001584 __slots__ = ()
1585
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001586 @abstractproperty
1587 def buffer(self) -> BinaryIO:
1588 pass
1589
1590 @abstractproperty
1591 def encoding(self) -> str:
1592 pass
1593
1594 @abstractproperty
Guido van Rossum991d14f2016-11-09 13:12:51 -08001595 def errors(self) -> Optional[str]:
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001596 pass
1597
1598 @abstractproperty
1599 def line_buffering(self) -> bool:
1600 pass
1601
1602 @abstractproperty
1603 def newlines(self) -> Any:
1604 pass
1605
1606 @abstractmethod
1607 def __enter__(self) -> 'TextIO':
1608 pass
1609
1610
1611class io:
1612 """Wrapper namespace for IO generic classes."""
1613
1614 __all__ = ['IO', 'TextIO', 'BinaryIO']
1615 IO = IO
1616 TextIO = TextIO
1617 BinaryIO = BinaryIO
1618
Guido van Rossumd7adfe12017-01-22 17:43:53 -08001619
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001620io.__name__ = __name__ + '.io'
1621sys.modules[io.__name__] = io
1622
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001623Pattern = _alias(stdlib_re.Pattern, AnyStr)
1624Match = _alias(stdlib_re.Match, AnyStr)
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001625
1626class re:
1627 """Wrapper namespace for re type aliases."""
1628
1629 __all__ = ['Pattern', 'Match']
1630 Pattern = Pattern
1631 Match = Match
1632
Guido van Rossumd7adfe12017-01-22 17:43:53 -08001633
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001634re.__name__ = __name__ + '.re'
1635sys.modules[re.__name__] = re