index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_typing.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
[3.12] gh-71339: Add additional assertion methods in test.support (GH-128707)...
Serhiy Storchaka
2025-01-20
1
-19/+2
*
[3.12] gh-128615: Cover pickling of `ParamSpecArgs` and `ParamSpecKwargs` (GH...
Miss Islington (bot)
2025-01-08
1
-0/+12
*
[3.12] gh-128613: Increase `typing.Concatenate` coverage (GH-128614) (#128624)
Miss Islington (bot)
2025-01-08
1
-0/+12
*
[3.12] gh-88834: Unify the instance check for typing.Union and types.UnionTyp...
Miss Islington (bot)
2024-12-31
1
-2/+73
*
[3.12] gh-126699: allow AsyncIterator to be used as a base for Protocols (GH-...
Miss Islington (bot)
2024-12-02
1
-0/+3
*
[3.12] gh-118814: Fix the TypeVar constructor when name is passed by keyword ...
Serhiy Storchaka
2024-08-08
1
-0/+35
*
[3.12] gh-114053: Fix another edge case involving `get_type_hints`, PEP 695 a...
Miss Islington (bot)
2024-06-25
1
-4/+62
*
[3.12] typing tests: remove some unnecessary uses of `exec()` (GH-119005) (#1...
Miss Islington (bot)
2024-05-14
1
-19/+9
*
[3.12] gh-118168: Fix Unpack interaction with builtin aliases (GH-118169) (#1...
Miss Islington (bot)
2024-04-23
1
-0/+32
*
[3.12] gh-114053: Fix bad interaction of PEP-695, PEP-563 and ``get_type_hint...
Alex Waygood
2024-04-19
1
-1/+25
*
[3.12] gh-117110: Fix subclasses of typing.Any with custom constructors (GH-1...
Miss Islington (bot)
2024-03-29
1
-0/+20
*
[3.12] gh-116325: Raise `SyntaxError` rather than `IndexError` on ForwardRef ...
Miss Islington (bot)
2024-03-05
1
-0/+6
*
[3.12] gh-112281: Allow `Union` with unhashable `Annotated` metadata (GH-1122...
Miss Islington (bot)
2024-03-01
1
-4/+103
*
[3.12] gh-115570: Fix DeprecationWarnings in test_typing (#115571) (#115574)
Jelle Zijlstra
2024-02-16
1
-0/+11
*
[3.12] gh-115165: Fix `typing.Annotated` for immutable types (GH-115213) (#11...
Miss Islington (bot)
2024-02-09
1
-0/+21
*
[3.12] gh-113320: Reduce the number of dangerous `getattr()` calls when const...
Alex Waygood
2024-01-05
1
-2/+36
*
[3.12] gh-112618: Make Annotated cache typed (#112619) (#112628)
Alex Waygood
2023-12-03
1
-0/+34
*
[3.12] gh-112509: Fix keys being present in both required_keys and optional_k...
Miss Islington (bot)
2023-11-29
1
-0/+40
*
[3.12] gh-112155: Run `typing.py` doctests during tests (GH-112156) (#112230)
Nikita Sobolev
2023-11-18
1
-0/+6
*
[3.12] gh-111681: minor fixes to typing doctests; remove unused imports in `t...
Alex Waygood
2023-11-13
1
-2/+2
*
[3.12] gh-108303: Move more typing related files to Lib/test/typinganndata (G...
Nikita Sobolev
2023-11-08
1
-2/+1
*
[3.12] gh-111126: Use `isinstance` instead of `assert[Not]IsInstance` in `tes...
Miss Islington (bot)
2023-10-20
1
-4/+4
*
[3.12] gh-110782: Fix crash when TypeVar is constructed with keyword args (GH...
Miss Islington (bot)
2023-10-12
1
-0/+6
*
[3.12] Enable ruff on `Lib/test/test_typing.py` (#110179) (#110288)
Alex Waygood
2023-10-03
1
-52/+52
*
[3.12] gh-110178: Use fewer weakrefs in test_typing.py (GH-110194) (#110224)
Miss Islington (bot)
2023-10-02
1
-1/+1
*
[3.12] gh-108303: Move `ann_module*.py` files to `typinganndata/` folder (GH-...
Miss Islington (bot)
2023-10-02
1
-2/+4
*
[3.12] gh-108295: Fix crashes with TypeVar weakrefs (GH-108517) (#108527)
Miss Islington (bot)
2023-08-27
1
-0/+10
*
[3.12] gh-105974: Revert unintentional behaviour change for protocols with no...
Miss Islington (bot)
2023-06-23
1
-0/+40
*
[3.12] gh-105834: Add tests for calling `issubclass()` between two protocols ...
Miss Islington (bot)
2023-06-16
1
-0/+74
*
[3.12] gh-105431: Remove unused stuff from `test_typing.NewTypeTests` (GH-105...
Miss Islington (bot)
2023-06-08
1
-7/+0
*
[3.12] gh-103171: Forward-port new tests for runtime-checkable protocols deco...
Miss Islington (bot)
2023-06-07
1
-0/+65
*
[3.12] gh-105280: Ensure `isinstance([], collections.abc.Mapping)` always eva...
Miss Islington (bot)
2023-06-05
1
-0/+14
*
[3.12] gh-105237: Allow calling `issubclass(X, typing.Protocol)` again (GH-10...
Miss Islington (bot)
2023-06-05
1
-0/+59
*
[3.12] gh-105144: Runtime-checkable protocols: move all 'sanity checks' to `_...
Miss Islington (bot)
2023-05-31
1
-18/+91
*
[3.12] Remove raw asserts in test_typing.py (GH-104951) (#104978)
Miss Islington (bot)
2023-05-26
1
-22/+30
*
[3.12] gh-104935: typing: Fix interactions between `@runtime_checkable` and `...
Miss Islington (bot)
2023-05-25
1
-0/+42
*
[3.12] gh-104879: Fix TypeAliasType.__module__ in exec() (GH-104881) (#104890)
Miss Islington (bot)
2023-05-24
1
-0/+34
*
[3.12] Improve test coverage for is_typeddict (GH-104884) (#104889)
Miss Islington (bot)
2023-05-24
1
-3/+22
*
[3.12] gh-104797: Allow Protocols to inherit from collections.abc.Buffer (GH-...
Miss Islington (bot)
2023-05-24
1
-0/+16
*
gh-74690: Make a typing test more resilient (#104691)
Alex Waygood
2023-05-21
1
-4/+3
*
gh-104600: Make type.__type_params__ writable (#104634)
Jelle Zijlstra
2023-05-19
1
-0/+27
*
gh-74690: Don't set special protocol attributes on non-protocol subclasses of...
Alex Waygood
2023-05-18
1
-0/+15
*
gh-104555: Runtime-checkable protocols: Don't let previous calls to `isinstan...
Alex Waygood
2023-05-17
1
-0/+76
*
typing: Add more tests for TypeVar (#104571)
Jelle Zijlstra
2023-05-17
1
-0/+42
*
gh-104555: Fix isinstance() and issubclass() for runtime-checkable protocols ...
Alex Waygood
2023-05-16
1
-0/+18
*
gh-103763: Implement PEP 695 (#103764)
Jelle Zijlstra
2023-05-16
1
-35/+19
*
gh-91896: Revert some very noisy DeprecationWarnings for `ByteString` (#104424)
Alex Waygood
2023-05-13
1
-22/+6
*
gh-91896: Improve visibility of `ByteString` deprecation warnings (#104294)
Alex Waygood
2023-05-12
1
-4/+26
*
GH-103629: Update Unpack's repr in compliance with PEP 692 (#104048)
Franek Magiera
2023-05-01
1
-27/+32
*
gh-104036: Fix direct invocation of test_typing (#104037)
Kirill Podoprigora
2023-05-01
1
-1/+1
[next]