blob: 3ac3b93822622b49cdff143a686d0d95f1ddd3c9 [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',
Ivan Levkivskyiac560272018-03-23 21:44:54 +000098 '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
Miss Islington (bot)d0e04c82018-03-26 15:29:06 -0700288class _Immutable:
289 """Mixin to indicate that object should not be copied."""
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000290
Miss Islington (bot)d0e04c82018-03-26 15:29:06 -0700291 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
Miss Islington (bot)d0e04c82018-03-26 15:29:06 -0700340 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
Miss Islington (bot)d0e04c82018-03-26 15:29:06 -0700508def _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)
Miss Islington (bot)d0e04c82018-03-26 15:29:06 -0700552
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__',
Miss Islington (bot)d0e04c82018-03-26 15:29:06 -0700557 '__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
Miss Islington (bot)d0e04c82018-03-26 15:29:06 -0700576 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
Miss Islington (bot)d0e04c82018-03-26 15:29:06 -0700601 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 Levkivskyid911e402018-01-20 11:23:59 +0000614def _is_dunder(attr):
615 return attr.startswith('__') and attr.endswith('__')
Guido van Rossum83ec3022017-01-17 20:43:28 -0800616
Guido van Rossumb24569a2016-11-20 18:01:29 -0800617
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000618class _GenericAlias(_Final, _root=True):
619 """The central part of internal API.
620
621 This represents a generic version of type 'origin' with type arguments 'params'.
622 There are two kind of these aliases: user defined and special. The special ones
623 are wrappers around builtin collections and ABCs in collections.abc. These must
624 have 'name' always set. If 'inst' is False, then the alias can't be instantiated,
625 this is used by e.g. typing.List and typing.Dict.
Guido van Rossum5fc25a82016-10-29 08:54:56 -0700626 """
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000627 def __init__(self, origin, params, *, inst=True, special=False, name=None):
628 self._inst = inst
629 self._special = special
630 if special and name is None:
631 orig_name = origin.__name__
632 name = orig_name[0].title() + orig_name[1:]
633 self._name = name
634 if not isinstance(params, tuple):
635 params = (params,)
Guido van Rossum5fc25a82016-10-29 08:54:56 -0700636 self.__origin__ = origin
Guido van Rossum5fc25a82016-10-29 08:54:56 -0700637 self.__args__ = tuple(... if a is _TypingEllipsis else
638 () if a is _TypingEmpty else
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000639 a for a in params)
640 self.__parameters__ = _collect_type_vars(params)
641 self.__slots__ = None # This is not documented.
642 if not name:
643 self.__module__ = origin.__module__
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700644
Guido van Rossum4cefe742016-09-27 15:20:12 -0700645 @_tp_cache
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700646 def __getitem__(self, params):
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000647 if self.__origin__ in (Generic, _Protocol):
648 # Can't subscript Generic[...] or _Protocol[...].
649 raise TypeError(f"Cannot subscript already-subscripted {self}")
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700650 if not isinstance(params, tuple):
651 params = (params,)
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700652 msg = "Parameters to generic types must be types."
653 params = tuple(_type_check(p, msg) for p in params)
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000654 _check_generic(self, params)
655 return _subs_tvars(self, self.__parameters__, params)
Ivan Levkivskyib692dc82017-02-13 22:50:14 +0100656
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000657 def copy_with(self, params):
658 # We don't copy self._special.
659 return _GenericAlias(self.__origin__, params, name=self._name, inst=self._inst)
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700660
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000661 def __repr__(self):
662 if (self._name != 'Callable' or
663 len(self.__args__) == 2 and self.__args__[0] is Ellipsis):
664 if self._name:
665 name = 'typing.' + self._name
666 else:
667 name = _type_repr(self.__origin__)
668 if not self._special:
669 args = f'[{", ".join([_type_repr(a) for a in self.__args__])}]'
670 else:
671 args = ''
672 return (f'{name}{args}')
673 if self._special:
674 return 'typing.Callable'
675 return (f'typing.Callable'
676 f'[[{", ".join([_type_repr(a) for a in self.__args__[:-1]])}], '
677 f'{_type_repr(self.__args__[-1])}]')
678
679 def __eq__(self, other):
680 if not isinstance(other, _GenericAlias):
681 return NotImplemented
682 if self.__origin__ != other.__origin__:
Ivan Levkivskyib692dc82017-02-13 22:50:14 +0100683 return False
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000684 if self.__origin__ is Union and other.__origin__ is Union:
685 return frozenset(self.__args__) == frozenset(other.__args__)
686 return self.__args__ == other.__args__
Ivan Levkivskyib692dc82017-02-13 22:50:14 +0100687
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000688 def __hash__(self):
689 if self.__origin__ is Union:
690 return hash((Union, frozenset(self.__args__)))
691 return hash((self.__origin__, self.__args__))
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700692
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000693 def __call__(self, *args, **kwargs):
694 if not self._inst:
695 raise TypeError(f"Type {self._name} cannot be instantiated; "
696 f"use {self._name.lower()}() instead")
697 result = self.__origin__(*args, **kwargs)
Guido van Rossum5fc25a82016-10-29 08:54:56 -0700698 try:
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000699 result.__orig_class__ = self
Guido van Rossum5fc25a82016-10-29 08:54:56 -0700700 except AttributeError:
701 pass
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000702 return result
703
704 def __mro_entries__(self, bases):
705 if self._name: # generic version of an ABC or built-in class
706 res = []
707 if self.__origin__ not in bases:
708 res.append(self.__origin__)
709 i = bases.index(self)
710 if not any(isinstance(b, _GenericAlias) or issubclass(b, Generic)
711 for b in bases[i+1:]):
712 res.append(Generic)
713 return tuple(res)
714 if self.__origin__ is Generic:
715 i = bases.index(self)
716 for b in bases[i+1:]:
717 if isinstance(b, _GenericAlias) and b is not self:
718 return ()
719 return (self.__origin__,)
720
721 def __getattr__(self, attr):
722 # We are carefull for copy and pickle.
723 # Also for simplicity we just don't relay all dunder names
724 if '__origin__' in self.__dict__ and not _is_dunder(attr):
725 return getattr(self.__origin__, attr)
726 raise AttributeError(attr)
727
728 def __setattr__(self, attr, val):
729 if _is_dunder(attr) or attr in ('_name', '_inst', '_special'):
730 super().__setattr__(attr, val)
731 else:
732 setattr(self.__origin__, attr, val)
733
734 def __instancecheck__(self, obj):
735 return self.__subclasscheck__(type(obj))
736
737 def __subclasscheck__(self, cls):
738 if self._special:
739 if not isinstance(cls, _GenericAlias):
740 return issubclass(cls, self.__origin__)
741 if cls._special:
742 return issubclass(cls.__origin__, self.__origin__)
743 raise TypeError("Subscripted generics cannot be used with"
744 " class and instance checks")
Guido van Rossum5fc25a82016-10-29 08:54:56 -0700745
Miss Islington (bot)d0e04c82018-03-26 15:29:06 -0700746 def __reduce__(self):
747 if self._special:
748 return self._name
749 return super().__reduce__()
750
Guido van Rossum5fc25a82016-10-29 08:54:56 -0700751
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000752class _VariadicGenericAlias(_GenericAlias, _root=True):
753 """Same as _GenericAlias above but for variadic aliases. Currently,
754 this is used only by special internal aliases: Tuple and Callable.
755 """
756 def __getitem__(self, params):
757 if self._name != 'Callable' or not self._special:
758 return self.__getitem_inner__(params)
759 if not isinstance(params, tuple) or len(params) != 2:
760 raise TypeError("Callable must be used as "
761 "Callable[[arg, ...], result].")
762 args, result = params
763 if args is Ellipsis:
764 params = (Ellipsis, result)
765 else:
766 if not isinstance(args, list):
767 raise TypeError(f"Callable[args, result]: args must be a list."
768 f" Got {args}")
769 params = (tuple(args), result)
770 return self.__getitem_inner__(params)
771
772 @_tp_cache
773 def __getitem_inner__(self, params):
774 if self.__origin__ is tuple and self._special:
775 if params == ():
776 return self.copy_with((_TypingEmpty,))
777 if not isinstance(params, tuple):
778 params = (params,)
779 if len(params) == 2 and params[1] is ...:
780 msg = "Tuple[t, ...]: t must be a type."
781 p = _type_check(params[0], msg)
782 return self.copy_with((p, _TypingEllipsis))
783 msg = "Tuple[t0, t1, ...]: each t must be a type."
784 params = tuple(_type_check(p, msg) for p in params)
785 return self.copy_with(params)
786 if self.__origin__ is collections.abc.Callable and self._special:
787 args, result = params
788 msg = "Callable[args, result]: result must be a type."
789 result = _type_check(result, msg)
790 if args is Ellipsis:
791 return self.copy_with((_TypingEllipsis, result))
792 msg = "Callable[[arg, ...], result]: each arg must be a type."
793 args = tuple(_type_check(arg, msg) for arg in args)
794 params = args + (result,)
795 return self.copy_with(params)
796 return super().__getitem__(params)
797
798
799class Generic:
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700800 """Abstract base class for generic types.
801
Guido van Rossumb24569a2016-11-20 18:01:29 -0800802 A generic type is typically declared by inheriting from
803 this class parameterized with one or more type variables.
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700804 For example, a generic mapping type might be defined as::
805
806 class Mapping(Generic[KT, VT]):
807 def __getitem__(self, key: KT) -> VT:
808 ...
809 # Etc.
810
811 This class can then be used as follows::
812
Guido van Rossumbd5b9a02016-04-05 08:28:52 -0700813 def lookup_name(mapping: Mapping[KT, VT], key: KT, default: VT) -> VT:
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700814 try:
815 return mapping[key]
816 except KeyError:
817 return default
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700818 """
Guido van Rossumd70fe632015-08-05 12:11:06 +0200819 __slots__ = ()
820
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700821 def __new__(cls, *args, **kwds):
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000822 if cls is Generic:
Guido van Rossum62fe1bb2016-10-29 16:05:26 -0700823 raise TypeError("Type Generic cannot be instantiated; "
824 "it can be used only as a base class")
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000825 return super().__new__(cls)
826
827 @_tp_cache
828 def __class_getitem__(cls, params):
829 if not isinstance(params, tuple):
830 params = (params,)
831 if not params and cls is not Tuple:
832 raise TypeError(
833 f"Parameter list to {cls.__qualname__}[...] cannot be empty")
834 msg = "Parameters to generic types must be types."
835 params = tuple(_type_check(p, msg) for p in params)
836 if cls is Generic:
837 # Generic can only be subscripted with unique type variables.
838 if not all(isinstance(p, TypeVar) for p in params):
839 raise TypeError(
840 "Parameters to Generic[...] must all be type variables")
841 if len(set(params)) != len(params):
842 raise TypeError(
843 "Parameters to Generic[...] must all be unique")
844 elif cls is _Protocol:
845 # _Protocol is internal at the moment, just skip the check
846 pass
847 else:
848 # Subscripting a regular Generic subclass.
849 _check_generic(cls, params)
850 return _GenericAlias(cls, params)
851
852 def __init_subclass__(cls, *args, **kwargs):
Miss Islington (bot)bd85c972018-04-04 09:51:34 -0700853 super().__init_subclass__(*args, **kwargs)
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000854 tvars = []
855 if '__orig_bases__' in cls.__dict__:
856 error = Generic in cls.__orig_bases__
857 else:
858 error = Generic in cls.__bases__ and cls.__name__ != '_Protocol'
859 if error:
860 raise TypeError("Cannot inherit from plain Generic")
861 if '__orig_bases__' in cls.__dict__:
862 tvars = _collect_type_vars(cls.__orig_bases__)
863 # Look for Generic[T1, ..., Tn].
864 # If found, tvars must be a subset of it.
865 # If not found, tvars is it.
866 # Also check for and reject plain Generic,
867 # and reject multiple Generic[...].
868 gvars = None
869 for base in cls.__orig_bases__:
870 if (isinstance(base, _GenericAlias) and
871 base.__origin__ is Generic):
872 if gvars is not None:
873 raise TypeError(
874 "Cannot inherit from Generic[...] multiple types.")
875 gvars = base.__parameters__
876 if gvars is None:
877 gvars = tvars
878 else:
879 tvarset = set(tvars)
880 gvarset = set(gvars)
881 if not tvarset <= gvarset:
882 s_vars = ', '.join(str(t) for t in tvars if t not in gvarset)
883 s_args = ', '.join(str(g) for g in gvars)
884 raise TypeError(f"Some type variables ({s_vars}) are"
885 f" not listed in Generic[{s_args}]")
886 tvars = gvars
887 cls.__parameters__ = tuple(tvars)
Guido van Rossum5fc25a82016-10-29 08:54:56 -0700888
889
890class _TypingEmpty:
Guido van Rossumb24569a2016-11-20 18:01:29 -0800891 """Internal placeholder for () or []. Used by TupleMeta and CallableMeta
892 to allow empty list/tuple in specific places, without allowing them
Guido van Rossum5fc25a82016-10-29 08:54:56 -0700893 to sneak in where prohibited.
894 """
895
896
897class _TypingEllipsis:
Guido van Rossumb24569a2016-11-20 18:01:29 -0800898 """Internal placeholder for ... (ellipsis)."""
Guido van Rossum5fc25a82016-10-29 08:54:56 -0700899
900
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700901def cast(typ, val):
902 """Cast a value to a type.
903
904 This returns the value unchanged. To the type checker this
905 signals that the return value has the designated type, but at
906 runtime we intentionally don't check anything (we want this
907 to be as fast as possible).
908 """
909 return val
910
911
912def _get_defaults(func):
913 """Internal helper to extract the default arguments, by name."""
Guido van Rossum991d14f2016-11-09 13:12:51 -0800914 try:
915 code = func.__code__
916 except AttributeError:
917 # Some built-in functions don't have __code__, __defaults__, etc.
918 return {}
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700919 pos_count = code.co_argcount
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700920 arg_names = code.co_varnames
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700921 arg_names = arg_names[:pos_count]
922 defaults = func.__defaults__ or ()
923 kwdefaults = func.__kwdefaults__
924 res = dict(kwdefaults) if kwdefaults else {}
925 pos_offset = pos_count - len(defaults)
926 for name, value in zip(arg_names[pos_offset:], defaults):
927 assert name not in res
928 res[name] = value
929 return res
930
931
Ivan Levkivskyib692dc82017-02-13 22:50:14 +0100932_allowed_types = (types.FunctionType, types.BuiltinFunctionType,
933 types.MethodType, types.ModuleType,
Ivan Levkivskyif06e0212017-05-02 19:14:07 +0200934 WrapperDescriptorType, MethodWrapperType, MethodDescriptorType)
Ivan Levkivskyib692dc82017-02-13 22:50:14 +0100935
936
Guido van Rossum991d14f2016-11-09 13:12:51 -0800937def get_type_hints(obj, globalns=None, localns=None):
938 """Return type hints for an object.
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700939
Guido van Rossum991d14f2016-11-09 13:12:51 -0800940 This is often the same as obj.__annotations__, but it handles
941 forward references encoded as string literals, and if necessary
942 adds Optional[t] if a default value equal to None is set.
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700943
Guido van Rossum991d14f2016-11-09 13:12:51 -0800944 The argument may be a module, class, method, or function. The annotations
945 are returned as a dictionary. For classes, annotations include also
946 inherited members.
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700947
Guido van Rossum991d14f2016-11-09 13:12:51 -0800948 TypeError is raised if the argument is not of a type that can contain
949 annotations, and an empty dictionary is returned if no annotations are
950 present.
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700951
Guido van Rossum991d14f2016-11-09 13:12:51 -0800952 BEWARE -- the behavior of globalns and localns is counterintuitive
953 (unless you are familiar with how eval() and exec() work). The
954 search order is locals first, then globals.
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700955
Guido van Rossum991d14f2016-11-09 13:12:51 -0800956 - If no dict arguments are passed, an attempt is made to use the
Łukasz Langaf350a262017-09-14 14:33:00 -0400957 globals from obj (or the respective module's globals for classes),
958 and these are also used as the locals. If the object does not appear
959 to have globals, an empty dictionary is used.
Guido van Rossum0a6976d2016-09-11 15:34:56 -0700960
Guido van Rossum991d14f2016-11-09 13:12:51 -0800961 - If one dict argument is passed, it is used for both globals and
962 locals.
Guido van Rossum0a6976d2016-09-11 15:34:56 -0700963
Guido van Rossum991d14f2016-11-09 13:12:51 -0800964 - If two dict arguments are passed, they specify globals and
965 locals, respectively.
966 """
Guido van Rossum0a6976d2016-09-11 15:34:56 -0700967
Guido van Rossum991d14f2016-11-09 13:12:51 -0800968 if getattr(obj, '__no_type_check__', None):
969 return {}
Guido van Rossum991d14f2016-11-09 13:12:51 -0800970 # Classes require a special treatment.
971 if isinstance(obj, type):
972 hints = {}
973 for base in reversed(obj.__mro__):
Łukasz Langaf350a262017-09-14 14:33:00 -0400974 if globalns is None:
975 base_globals = sys.modules[base.__module__].__dict__
976 else:
977 base_globals = globalns
Guido van Rossum991d14f2016-11-09 13:12:51 -0800978 ann = base.__dict__.get('__annotations__', {})
979 for name, value in ann.items():
980 if value is None:
981 value = type(None)
982 if isinstance(value, str):
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000983 value = ForwardRef(value)
Łukasz Langaf350a262017-09-14 14:33:00 -0400984 value = _eval_type(value, base_globals, localns)
Guido van Rossum991d14f2016-11-09 13:12:51 -0800985 hints[name] = value
986 return hints
Łukasz Langaf350a262017-09-14 14:33:00 -0400987
988 if globalns is None:
989 if isinstance(obj, types.ModuleType):
990 globalns = obj.__dict__
991 else:
992 globalns = getattr(obj, '__globals__', {})
993 if localns is None:
994 localns = globalns
995 elif localns is None:
996 localns = globalns
Guido van Rossum991d14f2016-11-09 13:12:51 -0800997 hints = getattr(obj, '__annotations__', None)
998 if hints is None:
999 # Return empty annotations for something that _could_ have them.
Ivan Levkivskyib692dc82017-02-13 22:50:14 +01001000 if isinstance(obj, _allowed_types):
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001001 return {}
Guido van Rossum991d14f2016-11-09 13:12:51 -08001002 else:
1003 raise TypeError('{!r} is not a module, class, method, '
1004 'or function.'.format(obj))
1005 defaults = _get_defaults(obj)
1006 hints = dict(hints)
1007 for name, value in hints.items():
1008 if value is None:
1009 value = type(None)
1010 if isinstance(value, str):
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001011 value = ForwardRef(value)
Guido van Rossum991d14f2016-11-09 13:12:51 -08001012 value = _eval_type(value, globalns, localns)
1013 if name in defaults and defaults[name] is None:
1014 value = Optional[value]
1015 hints[name] = value
1016 return hints
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001017
1018
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001019def no_type_check(arg):
1020 """Decorator to indicate that annotations are not type hints.
1021
1022 The argument must be a class or function; if it is a class, it
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001023 applies recursively to all methods and classes defined in that class
1024 (but not to methods defined in its superclasses or subclasses).
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001025
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001026 This mutates the function(s) or class(es) in place.
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001027 """
1028 if isinstance(arg, type):
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001029 arg_attrs = arg.__dict__.copy()
1030 for attr, val in arg.__dict__.items():
Ivan Levkivskyi65bc6202017-09-14 01:25:15 +02001031 if val in arg.__bases__ + (arg,):
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001032 arg_attrs.pop(attr)
1033 for obj in arg_attrs.values():
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001034 if isinstance(obj, types.FunctionType):
1035 obj.__no_type_check__ = True
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001036 if isinstance(obj, type):
1037 no_type_check(obj)
1038 try:
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001039 arg.__no_type_check__ = True
Guido van Rossumd7adfe12017-01-22 17:43:53 -08001040 except TypeError: # built-in classes
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001041 pass
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001042 return arg
1043
1044
1045def no_type_check_decorator(decorator):
1046 """Decorator to give another decorator the @no_type_check effect.
1047
1048 This wraps the decorator with something that wraps the decorated
1049 function in @no_type_check.
1050 """
1051
1052 @functools.wraps(decorator)
1053 def wrapped_decorator(*args, **kwds):
1054 func = decorator(*args, **kwds)
1055 func = no_type_check(func)
1056 return func
1057
1058 return wrapped_decorator
1059
1060
Guido van Rossumbd5b9a02016-04-05 08:28:52 -07001061def _overload_dummy(*args, **kwds):
1062 """Helper for @overload to raise when called."""
1063 raise NotImplementedError(
1064 "You should not call an overloaded function. "
1065 "A series of @overload-decorated functions "
1066 "outside a stub module should always be followed "
1067 "by an implementation that is not @overload-ed.")
1068
1069
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001070def overload(func):
Guido van Rossumbd5b9a02016-04-05 08:28:52 -07001071 """Decorator for overloaded functions/methods.
1072
1073 In a stub file, place two or more stub definitions for the same
1074 function in a row, each decorated with @overload. For example:
1075
1076 @overload
1077 def utf8(value: None) -> None: ...
1078 @overload
1079 def utf8(value: bytes) -> bytes: ...
1080 @overload
1081 def utf8(value: str) -> bytes: ...
1082
1083 In a non-stub file (i.e. a regular .py file), do the same but
1084 follow it with an implementation. The implementation should *not*
1085 be decorated with @overload. For example:
1086
1087 @overload
1088 def utf8(value: None) -> None: ...
1089 @overload
1090 def utf8(value: bytes) -> bytes: ...
1091 @overload
1092 def utf8(value: str) -> bytes: ...
1093 def utf8(value):
1094 # implementation goes here
1095 """
1096 return _overload_dummy
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001097
1098
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001099class _ProtocolMeta(type):
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001100 """Internal metaclass for _Protocol.
1101
1102 This exists so _Protocol classes can be generic without deriving
1103 from Generic.
1104 """
1105
Guido van Rossumd70fe632015-08-05 12:11:06 +02001106 def __instancecheck__(self, obj):
Guido van Rossumca4b2522016-11-19 10:32:41 -08001107 if _Protocol not in self.__bases__:
1108 return super().__instancecheck__(obj)
Guido van Rossumd70fe632015-08-05 12:11:06 +02001109 raise TypeError("Protocols cannot be used with isinstance().")
1110
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001111 def __subclasscheck__(self, cls):
1112 if not self._is_protocol:
1113 # No structural checks since this isn't a protocol.
1114 return NotImplemented
1115
1116 if self is _Protocol:
1117 # Every class is a subclass of the empty protocol.
1118 return True
1119
1120 # Find all attributes defined in the protocol.
1121 attrs = self._get_protocol_attrs()
1122
1123 for attr in attrs:
1124 if not any(attr in d.__dict__ for d in cls.__mro__):
1125 return False
1126 return True
1127
1128 def _get_protocol_attrs(self):
1129 # Get all Protocol base classes.
1130 protocol_bases = []
1131 for c in self.__mro__:
1132 if getattr(c, '_is_protocol', False) and c.__name__ != '_Protocol':
1133 protocol_bases.append(c)
1134
1135 # Get attributes included in protocol.
1136 attrs = set()
1137 for base in protocol_bases:
1138 for attr in base.__dict__.keys():
1139 # Include attributes not defined in any non-protocol bases.
1140 for c in self.__mro__:
1141 if (c is not base and attr in c.__dict__ and
1142 not getattr(c, '_is_protocol', False)):
1143 break
1144 else:
1145 if (not attr.startswith('_abc_') and
Guido van Rossumbd5b9a02016-04-05 08:28:52 -07001146 attr != '__abstractmethods__' and
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001147 attr != '__annotations__' and
1148 attr != '__weakref__' and
Guido van Rossumbd5b9a02016-04-05 08:28:52 -07001149 attr != '_is_protocol' and
Ivan Levkivskyi65bc6202017-09-14 01:25:15 +02001150 attr != '_gorg' and
Guido van Rossumbd5b9a02016-04-05 08:28:52 -07001151 attr != '__dict__' and
1152 attr != '__args__' and
1153 attr != '__slots__' and
1154 attr != '_get_protocol_attrs' and
1155 attr != '__next_in_mro__' and
1156 attr != '__parameters__' and
1157 attr != '__origin__' and
Guido van Rossum7ef22d62016-10-21 14:27:58 -07001158 attr != '__orig_bases__' and
Guido van Rossum1cea70f2016-05-18 08:35:00 -07001159 attr != '__extra__' and
Guido van Rossum5fc25a82016-10-29 08:54:56 -07001160 attr != '__tree_hash__' and
Guido van Rossumbd5b9a02016-04-05 08:28:52 -07001161 attr != '__module__'):
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001162 attrs.add(attr)
1163
1164 return attrs
1165
1166
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001167class _Protocol(Generic, metaclass=_ProtocolMeta):
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001168 """Internal base class for protocol classes.
1169
Guido van Rossumb24569a2016-11-20 18:01:29 -08001170 This implements a simple-minded structural issubclass check
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001171 (similar but more general than the one-offs in collections.abc
1172 such as Hashable).
1173 """
1174
Guido van Rossumd70fe632015-08-05 12:11:06 +02001175 __slots__ = ()
1176
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001177 _is_protocol = True
1178
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001179 def __class_getitem__(cls, params):
1180 return super().__class_getitem__(params)
1181
1182
1183# Some unconstrained type variables. These are used by the container types.
1184# (These are not for export.)
1185T = TypeVar('T') # Any type.
1186KT = TypeVar('KT') # Key type.
1187VT = TypeVar('VT') # Value type.
1188T_co = TypeVar('T_co', covariant=True) # Any type covariant containers.
1189V_co = TypeVar('V_co', covariant=True) # Any type covariant containers.
1190VT_co = TypeVar('VT_co', covariant=True) # Value type covariant containers.
1191T_contra = TypeVar('T_contra', contravariant=True) # Ditto contravariant.
1192# Internal type variable used for Type[].
1193CT_co = TypeVar('CT_co', covariant=True, bound=type)
1194
1195# A useful type variable with constraints. This represents string types.
1196# (This one *is* for export!)
1197AnyStr = TypeVar('AnyStr', bytes, str)
1198
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001199
1200# Various ABCs mimicking those in collections.abc.
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001201def _alias(origin, params, inst=True):
1202 return _GenericAlias(origin, params, special=True, inst=inst)
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001203
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001204Hashable = _alias(collections.abc.Hashable, ()) # Not generic.
1205Awaitable = _alias(collections.abc.Awaitable, T_co)
1206Coroutine = _alias(collections.abc.Coroutine, (T_co, T_contra, V_co))
1207AsyncIterable = _alias(collections.abc.AsyncIterable, T_co)
1208AsyncIterator = _alias(collections.abc.AsyncIterator, T_co)
1209Iterable = _alias(collections.abc.Iterable, T_co)
1210Iterator = _alias(collections.abc.Iterator, T_co)
1211Reversible = _alias(collections.abc.Reversible, T_co)
1212Sized = _alias(collections.abc.Sized, ()) # Not generic.
1213Container = _alias(collections.abc.Container, T_co)
1214Collection = _alias(collections.abc.Collection, T_co)
1215Callable = _VariadicGenericAlias(collections.abc.Callable, (), special=True)
1216Callable.__doc__ = \
1217 """Callable type; Callable[[int], str] is a function of (int) -> str.
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001218
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001219 The subscription syntax must always be used with exactly two
1220 values: the argument list and the return type. The argument list
1221 must be a list of types or ellipsis; the return type must be a single type.
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001222
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001223 There is no syntax to indicate optional or keyword arguments,
1224 such function types are rarely used as callback types.
1225 """
1226AbstractSet = _alias(collections.abc.Set, T_co)
1227MutableSet = _alias(collections.abc.MutableSet, T)
1228# NOTE: Mapping is only covariant in the value type.
1229Mapping = _alias(collections.abc.Mapping, (KT, VT_co))
1230MutableMapping = _alias(collections.abc.MutableMapping, (KT, VT))
1231Sequence = _alias(collections.abc.Sequence, T_co)
1232MutableSequence = _alias(collections.abc.MutableSequence, T)
1233ByteString = _alias(collections.abc.ByteString, ()) # Not generic
1234Tuple = _VariadicGenericAlias(tuple, (), inst=False, special=True)
1235Tuple.__doc__ = \
1236 """Tuple type; Tuple[X, Y] is the cross-product type of X and Y.
Guido van Rossum62fe1bb2016-10-29 16:05:26 -07001237
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001238 Example: Tuple[T1, T2] is a tuple of two elements corresponding
1239 to type variables T1 and T2. Tuple[int, float, str] is a tuple
1240 of an int, a float and a string.
Guido van Rossum62fe1bb2016-10-29 16:05:26 -07001241
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001242 To specify a variable-length tuple of homogeneous type, use Tuple[T, ...].
1243 """
1244List = _alias(list, T, inst=False)
1245Deque = _alias(collections.deque, T)
1246Set = _alias(set, T, inst=False)
1247FrozenSet = _alias(frozenset, T_co, inst=False)
1248MappingView = _alias(collections.abc.MappingView, T_co)
1249KeysView = _alias(collections.abc.KeysView, KT)
1250ItemsView = _alias(collections.abc.ItemsView, (KT, VT_co))
1251ValuesView = _alias(collections.abc.ValuesView, VT_co)
1252ContextManager = _alias(contextlib.AbstractContextManager, T_co)
1253AsyncContextManager = _alias(contextlib.AbstractAsyncContextManager, T_co)
1254Dict = _alias(dict, (KT, VT), inst=False)
1255DefaultDict = _alias(collections.defaultdict, (KT, VT))
1256Counter = _alias(collections.Counter, T)
1257ChainMap = _alias(collections.ChainMap, (KT, VT))
1258Generator = _alias(collections.abc.Generator, (T_co, T_contra, V_co))
1259AsyncGenerator = _alias(collections.abc.AsyncGenerator, (T_co, T_contra))
1260Type = _alias(type, CT_co, inst=False)
1261Type.__doc__ = \
1262 """A special construct usable to annotate class objects.
Guido van Rossum62fe1bb2016-10-29 16:05:26 -07001263
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001264 For example, suppose we have the following classes::
Guido van Rossum62fe1bb2016-10-29 16:05:26 -07001265
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001266 class User: ... # Abstract base for User classes
1267 class BasicUser(User): ...
1268 class ProUser(User): ...
1269 class TeamUser(User): ...
Guido van Rossumf17c2002015-12-03 17:31:24 -08001270
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001271 And a function that takes a class argument that's a subclass of
1272 User and returns an instance of the corresponding class::
Guido van Rossumf17c2002015-12-03 17:31:24 -08001273
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001274 U = TypeVar('U', bound=User)
1275 def new_user(user_class: Type[U]) -> U:
1276 user = user_class()
1277 # (Here we could write the user object to a database)
1278 return user
Guido van Rossumf17c2002015-12-03 17:31:24 -08001279
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001280 joe = new_user(BasicUser)
Guido van Rossumf17c2002015-12-03 17:31:24 -08001281
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001282 At this point the type checker knows that joe has type BasicUser.
1283 """
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001284
1285
1286class SupportsInt(_Protocol):
Guido van Rossumd70fe632015-08-05 12:11:06 +02001287 __slots__ = ()
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001288
1289 @abstractmethod
1290 def __int__(self) -> int:
1291 pass
1292
1293
1294class SupportsFloat(_Protocol):
Guido van Rossumd70fe632015-08-05 12:11:06 +02001295 __slots__ = ()
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001296
1297 @abstractmethod
1298 def __float__(self) -> float:
1299 pass
1300
1301
1302class SupportsComplex(_Protocol):
Guido van Rossumd70fe632015-08-05 12:11:06 +02001303 __slots__ = ()
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001304
1305 @abstractmethod
1306 def __complex__(self) -> complex:
1307 pass
1308
1309
1310class SupportsBytes(_Protocol):
Guido van Rossumd70fe632015-08-05 12:11:06 +02001311 __slots__ = ()
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001312
1313 @abstractmethod
1314 def __bytes__(self) -> bytes:
1315 pass
1316
1317
Guido van Rossumd70fe632015-08-05 12:11:06 +02001318class SupportsAbs(_Protocol[T_co]):
1319 __slots__ = ()
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001320
1321 @abstractmethod
Guido van Rossumd70fe632015-08-05 12:11:06 +02001322 def __abs__(self) -> T_co:
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001323 pass
1324
1325
Guido van Rossumd70fe632015-08-05 12:11:06 +02001326class SupportsRound(_Protocol[T_co]):
1327 __slots__ = ()
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001328
1329 @abstractmethod
Guido van Rossumd70fe632015-08-05 12:11:06 +02001330 def __round__(self, ndigits: int = 0) -> T_co:
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001331 pass
1332
1333
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001334def _make_nmtuple(name, types):
Guido van Rossum2f841442016-11-15 09:48:06 -08001335 msg = "NamedTuple('Name', [(f0, t0), (f1, t1), ...]); each t must be a type"
1336 types = [(n, _type_check(t, msg)) for n, t in types]
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001337 nm_tpl = collections.namedtuple(name, [n for n, t in types])
Guido van Rossum83ec3022017-01-17 20:43:28 -08001338 # Prior to PEP 526, only _field_types attribute was assigned.
1339 # Now, both __annotations__ and _field_types are used to maintain compatibility.
1340 nm_tpl.__annotations__ = nm_tpl._field_types = collections.OrderedDict(types)
Guido van Rossum557d1eb2015-11-19 08:16:31 -08001341 try:
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001342 nm_tpl.__module__ = sys._getframe(2).f_globals.get('__name__', '__main__')
Guido van Rossum557d1eb2015-11-19 08:16:31 -08001343 except (AttributeError, ValueError):
1344 pass
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001345 return nm_tpl
1346
1347
Ivan Levkivskyib692dc82017-02-13 22:50:14 +01001348# attributes prohibited to set in NamedTuple class syntax
1349_prohibited = ('__new__', '__init__', '__slots__', '__getnewargs__',
1350 '_fields', '_field_defaults', '_field_types',
Ivan Levkivskyif06e0212017-05-02 19:14:07 +02001351 '_make', '_replace', '_asdict', '_source')
Ivan Levkivskyib692dc82017-02-13 22:50:14 +01001352
1353_special = ('__module__', '__name__', '__qualname__', '__annotations__')
1354
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001355
Guido van Rossum2f841442016-11-15 09:48:06 -08001356class NamedTupleMeta(type):
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001357
Guido van Rossum2f841442016-11-15 09:48:06 -08001358 def __new__(cls, typename, bases, ns):
1359 if ns.get('_root', False):
1360 return super().__new__(cls, typename, bases, ns)
Guido van Rossum2f841442016-11-15 09:48:06 -08001361 types = ns.get('__annotations__', {})
Guido van Rossum3c268be2017-01-18 08:03:50 -08001362 nm_tpl = _make_nmtuple(typename, types.items())
1363 defaults = []
1364 defaults_dict = {}
1365 for field_name in types:
1366 if field_name in ns:
1367 default_value = ns[field_name]
1368 defaults.append(default_value)
1369 defaults_dict[field_name] = default_value
1370 elif defaults:
Guido van Rossumd7adfe12017-01-22 17:43:53 -08001371 raise TypeError("Non-default namedtuple field {field_name} cannot "
1372 "follow default field(s) {default_names}"
Guido van Rossum3c268be2017-01-18 08:03:50 -08001373 .format(field_name=field_name,
1374 default_names=', '.join(defaults_dict.keys())))
1375 nm_tpl.__new__.__defaults__ = tuple(defaults)
1376 nm_tpl._field_defaults = defaults_dict
Guido van Rossum95919c02017-01-22 17:47:20 -08001377 # update from user namespace without overriding special namedtuple attributes
1378 for key in ns:
Ivan Levkivskyib692dc82017-02-13 22:50:14 +01001379 if key in _prohibited:
1380 raise AttributeError("Cannot overwrite NamedTuple attribute " + key)
1381 elif key not in _special and key not in nm_tpl._fields:
Guido van Rossum95919c02017-01-22 17:47:20 -08001382 setattr(nm_tpl, key, ns[key])
Guido van Rossum3c268be2017-01-18 08:03:50 -08001383 return nm_tpl
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001384
Guido van Rossumd7adfe12017-01-22 17:43:53 -08001385
Guido van Rossum2f841442016-11-15 09:48:06 -08001386class NamedTuple(metaclass=NamedTupleMeta):
1387 """Typed version of namedtuple.
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001388
Guido van Rossum2f841442016-11-15 09:48:06 -08001389 Usage in Python versions >= 3.6::
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001390
Guido van Rossum2f841442016-11-15 09:48:06 -08001391 class Employee(NamedTuple):
1392 name: str
1393 id: int
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001394
Guido van Rossum2f841442016-11-15 09:48:06 -08001395 This is equivalent to::
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001396
Guido van Rossum2f841442016-11-15 09:48:06 -08001397 Employee = collections.namedtuple('Employee', ['name', 'id'])
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001398
Guido van Rossum83ec3022017-01-17 20:43:28 -08001399 The resulting class has extra __annotations__ and _field_types
1400 attributes, giving an ordered dict mapping field names to types.
1401 __annotations__ should be preferred, while _field_types
1402 is kept to maintain pre PEP 526 compatibility. (The field names
Guido van Rossum2f841442016-11-15 09:48:06 -08001403 are in the _fields attribute, which is part of the namedtuple
1404 API.) Alternative equivalent keyword syntax is also accepted::
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001405
Guido van Rossum2f841442016-11-15 09:48:06 -08001406 Employee = NamedTuple('Employee', name=str, id=int)
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001407
Guido van Rossum2f841442016-11-15 09:48:06 -08001408 In Python versions <= 3.5 use::
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001409
Guido van Rossum2f841442016-11-15 09:48:06 -08001410 Employee = NamedTuple('Employee', [('name', str), ('id', int)])
1411 """
1412 _root = True
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001413
Guido van Rossum2f841442016-11-15 09:48:06 -08001414 def __new__(self, typename, fields=None, **kwargs):
Guido van Rossum2f841442016-11-15 09:48:06 -08001415 if fields is None:
1416 fields = kwargs.items()
1417 elif kwargs:
1418 raise TypeError("Either list of fields or keywords"
1419 " can be provided to NamedTuple, not both")
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001420 return _make_nmtuple(typename, fields)
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001421
1422
Guido van Rossum91185fe2016-06-08 11:19:11 -07001423def NewType(name, tp):
1424 """NewType creates simple unique types with almost zero
1425 runtime overhead. NewType(name, tp) is considered a subtype of tp
1426 by static type checkers. At runtime, NewType(name, tp) returns
1427 a dummy function that simply returns its argument. Usage::
1428
1429 UserId = NewType('UserId', int)
1430
1431 def name_by_id(user_id: UserId) -> str:
1432 ...
1433
1434 UserId('user') # Fails type check
1435
1436 name_by_id(42) # Fails type check
1437 name_by_id(UserId(42)) # OK
1438
1439 num = UserId(5) + 1 # type: int
1440 """
1441
1442 def new_type(x):
1443 return x
1444
1445 new_type.__name__ = name
1446 new_type.__supertype__ = tp
1447 return new_type
1448
1449
Guido van Rossum0e0563c2016-04-05 14:54:25 -07001450# Python-version-specific alias (Python 2: unicode; Python 3: str)
1451Text = str
1452
1453
Guido van Rossum91185fe2016-06-08 11:19:11 -07001454# Constant that's True when type checking, but False here.
1455TYPE_CHECKING = False
1456
1457
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001458class IO(Generic[AnyStr]):
1459 """Generic base class for TextIO and BinaryIO.
1460
1461 This is an abstract, generic version of the return of open().
1462
1463 NOTE: This does not distinguish between the different possible
1464 classes (text vs. binary, read vs. write vs. read/write,
1465 append-only, unbuffered). The TextIO and BinaryIO subclasses
1466 below capture the distinctions between text vs. binary, which is
1467 pervasive in the interface; however we currently do not offer a
1468 way to track the other distinctions in the type system.
1469 """
1470
Guido van Rossumd70fe632015-08-05 12:11:06 +02001471 __slots__ = ()
1472
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001473 @abstractproperty
1474 def mode(self) -> str:
1475 pass
1476
1477 @abstractproperty
1478 def name(self) -> str:
1479 pass
1480
1481 @abstractmethod
1482 def close(self) -> None:
1483 pass
1484
1485 @abstractmethod
1486 def closed(self) -> bool:
1487 pass
1488
1489 @abstractmethod
1490 def fileno(self) -> int:
1491 pass
1492
1493 @abstractmethod
1494 def flush(self) -> None:
1495 pass
1496
1497 @abstractmethod
1498 def isatty(self) -> bool:
1499 pass
1500
1501 @abstractmethod
1502 def read(self, n: int = -1) -> AnyStr:
1503 pass
1504
1505 @abstractmethod
1506 def readable(self) -> bool:
1507 pass
1508
1509 @abstractmethod
1510 def readline(self, limit: int = -1) -> AnyStr:
1511 pass
1512
1513 @abstractmethod
1514 def readlines(self, hint: int = -1) -> List[AnyStr]:
1515 pass
1516
1517 @abstractmethod
1518 def seek(self, offset: int, whence: int = 0) -> int:
1519 pass
1520
1521 @abstractmethod
1522 def seekable(self) -> bool:
1523 pass
1524
1525 @abstractmethod
1526 def tell(self) -> int:
1527 pass
1528
1529 @abstractmethod
1530 def truncate(self, size: int = None) -> int:
1531 pass
1532
1533 @abstractmethod
1534 def writable(self) -> bool:
1535 pass
1536
1537 @abstractmethod
1538 def write(self, s: AnyStr) -> int:
1539 pass
1540
1541 @abstractmethod
1542 def writelines(self, lines: List[AnyStr]) -> None:
1543 pass
1544
1545 @abstractmethod
1546 def __enter__(self) -> 'IO[AnyStr]':
1547 pass
1548
1549 @abstractmethod
1550 def __exit__(self, type, value, traceback) -> None:
1551 pass
1552
1553
1554class BinaryIO(IO[bytes]):
1555 """Typed version of the return of open() in binary mode."""
1556
Guido van Rossumd70fe632015-08-05 12:11:06 +02001557 __slots__ = ()
1558
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001559 @abstractmethod
1560 def write(self, s: Union[bytes, bytearray]) -> int:
1561 pass
1562
1563 @abstractmethod
1564 def __enter__(self) -> 'BinaryIO':
1565 pass
1566
1567
1568class TextIO(IO[str]):
1569 """Typed version of the return of open() in text mode."""
1570
Guido van Rossumd70fe632015-08-05 12:11:06 +02001571 __slots__ = ()
1572
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001573 @abstractproperty
1574 def buffer(self) -> BinaryIO:
1575 pass
1576
1577 @abstractproperty
1578 def encoding(self) -> str:
1579 pass
1580
1581 @abstractproperty
Guido van Rossum991d14f2016-11-09 13:12:51 -08001582 def errors(self) -> Optional[str]:
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001583 pass
1584
1585 @abstractproperty
1586 def line_buffering(self) -> bool:
1587 pass
1588
1589 @abstractproperty
1590 def newlines(self) -> Any:
1591 pass
1592
1593 @abstractmethod
1594 def __enter__(self) -> 'TextIO':
1595 pass
1596
1597
1598class io:
1599 """Wrapper namespace for IO generic classes."""
1600
1601 __all__ = ['IO', 'TextIO', 'BinaryIO']
1602 IO = IO
1603 TextIO = TextIO
1604 BinaryIO = BinaryIO
1605
Guido van Rossumd7adfe12017-01-22 17:43:53 -08001606
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001607io.__name__ = __name__ + '.io'
1608sys.modules[io.__name__] = io
1609
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001610Pattern = _alias(stdlib_re.Pattern, AnyStr)
1611Match = _alias(stdlib_re.Match, AnyStr)
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001612
1613class re:
1614 """Wrapper namespace for re type aliases."""
1615
1616 __all__ = ['Pattern', 'Match']
1617 Pattern = Pattern
1618 Match = Match
1619
Guido van Rossumd7adfe12017-01-22 17:43:53 -08001620
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001621re.__name__ = __name__ + '.re'
1622sys.modules[re.__name__] = re