Home
last modified time | relevance | path

Searched refs:AnyStr (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Lib/
Dtyping.py1186 AnyStr = TypeVar('AnyStr', bytes, str) variable
1449 class IO(Generic[AnyStr]):
1493 def read(self, n: int = -1) -> AnyStr:
1501 def readline(self, limit: int = -1) -> AnyStr:
1505 def readlines(self, hint: int = -1) -> List[AnyStr]:
1529 def write(self, s: AnyStr) -> int: argument
1533 def writelines(self, lines: List[AnyStr]) -> None: argument
1601 Pattern = _alias(stdlib_re.Pattern, AnyStr)
1602 Match = _alias(stdlib_re.Match, AnyStr)
/external/python/cpython3/Doc/library/
Dtyping.rst801 Generic type ``IO[AnyStr]`` and its subclasses ``TextIO(IO[str])``
812 are generic in ``AnyStr`` and can be made specific by writing
1073 .. data:: AnyStr
1075 ``AnyStr`` is a type variable defined as
1076 ``AnyStr = TypeVar('AnyStr', str, bytes)``.
1081 def concat(a: AnyStr, b: AnyStr) -> AnyStr:
/external/python/cpython3/Lib/test/
Dtest_typing.py10 from typing import TypeVar, AnyStr
191 self.assertEqual(repr(AnyStr), '~AnyStr')
1446 self.assertEqual(cast(AnyStr, 42), 42)
2553 def stuff(a: IO) -> AnyStr:
2557 self.assertEqual(a.__parameters__, (AnyStr,))