summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_typing.py
Commit message (Expand)AuthorAgeFilesLines
* [3.12] gh-71339: Add additional assertion methods in test.support (GH-128707)...Serhiy Storchaka2025-01-201-19/+2
* [3.12] gh-128615: Cover pickling of `ParamSpecArgs` and `ParamSpecKwargs` (GH...Miss Islington (bot)2025-01-081-0/+12
* [3.12] gh-128613: Increase `typing.Concatenate` coverage (GH-128614) (#128624)Miss Islington (bot)2025-01-081-0/+12
* [3.12] gh-88834: Unify the instance check for typing.Union and types.UnionTyp...Miss Islington (bot)2024-12-311-2/+73
* [3.12] gh-126699: allow AsyncIterator to be used as a base for Protocols (GH-...Miss Islington (bot)2024-12-021-0/+3
* [3.12] gh-118814: Fix the TypeVar constructor when name is passed by keyword ...Serhiy Storchaka2024-08-081-0/+35
* [3.12] gh-114053: Fix another edge case involving `get_type_hints`, PEP 695 a...Miss Islington (bot)2024-06-251-4/+62
* [3.12] typing tests: remove some unnecessary uses of `exec()` (GH-119005) (#1...Miss Islington (bot)2024-05-141-19/+9
* [3.12] gh-118168: Fix Unpack interaction with builtin aliases (GH-118169) (#1...Miss Islington (bot)2024-04-231-0/+32
* [3.12] gh-114053: Fix bad interaction of PEP-695, PEP-563 and ``get_type_hint...Alex Waygood2024-04-191-1/+25
* [3.12] gh-117110: Fix subclasses of typing.Any with custom constructors (GH-1...Miss Islington (bot)2024-03-291-0/+20
* [3.12] gh-116325: Raise `SyntaxError` rather than `IndexError` on ForwardRef ...Miss Islington (bot)2024-03-051-0/+6
* [3.12] gh-112281: Allow `Union` with unhashable `Annotated` metadata (GH-1122...Miss Islington (bot)2024-03-011-4/+103
* [3.12] gh-115570: Fix DeprecationWarnings in test_typing (#115571) (#115574)Jelle Zijlstra2024-02-161-0/+11
* [3.12] gh-115165: Fix `typing.Annotated` for immutable types (GH-115213) (#11...Miss Islington (bot)2024-02-091-0/+21
* [3.12] gh-113320: Reduce the number of dangerous `getattr()` calls when const...Alex Waygood2024-01-051-2/+36
* [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