blob: 510574c413e300067fd25181f3ccce07dfdca2d2 [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 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
Ivan Levkivskyi83494032018-03-26 23:01:12 +0100746 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):
853 tvars = []
854 if '__orig_bases__' in cls.__dict__:
855 error = Generic in cls.__orig_bases__
856 else:
857 error = Generic in cls.__bases__ and cls.__name__ != '_Protocol'
858 if error:
859 raise TypeError("Cannot inherit from plain Generic")
860 if '__orig_bases__' in cls.__dict__:
861 tvars = _collect_type_vars(cls.__orig_bases__)
862 # Look for Generic[T1, ..., Tn].
863 # If found, tvars must be a subset of it.
864 # If not found, tvars is it.
865 # Also check for and reject plain Generic,
866 # and reject multiple Generic[...].
867 gvars = None
868 for base in cls.__orig_bases__:
869 if (isinstance(base, _GenericAlias) and
870 base.__origin__ is Generic):
871 if gvars is not None:
872 raise TypeError(
873 "Cannot inherit from Generic[...] multiple types.")
874 gvars = base.__parameters__
875 if gvars is None:
876 gvars = tvars
877 else:
878 tvarset = set(tvars)
879 gvarset = set(gvars)
880 if not tvarset <= gvarset:
881 s_vars = ', '.join(str(t) for t in tvars if t not in gvarset)
882 s_args = ', '.join(str(g) for g in gvars)
883 raise TypeError(f"Some type variables ({s_vars}) are"
884 f" not listed in Generic[{s_args}]")
885 tvars = gvars
886 cls.__parameters__ = tuple(tvars)
Guido van Rossum5fc25a82016-10-29 08:54:56 -0700887
888
889class _TypingEmpty:
Guido van Rossumb24569a2016-11-20 18:01:29 -0800890 """Internal placeholder for () or []. Used by TupleMeta and CallableMeta
891 to allow empty list/tuple in specific places, without allowing them
Guido van Rossum5fc25a82016-10-29 08:54:56 -0700892 to sneak in where prohibited.
893 """
894
895
896class _TypingEllipsis:
Guido van Rossumb24569a2016-11-20 18:01:29 -0800897 """Internal placeholder for ... (ellipsis)."""
Guido van Rossum5fc25a82016-10-29 08:54:56 -0700898
899
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700900def cast(typ, val):
901 """Cast a value to a type.
902
903 This returns the value unchanged. To the type checker this
904 signals that the return value has the designated type, but at
905 runtime we intentionally don't check anything (we want this
906 to be as fast as possible).
907 """
908 return val
909
910
911def _get_defaults(func):
912 """Internal helper to extract the default arguments, by name."""
Guido van Rossum991d14f2016-11-09 13:12:51 -0800913 try:
914 code = func.__code__
915 except AttributeError:
916 # Some built-in functions don't have __code__, __defaults__, etc.
917 return {}
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700918 pos_count = code.co_argcount
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700919 arg_names = code.co_varnames
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700920 arg_names = arg_names[:pos_count]
921 defaults = func.__defaults__ or ()
922 kwdefaults = func.__kwdefaults__
923 res = dict(kwdefaults) if kwdefaults else {}
924 pos_offset = pos_count - len(defaults)
925 for name, value in zip(arg_names[pos_offset:], defaults):
926 assert name not in res
927 res[name] = value
928 return res
929
930
Ivan Levkivskyib692dc82017-02-13 22:50:14 +0100931_allowed_types = (types.FunctionType, types.BuiltinFunctionType,
932 types.MethodType, types.ModuleType,
Ivan Levkivskyif06e0212017-05-02 19:14:07 +0200933 WrapperDescriptorType, MethodWrapperType, MethodDescriptorType)
Ivan Levkivskyib692dc82017-02-13 22:50:14 +0100934
935
Guido van Rossum991d14f2016-11-09 13:12:51 -0800936def get_type_hints(obj, globalns=None, localns=None):
937 """Return type hints for an object.
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700938
Guido van Rossum991d14f2016-11-09 13:12:51 -0800939 This is often the same as obj.__annotations__, but it handles
940 forward references encoded as string literals, and if necessary
941 adds Optional[t] if a default value equal to None is set.
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700942
Guido van Rossum991d14f2016-11-09 13:12:51 -0800943 The argument may be a module, class, method, or function. The annotations
944 are returned as a dictionary. For classes, annotations include also
945 inherited members.
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700946
Guido van Rossum991d14f2016-11-09 13:12:51 -0800947 TypeError is raised if the argument is not of a type that can contain
948 annotations, and an empty dictionary is returned if no annotations are
949 present.
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700950
Guido van Rossum991d14f2016-11-09 13:12:51 -0800951 BEWARE -- the behavior of globalns and localns is counterintuitive
952 (unless you are familiar with how eval() and exec() work). The
953 search order is locals first, then globals.
Guido van Rossum46dbb7d2015-05-22 10:14:11 -0700954
Guido van Rossum991d14f2016-11-09 13:12:51 -0800955 - If no dict arguments are passed, an attempt is made to use the
Łukasz Langaf350a262017-09-14 14:33:00 -0400956 globals from obj (or the respective module's globals for classes),
957 and these are also used as the locals. If the object does not appear
958 to have globals, an empty dictionary is used.
Guido van Rossum0a6976d2016-09-11 15:34:56 -0700959
Guido van Rossum991d14f2016-11-09 13:12:51 -0800960 - If one dict argument is passed, it is used for both globals and
961 locals.
Guido van Rossum0a6976d2016-09-11 15:34:56 -0700962
Guido van Rossum991d14f2016-11-09 13:12:51 -0800963 - If two dict arguments are passed, they specify globals and
964 locals, respectively.
965 """
Guido van Rossum0a6976d2016-09-11 15:34:56 -0700966
Guido van Rossum991d14f2016-11-09 13:12:51 -0800967 if getattr(obj, '__no_type_check__', None):
968 return {}
Guido van Rossum991d14f2016-11-09 13:12:51 -0800969 # Classes require a special treatment.
970 if isinstance(obj, type):
971 hints = {}
972 for base in reversed(obj.__mro__):
Łukasz Langaf350a262017-09-14 14:33:00 -0400973 if globalns is None:
974 base_globals = sys.modules[base.__module__].__dict__
975 else:
976 base_globals = globalns
Guido van Rossum991d14f2016-11-09 13:12:51 -0800977 ann = base.__dict__.get('__annotations__', {})
978 for name, value in ann.items():
979 if value is None:
980 value = type(None)
981 if isinstance(value, str):
Ivan Levkivskyid911e402018-01-20 11:23:59 +0000982 value = ForwardRef(value)
Łukasz Langaf350a262017-09-14 14:33:00 -0400983 value = _eval_type(value, base_globals, localns)
Guido van Rossum991d14f2016-11-09 13:12:51 -0800984 hints[name] = value
985 return hints
Łukasz Langaf350a262017-09-14 14:33:00 -0400986
987 if globalns is None:
988 if isinstance(obj, types.ModuleType):
989 globalns = obj.__dict__
990 else:
991 globalns = getattr(obj, '__globals__', {})
992 if localns is None:
993 localns = globalns
994 elif localns is None:
995 localns = globalns
Guido van Rossum991d14f2016-11-09 13:12:51 -0800996 hints = getattr(obj, '__annotations__', None)
997 if hints is None:
998 # Return empty annotations for something that _could_ have them.
Ivan Levkivskyib692dc82017-02-13 22:50:14 +0100999 if isinstance(obj, _allowed_types):
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001000 return {}
Guido van Rossum991d14f2016-11-09 13:12:51 -08001001 else:
1002 raise TypeError('{!r} is not a module, class, method, '
1003 'or function.'.format(obj))
1004 defaults = _get_defaults(obj)
1005 hints = dict(hints)
1006 for name, value in hints.items():
1007 if value is None:
1008 value = type(None)
1009 if isinstance(value, str):
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001010 value = ForwardRef(value)
Guido van Rossum991d14f2016-11-09 13:12:51 -08001011 value = _eval_type(value, globalns, localns)
1012 if name in defaults and defaults[name] is None:
1013 value = Optional[value]
1014 hints[name] = value
1015 return hints
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001016
1017
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001018def no_type_check(arg):
1019 """Decorator to indicate that annotations are not type hints.
1020
1021 The argument must be a class or function; if it is a class, it
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001022 applies recursively to all methods and classes defined in that class
1023 (but not to methods defined in its superclasses or subclasses).
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001024
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001025 This mutates the function(s) or class(es) in place.
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001026 """
1027 if isinstance(arg, type):
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001028 arg_attrs = arg.__dict__.copy()
1029 for attr, val in arg.__dict__.items():
Ivan Levkivskyi65bc6202017-09-14 01:25:15 +02001030 if val in arg.__bases__ + (arg,):
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001031 arg_attrs.pop(attr)
1032 for obj in arg_attrs.values():
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001033 if isinstance(obj, types.FunctionType):
1034 obj.__no_type_check__ = True
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001035 if isinstance(obj, type):
1036 no_type_check(obj)
1037 try:
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001038 arg.__no_type_check__ = True
Guido van Rossumd7adfe12017-01-22 17:43:53 -08001039 except TypeError: # built-in classes
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001040 pass
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001041 return arg
1042
1043
1044def no_type_check_decorator(decorator):
1045 """Decorator to give another decorator the @no_type_check effect.
1046
1047 This wraps the decorator with something that wraps the decorated
1048 function in @no_type_check.
1049 """
1050
1051 @functools.wraps(decorator)
1052 def wrapped_decorator(*args, **kwds):
1053 func = decorator(*args, **kwds)
1054 func = no_type_check(func)
1055 return func
1056
1057 return wrapped_decorator
1058
1059
Guido van Rossumbd5b9a02016-04-05 08:28:52 -07001060def _overload_dummy(*args, **kwds):
1061 """Helper for @overload to raise when called."""
1062 raise NotImplementedError(
1063 "You should not call an overloaded function. "
1064 "A series of @overload-decorated functions "
1065 "outside a stub module should always be followed "
1066 "by an implementation that is not @overload-ed.")
1067
1068
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001069def overload(func):
Guido van Rossumbd5b9a02016-04-05 08:28:52 -07001070 """Decorator for overloaded functions/methods.
1071
1072 In a stub file, place two or more stub definitions for the same
1073 function in a row, each decorated with @overload. For example:
1074
1075 @overload
1076 def utf8(value: None) -> None: ...
1077 @overload
1078 def utf8(value: bytes) -> bytes: ...
1079 @overload
1080 def utf8(value: str) -> bytes: ...
1081
1082 In a non-stub file (i.e. a regular .py file), do the same but
1083 follow it with an implementation. The implementation should *not*
1084 be decorated with @overload. For example:
1085
1086 @overload
1087 def utf8(value: None) -> None: ...
1088 @overload
1089 def utf8(value: bytes) -> bytes: ...
1090 @overload
1091 def utf8(value: str) -> bytes: ...
1092 def utf8(value):
1093 # implementation goes here
1094 """
1095 return _overload_dummy
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001096
1097
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001098class _ProtocolMeta(type):
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001099 """Internal metaclass for _Protocol.
1100
1101 This exists so _Protocol classes can be generic without deriving
1102 from Generic.
1103 """
1104
Guido van Rossumd70fe632015-08-05 12:11:06 +02001105 def __instancecheck__(self, obj):
Guido van Rossumca4b2522016-11-19 10:32:41 -08001106 if _Protocol not in self.__bases__:
1107 return super().__instancecheck__(obj)
Guido van Rossumd70fe632015-08-05 12:11:06 +02001108 raise TypeError("Protocols cannot be used with isinstance().")
1109
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001110 def __subclasscheck__(self, cls):
1111 if not self._is_protocol:
1112 # No structural checks since this isn't a protocol.
1113 return NotImplemented
1114
1115 if self is _Protocol:
1116 # Every class is a subclass of the empty protocol.
1117 return True
1118
1119 # Find all attributes defined in the protocol.
1120 attrs = self._get_protocol_attrs()
1121
1122 for attr in attrs:
1123 if not any(attr in d.__dict__ for d in cls.__mro__):
1124 return False
1125 return True
1126
1127 def _get_protocol_attrs(self):
1128 # Get all Protocol base classes.
1129 protocol_bases = []
1130 for c in self.__mro__:
1131 if getattr(c, '_is_protocol', False) and c.__name__ != '_Protocol':
1132 protocol_bases.append(c)
1133
1134 # Get attributes included in protocol.
1135 attrs = set()
1136 for base in protocol_bases:
1137 for attr in base.__dict__.keys():
1138 # Include attributes not defined in any non-protocol bases.
1139 for c in self.__mro__:
1140 if (c is not base and attr in c.__dict__ and
1141 not getattr(c, '_is_protocol', False)):
1142 break
1143 else:
1144 if (not attr.startswith('_abc_') and
Guido van Rossumbd5b9a02016-04-05 08:28:52 -07001145 attr != '__abstractmethods__' and
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001146 attr != '__annotations__' and
1147 attr != '__weakref__' and
Guido van Rossumbd5b9a02016-04-05 08:28:52 -07001148 attr != '_is_protocol' and
Ivan Levkivskyi65bc6202017-09-14 01:25:15 +02001149 attr != '_gorg' and
Guido van Rossumbd5b9a02016-04-05 08:28:52 -07001150 attr != '__dict__' and
1151 attr != '__args__' and
1152 attr != '__slots__' and
1153 attr != '_get_protocol_attrs' and
1154 attr != '__next_in_mro__' and
1155 attr != '__parameters__' and
1156 attr != '__origin__' and
Guido van Rossum7ef22d62016-10-21 14:27:58 -07001157 attr != '__orig_bases__' and
Guido van Rossum1cea70f2016-05-18 08:35:00 -07001158 attr != '__extra__' and
Guido van Rossum5fc25a82016-10-29 08:54:56 -07001159 attr != '__tree_hash__' and
Guido van Rossumbd5b9a02016-04-05 08:28:52 -07001160 attr != '__module__'):
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001161 attrs.add(attr)
1162
1163 return attrs
1164
1165
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001166class _Protocol(Generic, metaclass=_ProtocolMeta):
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001167 """Internal base class for protocol classes.
1168
Guido van Rossumb24569a2016-11-20 18:01:29 -08001169 This implements a simple-minded structural issubclass check
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001170 (similar but more general than the one-offs in collections.abc
1171 such as Hashable).
1172 """
1173
Guido van Rossumd70fe632015-08-05 12:11:06 +02001174 __slots__ = ()
1175
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001176 _is_protocol = True
1177
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001178 def __class_getitem__(cls, params):
1179 return super().__class_getitem__(params)
1180
1181
1182# Some unconstrained type variables. These are used by the container types.
1183# (These are not for export.)
1184T = TypeVar('T') # Any type.
1185KT = TypeVar('KT') # Key type.
1186VT = TypeVar('VT') # Value type.
1187T_co = TypeVar('T_co', covariant=True) # Any type covariant containers.
1188V_co = TypeVar('V_co', covariant=True) # Any type covariant containers.
1189VT_co = TypeVar('VT_co', covariant=True) # Value type covariant containers.
1190T_contra = TypeVar('T_contra', contravariant=True) # Ditto contravariant.
1191# Internal type variable used for Type[].
1192CT_co = TypeVar('CT_co', covariant=True, bound=type)
1193
1194# A useful type variable with constraints. This represents string types.
1195# (This one *is* for export!)
1196AnyStr = TypeVar('AnyStr', bytes, str)
1197
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001198
1199# Various ABCs mimicking those in collections.abc.
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001200def _alias(origin, params, inst=True):
1201 return _GenericAlias(origin, params, special=True, inst=inst)
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001202
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001203Hashable = _alias(collections.abc.Hashable, ()) # Not generic.
1204Awaitable = _alias(collections.abc.Awaitable, T_co)
1205Coroutine = _alias(collections.abc.Coroutine, (T_co, T_contra, V_co))
1206AsyncIterable = _alias(collections.abc.AsyncIterable, T_co)
1207AsyncIterator = _alias(collections.abc.AsyncIterator, T_co)
1208Iterable = _alias(collections.abc.Iterable, T_co)
1209Iterator = _alias(collections.abc.Iterator, T_co)
1210Reversible = _alias(collections.abc.Reversible, T_co)
1211Sized = _alias(collections.abc.Sized, ()) # Not generic.
1212Container = _alias(collections.abc.Container, T_co)
1213Collection = _alias(collections.abc.Collection, T_co)
1214Callable = _VariadicGenericAlias(collections.abc.Callable, (), special=True)
1215Callable.__doc__ = \
1216 """Callable type; Callable[[int], str] is a function of (int) -> str.
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001217
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001218 The subscription syntax must always be used with exactly two
1219 values: the argument list and the return type. The argument list
1220 must be a list of types or ellipsis; the return type must be a single type.
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001221
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001222 There is no syntax to indicate optional or keyword arguments,
1223 such function types are rarely used as callback types.
1224 """
1225AbstractSet = _alias(collections.abc.Set, T_co)
1226MutableSet = _alias(collections.abc.MutableSet, T)
1227# NOTE: Mapping is only covariant in the value type.
1228Mapping = _alias(collections.abc.Mapping, (KT, VT_co))
1229MutableMapping = _alias(collections.abc.MutableMapping, (KT, VT))
1230Sequence = _alias(collections.abc.Sequence, T_co)
1231MutableSequence = _alias(collections.abc.MutableSequence, T)
1232ByteString = _alias(collections.abc.ByteString, ()) # Not generic
1233Tuple = _VariadicGenericAlias(tuple, (), inst=False, special=True)
1234Tuple.__doc__ = \
1235 """Tuple type; Tuple[X, Y] is the cross-product type of X and Y.
Guido van Rossum62fe1bb2016-10-29 16:05:26 -07001236
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001237 Example: Tuple[T1, T2] is a tuple of two elements corresponding
1238 to type variables T1 and T2. Tuple[int, float, str] is a tuple
1239 of an int, a float and a string.
Guido van Rossum62fe1bb2016-10-29 16:05:26 -07001240
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001241 To specify a variable-length tuple of homogeneous type, use Tuple[T, ...].
1242 """
1243List = _alias(list, T, inst=False)
1244Deque = _alias(collections.deque, T)
1245Set = _alias(set, T, inst=False)
1246FrozenSet = _alias(frozenset, T_co, inst=False)
1247MappingView = _alias(collections.abc.MappingView, T_co)
1248KeysView = _alias(collections.abc.KeysView, KT)
1249ItemsView = _alias(collections.abc.ItemsView, (KT, VT_co))
1250ValuesView = _alias(collections.abc.ValuesView, VT_co)
1251ContextManager = _alias(contextlib.AbstractContextManager, T_co)
1252AsyncContextManager = _alias(contextlib.AbstractAsyncContextManager, T_co)
1253Dict = _alias(dict, (KT, VT), inst=False)
1254DefaultDict = _alias(collections.defaultdict, (KT, VT))
1255Counter = _alias(collections.Counter, T)
1256ChainMap = _alias(collections.ChainMap, (KT, VT))
1257Generator = _alias(collections.abc.Generator, (T_co, T_contra, V_co))
1258AsyncGenerator = _alias(collections.abc.AsyncGenerator, (T_co, T_contra))
1259Type = _alias(type, CT_co, inst=False)
1260Type.__doc__ = \
1261 """A special construct usable to annotate class objects.
Guido van Rossum62fe1bb2016-10-29 16:05:26 -07001262
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001263 For example, suppose we have the following classes::
Guido van Rossum62fe1bb2016-10-29 16:05:26 -07001264
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001265 class User: ... # Abstract base for User classes
1266 class BasicUser(User): ...
1267 class ProUser(User): ...
1268 class TeamUser(User): ...
Guido van Rossumf17c2002015-12-03 17:31:24 -08001269
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001270 And a function that takes a class argument that's a subclass of
1271 User and returns an instance of the corresponding class::
Guido van Rossumf17c2002015-12-03 17:31:24 -08001272
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001273 U = TypeVar('U', bound=User)
1274 def new_user(user_class: Type[U]) -> U:
1275 user = user_class()
1276 # (Here we could write the user object to a database)
1277 return user
Guido van Rossumf17c2002015-12-03 17:31:24 -08001278
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001279 joe = new_user(BasicUser)
Guido van Rossumf17c2002015-12-03 17:31:24 -08001280
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001281 At this point the type checker knows that joe has type BasicUser.
1282 """
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001283
1284
1285class SupportsInt(_Protocol):
Guido van Rossumd70fe632015-08-05 12:11:06 +02001286 __slots__ = ()
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001287
1288 @abstractmethod
1289 def __int__(self) -> int:
1290 pass
1291
1292
1293class SupportsFloat(_Protocol):
Guido van Rossumd70fe632015-08-05 12:11:06 +02001294 __slots__ = ()
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001295
1296 @abstractmethod
1297 def __float__(self) -> float:
1298 pass
1299
1300
1301class SupportsComplex(_Protocol):
Guido van Rossumd70fe632015-08-05 12:11:06 +02001302 __slots__ = ()
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001303
1304 @abstractmethod
1305 def __complex__(self) -> complex:
1306 pass
1307
1308
1309class SupportsBytes(_Protocol):
Guido van Rossumd70fe632015-08-05 12:11:06 +02001310 __slots__ = ()
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001311
1312 @abstractmethod
1313 def __bytes__(self) -> bytes:
1314 pass
1315
1316
Guido van Rossumd70fe632015-08-05 12:11:06 +02001317class SupportsAbs(_Protocol[T_co]):
1318 __slots__ = ()
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001319
1320 @abstractmethod
Guido van Rossumd70fe632015-08-05 12:11:06 +02001321 def __abs__(self) -> T_co:
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001322 pass
1323
1324
Guido van Rossumd70fe632015-08-05 12:11:06 +02001325class SupportsRound(_Protocol[T_co]):
1326 __slots__ = ()
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001327
1328 @abstractmethod
Guido van Rossumd70fe632015-08-05 12:11:06 +02001329 def __round__(self, ndigits: int = 0) -> T_co:
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001330 pass
1331
1332
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001333def _make_nmtuple(name, types):
Guido van Rossum2f841442016-11-15 09:48:06 -08001334 msg = "NamedTuple('Name', [(f0, t0), (f1, t1), ...]); each t must be a type"
1335 types = [(n, _type_check(t, msg)) for n, t in types]
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001336 nm_tpl = collections.namedtuple(name, [n for n, t in types])
Guido van Rossum83ec3022017-01-17 20:43:28 -08001337 # Prior to PEP 526, only _field_types attribute was assigned.
1338 # Now, both __annotations__ and _field_types are used to maintain compatibility.
1339 nm_tpl.__annotations__ = nm_tpl._field_types = collections.OrderedDict(types)
Guido van Rossum557d1eb2015-11-19 08:16:31 -08001340 try:
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001341 nm_tpl.__module__ = sys._getframe(2).f_globals.get('__name__', '__main__')
Guido van Rossum557d1eb2015-11-19 08:16:31 -08001342 except (AttributeError, ValueError):
1343 pass
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001344 return nm_tpl
1345
1346
Ivan Levkivskyib692dc82017-02-13 22:50:14 +01001347# attributes prohibited to set in NamedTuple class syntax
1348_prohibited = ('__new__', '__init__', '__slots__', '__getnewargs__',
1349 '_fields', '_field_defaults', '_field_types',
Ivan Levkivskyif06e0212017-05-02 19:14:07 +02001350 '_make', '_replace', '_asdict', '_source')
Ivan Levkivskyib692dc82017-02-13 22:50:14 +01001351
1352_special = ('__module__', '__name__', '__qualname__', '__annotations__')
1353
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001354
Guido van Rossum2f841442016-11-15 09:48:06 -08001355class NamedTupleMeta(type):
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001356
Guido van Rossum2f841442016-11-15 09:48:06 -08001357 def __new__(cls, typename, bases, ns):
1358 if ns.get('_root', False):
1359 return super().__new__(cls, typename, bases, ns)
Guido van Rossum2f841442016-11-15 09:48:06 -08001360 types = ns.get('__annotations__', {})
Guido van Rossum3c268be2017-01-18 08:03:50 -08001361 nm_tpl = _make_nmtuple(typename, types.items())
1362 defaults = []
1363 defaults_dict = {}
1364 for field_name in types:
1365 if field_name in ns:
1366 default_value = ns[field_name]
1367 defaults.append(default_value)
1368 defaults_dict[field_name] = default_value
1369 elif defaults:
Guido van Rossumd7adfe12017-01-22 17:43:53 -08001370 raise TypeError("Non-default namedtuple field {field_name} cannot "
1371 "follow default field(s) {default_names}"
Guido van Rossum3c268be2017-01-18 08:03:50 -08001372 .format(field_name=field_name,
1373 default_names=', '.join(defaults_dict.keys())))
1374 nm_tpl.__new__.__defaults__ = tuple(defaults)
1375 nm_tpl._field_defaults = defaults_dict
Guido van Rossum95919c02017-01-22 17:47:20 -08001376 # update from user namespace without overriding special namedtuple attributes
1377 for key in ns:
Ivan Levkivskyib692dc82017-02-13 22:50:14 +01001378 if key in _prohibited:
1379 raise AttributeError("Cannot overwrite NamedTuple attribute " + key)
1380 elif key not in _special and key not in nm_tpl._fields:
Guido van Rossum95919c02017-01-22 17:47:20 -08001381 setattr(nm_tpl, key, ns[key])
Guido van Rossum3c268be2017-01-18 08:03:50 -08001382 return nm_tpl
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001383
Guido van Rossumd7adfe12017-01-22 17:43:53 -08001384
Guido van Rossum2f841442016-11-15 09:48:06 -08001385class NamedTuple(metaclass=NamedTupleMeta):
1386 """Typed version of namedtuple.
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001387
Guido van Rossum2f841442016-11-15 09:48:06 -08001388 Usage in Python versions >= 3.6::
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001389
Guido van Rossum2f841442016-11-15 09:48:06 -08001390 class Employee(NamedTuple):
1391 name: str
1392 id: int
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001393
Guido van Rossum2f841442016-11-15 09:48:06 -08001394 This is equivalent to::
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001395
Guido van Rossum2f841442016-11-15 09:48:06 -08001396 Employee = collections.namedtuple('Employee', ['name', 'id'])
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001397
Guido van Rossum83ec3022017-01-17 20:43:28 -08001398 The resulting class has extra __annotations__ and _field_types
1399 attributes, giving an ordered dict mapping field names to types.
1400 __annotations__ should be preferred, while _field_types
1401 is kept to maintain pre PEP 526 compatibility. (The field names
Guido van Rossum2f841442016-11-15 09:48:06 -08001402 are in the _fields attribute, which is part of the namedtuple
1403 API.) Alternative equivalent keyword syntax is also accepted::
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001404
Guido van Rossum2f841442016-11-15 09:48:06 -08001405 Employee = NamedTuple('Employee', name=str, id=int)
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001406
Guido van Rossum2f841442016-11-15 09:48:06 -08001407 In Python versions <= 3.5 use::
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001408
Guido van Rossum2f841442016-11-15 09:48:06 -08001409 Employee = NamedTuple('Employee', [('name', str), ('id', int)])
1410 """
1411 _root = True
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001412
Guido van Rossum2f841442016-11-15 09:48:06 -08001413 def __new__(self, typename, fields=None, **kwargs):
Guido van Rossum2f841442016-11-15 09:48:06 -08001414 if fields is None:
1415 fields = kwargs.items()
1416 elif kwargs:
1417 raise TypeError("Either list of fields or keywords"
1418 " can be provided to NamedTuple, not both")
Guido van Rossum0a6976d2016-09-11 15:34:56 -07001419 return _make_nmtuple(typename, fields)
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001420
1421
Guido van Rossum91185fe2016-06-08 11:19:11 -07001422def NewType(name, tp):
1423 """NewType creates simple unique types with almost zero
1424 runtime overhead. NewType(name, tp) is considered a subtype of tp
1425 by static type checkers. At runtime, NewType(name, tp) returns
1426 a dummy function that simply returns its argument. Usage::
1427
1428 UserId = NewType('UserId', int)
1429
1430 def name_by_id(user_id: UserId) -> str:
1431 ...
1432
1433 UserId('user') # Fails type check
1434
1435 name_by_id(42) # Fails type check
1436 name_by_id(UserId(42)) # OK
1437
1438 num = UserId(5) + 1 # type: int
1439 """
1440
1441 def new_type(x):
1442 return x
1443
1444 new_type.__name__ = name
1445 new_type.__supertype__ = tp
1446 return new_type
1447
1448
Guido van Rossum0e0563c2016-04-05 14:54:25 -07001449# Python-version-specific alias (Python 2: unicode; Python 3: str)
1450Text = str
1451
1452
Guido van Rossum91185fe2016-06-08 11:19:11 -07001453# Constant that's True when type checking, but False here.
1454TYPE_CHECKING = False
1455
1456
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001457class IO(Generic[AnyStr]):
1458 """Generic base class for TextIO and BinaryIO.
1459
1460 This is an abstract, generic version of the return of open().
1461
1462 NOTE: This does not distinguish between the different possible
1463 classes (text vs. binary, read vs. write vs. read/write,
1464 append-only, unbuffered). The TextIO and BinaryIO subclasses
1465 below capture the distinctions between text vs. binary, which is
1466 pervasive in the interface; however we currently do not offer a
1467 way to track the other distinctions in the type system.
1468 """
1469
Guido van Rossumd70fe632015-08-05 12:11:06 +02001470 __slots__ = ()
1471
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001472 @abstractproperty
1473 def mode(self) -> str:
1474 pass
1475
1476 @abstractproperty
1477 def name(self) -> str:
1478 pass
1479
1480 @abstractmethod
1481 def close(self) -> None:
1482 pass
1483
1484 @abstractmethod
1485 def closed(self) -> bool:
1486 pass
1487
1488 @abstractmethod
1489 def fileno(self) -> int:
1490 pass
1491
1492 @abstractmethod
1493 def flush(self) -> None:
1494 pass
1495
1496 @abstractmethod
1497 def isatty(self) -> bool:
1498 pass
1499
1500 @abstractmethod
1501 def read(self, n: int = -1) -> AnyStr:
1502 pass
1503
1504 @abstractmethod
1505 def readable(self) -> bool:
1506 pass
1507
1508 @abstractmethod
1509 def readline(self, limit: int = -1) -> AnyStr:
1510 pass
1511
1512 @abstractmethod
1513 def readlines(self, hint: int = -1) -> List[AnyStr]:
1514 pass
1515
1516 @abstractmethod
1517 def seek(self, offset: int, whence: int = 0) -> int:
1518 pass
1519
1520 @abstractmethod
1521 def seekable(self) -> bool:
1522 pass
1523
1524 @abstractmethod
1525 def tell(self) -> int:
1526 pass
1527
1528 @abstractmethod
1529 def truncate(self, size: int = None) -> int:
1530 pass
1531
1532 @abstractmethod
1533 def writable(self) -> bool:
1534 pass
1535
1536 @abstractmethod
1537 def write(self, s: AnyStr) -> int:
1538 pass
1539
1540 @abstractmethod
1541 def writelines(self, lines: List[AnyStr]) -> None:
1542 pass
1543
1544 @abstractmethod
1545 def __enter__(self) -> 'IO[AnyStr]':
1546 pass
1547
1548 @abstractmethod
1549 def __exit__(self, type, value, traceback) -> None:
1550 pass
1551
1552
1553class BinaryIO(IO[bytes]):
1554 """Typed version of the return of open() in binary mode."""
1555
Guido van Rossumd70fe632015-08-05 12:11:06 +02001556 __slots__ = ()
1557
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001558 @abstractmethod
1559 def write(self, s: Union[bytes, bytearray]) -> int:
1560 pass
1561
1562 @abstractmethod
1563 def __enter__(self) -> 'BinaryIO':
1564 pass
1565
1566
1567class TextIO(IO[str]):
1568 """Typed version of the return of open() in text mode."""
1569
Guido van Rossumd70fe632015-08-05 12:11:06 +02001570 __slots__ = ()
1571
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001572 @abstractproperty
1573 def buffer(self) -> BinaryIO:
1574 pass
1575
1576 @abstractproperty
1577 def encoding(self) -> str:
1578 pass
1579
1580 @abstractproperty
Guido van Rossum991d14f2016-11-09 13:12:51 -08001581 def errors(self) -> Optional[str]:
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001582 pass
1583
1584 @abstractproperty
1585 def line_buffering(self) -> bool:
1586 pass
1587
1588 @abstractproperty
1589 def newlines(self) -> Any:
1590 pass
1591
1592 @abstractmethod
1593 def __enter__(self) -> 'TextIO':
1594 pass
1595
1596
1597class io:
1598 """Wrapper namespace for IO generic classes."""
1599
1600 __all__ = ['IO', 'TextIO', 'BinaryIO']
1601 IO = IO
1602 TextIO = TextIO
1603 BinaryIO = BinaryIO
1604
Guido van Rossumd7adfe12017-01-22 17:43:53 -08001605
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001606io.__name__ = __name__ + '.io'
1607sys.modules[io.__name__] = io
1608
Ivan Levkivskyid911e402018-01-20 11:23:59 +00001609Pattern = _alias(stdlib_re.Pattern, AnyStr)
1610Match = _alias(stdlib_re.Match, AnyStr)
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001611
1612class re:
1613 """Wrapper namespace for re type aliases."""
1614
1615 __all__ = ['Pattern', 'Match']
1616 Pattern = Pattern
1617 Match = Match
1618
Guido van Rossumd7adfe12017-01-22 17:43:53 -08001619
Guido van Rossum46dbb7d2015-05-22 10:14:11 -07001620re.__name__ = __name__ + '.re'
1621sys.modules[re.__name__] = re