Searched refs:typing (Results 1 – 25 of 212) sorted by relevance
123456789
/external/python/cpython3/Lib/test/ |
D | test_typing.py | 9 from typing import Any, NoReturn 10 from typing import TypeVar, AnyStr 11 from typing import T, KT, VT # Not in __all__. 12 from typing import Union, Optional 13 from typing import Tuple, List, MutableMapping 14 from typing import Callable 15 from typing import Generic, ClassVar 16 from typing import cast 17 from typing import get_type_hints 18 from typing import no_type_check, no_type_check_decorator [all …]
|
D | dataclass_module_1.py | 8 import typing 10 T_CV2 = typing.ClassVar[int] 11 T_CV3 = typing.ClassVar 18 T_CV4 = typing.ClassVar 19 cv0: typing.ClassVar[int] = 20 20 cv1: typing.ClassVar = 30
|
D | dataclass_module_1_str.py | 8 import typing 10 T_CV2 = typing.ClassVar[int] 11 T_CV3 = typing.ClassVar 18 T_CV4 = typing.ClassVar 19 cv0: typing.ClassVar[int] = 20 20 cv1: typing.ClassVar = 30
|
D | ann_module.py | 8 from typing import Optional 16 from typing import Tuple
|
D | test_pydoc.py | 18 import typing 922 def foo(data: typing.List[typing.Any], 923 x: int) -> typing.Iterator[typing.Tuple[int, typing.Any]]: 925 T = typing.TypeVar('T') 926 class C(typing.Generic[T], typing.Mapping[int, str]): ...
|
D | mod_generics_cache.py | 5 from typing import TypeVar, Generic, Optional
|
D | ann_module2.py | 6 from typing import no_type_check, ClassVar
|
D | dataclass_module_2.py | 8 from typing import ClassVar
|
D | dataclass_module_2_str.py | 8 from typing import ClassVar
|
/external/python/cpython3/Doc/library/ |
D | typing.rst | 1 :mod:`typing` --- Support for type hints 4 .. module:: typing 9 **Source code:** :source:`Lib/typing.py` 13 The typing module has been included in the standard library on a 42 from typing import List 53 from typing import Dict, Tuple, Sequence 79 from typing import NewType 116 from typing import NewType 125 from typing import NewType 159 from typing import Callable [all …]
|
D | development.rst | 19 typing.rst
|
/external/v8/src/ |
D | OWNERS | 4 per-file typing-asm.*=aseemgarg@chromium.org 5 per-file typing-asm.*=bradnelson@chromium.org
|
/external/python/cpython3/Lib/ |
D | dataclasses.py | 578 def _is_classvar(a_type, typing): argument 581 return (a_type is typing.ClassVar 582 or (type(a_type) is typing._GenericAlias 583 and a_type.__origin__ is typing.ClassVar)) 690 typing = sys.modules.get('typing') 691 if typing: 692 if (_is_classvar(a_type, typing) 694 and _is_type(f.type, cls, typing, typing.ClassVar,
|
/external/fonttools/Lib/fonttools.egg-info/ |
D | requires.txt | 21 typing>=3.6.4 45 typing>=3.6.4
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.0rc3.rst | 56 Fixed a bug in typing.py where isinstance([], typing.Iterable) would return
|
D | 3.7.0b5.rst | 257 Do not simplify arguments to `typing.Union`. Now `Union[Manager, Employee]` 327 Fix failure in `typing.get_type_hints()` when ClassVar was provided as a 369 prefixes are detected for both ClassVar ("ClassVar" and "typing.ClassVar") 379 Minor fixes in typing module: add annotations to ``NamedTuple.__new__``, 505 Add missing documentation for ``typing.AsyncContextManager``.
|
D | 3.5.4rc1.rst | 391 Updates to typing module: Add generic AsyncContextManager, add support for 561 Various updates to typing module: add typing.NoReturn type, use 818 Various updates to typing module: typing.Counter, typing.ChainMap, improved 897 Fix an important omission by adding Deque to the typing module.
|
/external/python/cpython3/Lib/importlib/ |
D | resources.py | 11 from typing import Iterable, Iterator, Optional, Set, Union # noqa: F401 12 from typing import cast 13 from typing.io import BinaryIO, TextIO
|
/external/python/cpython3/Lib/test/libregrtest/ |
D | refleak.py | 248 typing = sys.modules['typing'] 252 for f in typing._cleanups:
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/vscode/tablegen/ |
D | language-configuration.json | 14 // symbols that are auto closed when typing
|
/external/v8/src/compiler/ |
D | verifier.h | 28 static void Run(Graph* graph, Typing typing = TYPED,
|
/external/sonivox/jet_tools/JetCreator_content/ |
D | README.txt | 7 2. Launch JET Creator by typing "Python JetCreator.py" (be sure Python and WXWidgets are installed …
|
/external/python/cpython2/Doc/tutorial/ |
D | interpreter.rst | 15 Unix shell's search path makes it possible to start it by typing the command :: 33 status. If that doesn't work, you can exit the interpreter by typing the 40 supported is typing :kbd:`Control-P` to the first Python prompt you get. If it beeps,
|
/external/capstone/bindings/powershell/ |
D | README.md | 26 Once this is done the module can be initialized by typing “Import-Module Capstone”
|
/external/icu/icu4c/source/samples/translit/ |
D | README.TXT | 77 To save typing, use UnicodeSets to handle ranges of characters. 86 more elegant algorithmic solution is available. Instead of typing
|
123456789