summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_typing.py
Commit message (Expand)AuthorAgeFilesLines
* [3.12] gh-112618: Make Annotated cache typed (#112619) (#112628)Alex Waygood2023-12-031-0/+34
* [3.12] gh-112509: Fix keys being present in both required_keys and optional_k...Miss Islington (bot)2023-11-291-0/+40
* [3.12] gh-112155: Run `typing.py` doctests during tests (GH-112156) (#112230)Nikita Sobolev2023-11-181-0/+6
* [3.12] gh-111681: minor fixes to typing doctests; remove unused imports in `t...Alex Waygood2023-11-131-2/+2
* [3.12] gh-108303: Move more typing related files to Lib/test/typinganndata (G...Nikita Sobolev2023-11-081-2/+1
* [3.12] gh-111126: Use `isinstance` instead of `assert[Not]IsInstance` in `tes...Miss Islington (bot)2023-10-201-4/+4
* [3.12] gh-110782: Fix crash when TypeVar is constructed with keyword args (GH...Miss Islington (bot)2023-10-121-0/+6
* [3.12] Enable ruff on `Lib/test/test_typing.py` (#110179) (#110288)Alex Waygood2023-10-031-52/+52
* [3.12] gh-110178: Use fewer weakrefs in test_typing.py (GH-110194) (#110224)Miss Islington (bot)2023-10-021-1/+1
* [3.12] gh-108303: Move `ann_module*.py` files to `typinganndata/` folder (GH-...Miss Islington (bot)2023-10-021-2/+4
* [3.12] gh-108295: Fix crashes with TypeVar weakrefs (GH-108517) (#108527)Miss Islington (bot)2023-08-271-0/+10
* [3.12] gh-105974: Revert unintentional behaviour change for protocols with no...Miss Islington (bot)2023-06-231-0/+40
* [3.12] gh-105834: Add tests for calling `issubclass()` between two protocols ...Miss Islington (bot)2023-06-161-0/+74
* [3.12] gh-105431: Remove unused stuff from `test_typing.NewTypeTests` (GH-105...Miss Islington (bot)2023-06-081-7/+0
* [3.12] gh-103171: Forward-port new tests for runtime-checkable protocols deco...Miss Islington (bot)2023-06-071-0/+65
* [3.12] gh-105280: Ensure `isinstance([], collections.abc.Mapping)` always eva...Miss Islington (bot)2023-06-051-0/+14
* [3.12] gh-105237: Allow calling `issubclass(X, typing.Protocol)` again (GH-10...Miss Islington (bot)2023-06-051-0/+59
* [3.12] gh-105144: Runtime-checkable protocols: move all 'sanity checks' to `_...Miss Islington (bot)2023-05-311-18/+91
* [3.12] Remove raw asserts in test_typing.py (GH-104951) (#104978)Miss Islington (bot)2023-05-261-22/+30
* [3.12] gh-104935: typing: Fix interactions between `@runtime_checkable` and `...Miss Islington (bot)2023-05-251-0/+42
* [3.12] gh-104879: Fix TypeAliasType.__module__ in exec() (GH-104881) (#104890)Miss Islington (bot)2023-05-241-0/+34
* [3.12] Improve test coverage for is_typeddict (GH-104884) (#104889)Miss Islington (bot)2023-05-241-3/+22
* [3.12] gh-104797: Allow Protocols to inherit from collections.abc.Buffer (GH-...Miss Islington (bot)2023-05-241-0/+16
* gh-74690: Make a typing test more resilient (#104691)Alex Waygood2023-05-211-4/+3
* gh-104600: Make type.__type_params__ writable (#104634)Jelle Zijlstra2023-05-191-0/+27
* gh-74690: Don't set special protocol attributes on non-protocol subclasses of...Alex Waygood2023-05-181-0/+15
* gh-104555: Runtime-checkable protocols: Don't let previous calls to `isinstan...Alex Waygood2023-05-171-0/+76
* typing: Add more tests for TypeVar (#104571)Jelle Zijlstra2023-05-171-0/+42
* gh-104555: Fix isinstance() and issubclass() for runtime-checkable protocols ...Alex Waygood2023-05-161-0/+18
* gh-103763: Implement PEP 695 (#103764)Jelle Zijlstra2023-05-161-35/+19
* gh-91896: Revert some very noisy DeprecationWarnings for `ByteString` (#104424)Alex Waygood2023-05-131-22/+6
* gh-91896: Improve visibility of `ByteString` deprecation warnings (#104294)Alex Waygood2023-05-121-4/+26
* GH-103629: Update Unpack's repr in compliance with PEP 692 (#104048)Franek Magiera2023-05-011-27/+32
* gh-104036: Fix direct invocation of test_typing (#104037)Kirill Podoprigora2023-05-011-1/+1
* gh-103746: Test `types.UnionType` and `Literal` types together (#103747)Nikita Sobolev2023-04-241-0/+5
* gh-103592: Add tests of `Literal` with `Enum` and `Union` of `Literal`s (#103...Nikita Sobolev2023-04-231-0/+45
* GH-103699: Add `__orig_bases__` to various typing classes (#103698)Adrian Garcia Badaracco2023-04-231-0/+59
* gh-103395: Improve `typing._GenericAlias.__dir__` coverage (#103396)Nikita Sobolev2023-04-101-2/+61
* gh-74690: Add more tests for runtime-checkable protocols (#103347)Alex Waygood2023-04-071-2/+39
* gh-102433: Use `inspect.getattr_static` in `typing._ProtocolMeta.__instancech...Alex Waygood2023-04-021-2/+91
* gh-103054: typing: Improve `Callable` type substitution tests (#103055)Nikita Sobolev2023-03-291-0/+42
* gh-88965: typing: fix type substitution of a list of types after initial `Pa...Nikita Sobolev2023-03-231-0/+121
* gh-102721: Improve coverage of `_collections_abc._CallableGenericAlias` (#102...Nikita Sobolev2023-03-161-7/+32
* gh-102615: Use `list` instead of `tuple` in `repr` of paramspec (#102637)Nikita Sobolev2023-03-151-0/+45
* gh-102433: Add tests for how classes with properties interact with `isinstanc...Alex Waygood2023-03-111-0/+88
* gh-102444: Fix minor bugs in `test_typing` highlighted by pyflakes (#102445)Alex Waygood2023-03-051-19/+2
* Fix unused classes in a typing test (GH-102437)JosephSBoyle2023-03-051-2/+2
* gh-102324: Improve tests of `typing.override` (#102325)Nikita Sobolev2023-03-031-4/+95
* gh-101561: Add typing.override decorator (#101564)Steven Troxler2023-02-271-0/+38
* gh-101562: typing: add tests for inheritance with NotRequired & Required in p...Eclips42023-02-061-0/+33