Dave Halter
3102215478
Move the type parameter syntax tests so that it works for all versions
2026-05-02 01:24:54 +02:00
Dave Halter
8e4df5cc0e
Make sure the new generic syntax does not fail with latest parso
2026-05-02 01:08:27 +02:00
Dave Halter
fedb1a5eb0
Fix 3.10 tests in one more case
2026-05-02 00:22:06 +02:00
Dave Halter
cd52d982e1
Fixes to get the tests passing for 3.10
2026-05-02 00:11:16 +02:00
Dave Halter
d0b11806d4
Finally make tests work for 3.14
2026-05-01 23:49:36 +02:00
Dave Halter
8520a9958b
Implement support for TypeVar inference for __new__
2026-05-01 22:52:05 +02:00
Dave Halter
55e5f0cb92
Implement new-style unions with TypeVars
2026-05-01 21:01:27 +02:00
Dave Halter
8ba5b67622
Change some more tests for typeshed
2026-05-01 17:07:36 +02:00
Dave Halter
d87a4af50f
Implement unions with forward references
2026-05-01 16:40:25 +02:00
Dave Halter
418598d8c1
Implement type[...]
2026-05-01 15:44:26 +02:00
Dave Halter
0702da22f2
Change some tests
2026-05-01 14:43:59 +02:00
Dave Halter
b7652708ec
Add more tests about newstyle unions
2026-05-01 14:37:46 +02:00
Dave Halter
e7d29065bd
Change a test about ellipsis slightly
2026-05-01 14:37:35 +02:00
Dave Halter
1820aa9476
Change some tests slightly
2026-05-01 14:30:00 +02:00
Dave Halter
696df90daf
Change some tests slightly
2026-05-01 14:14:12 +02:00
Dave Halter
f8fb2d1230
Basic support for TypeAlias, fixes #1969
2026-05-01 13:05:22 +02:00
Dave Halter
590ed56c6e
Revert a small change to tests
2026-04-30 00:26:29 +02:00
Dave Halter
4f7dfd14b3
Small improvements to generator/async completions
2026-04-29 23:38:07 +02:00
Dave Halter
be993d132e
Attempt to improve tuple unpackings
2026-04-29 23:10:31 +02:00
Dave Halter
0d79865a0f
Fix __enter__ Self resolving
2026-04-29 18:15:57 +02:00
Dave Halter
3375d48f8c
Improve typing_extensions usages
2026-04-29 18:08:59 +02:00
Dave Halter
aa72381ed1
Implement Self, fixes #2023 , fixes #2068
2026-04-29 17:51:01 +02:00
Dave Halter
c30732eb04
Add a tuple[...] test for the future, see #2040
2026-04-29 17:10:02 +02:00
Dave Halter
fe0369436e
Change a few tests to match new typeshed
2026-04-29 09:30:49 +02:00
Dave Halter
04e5f5b3b8
Change a few tests for new typeshed
2026-04-28 17:14:42 +02:00
Dave Halter
75f1d064d5
Ignore Final/ClassVar if they don't have a generic assignment
2026-04-28 17:05:43 +02:00
Dave Halter
6473ddc28c
Implement Final[...] in a way so it doesn't completely fail
2026-04-28 15:49:26 +02:00
Dave Halter
b27a7dde18
Fix file path completions
2026-04-28 15:25:25 +02:00
Dave Halter
3365d0763b
Implement __new__ signatures, fixes #2073
2026-04-28 02:25:25 +02:00
Dave Halter
ff581e8403
Start fixing some of the problems with new typeshed
2026-04-28 01:41:40 +02:00
Dave Halter
38122a7fd3
Fix issues around whitespace after dot completions, fixes #1954
2026-04-27 18:15:45 +02:00
Dave Halter
40c685c52b
Fix star import completions, fixes #2087
2026-04-27 16:10:56 +02:00
Dave Halter
6e17c85a57
Avoid flake8 issues
2026-04-27 15:29:08 +02:00
Dave Halter
44600ea194
Fix union acess for 3.14
2026-04-27 15:21:26 +02:00
Dave Halter
04d45a8e1e
Remove a 3, 9 artifact
2026-04-27 14:42:24 +02:00
Dave Halter
f1ab9d9539
Remove some 3.8 artifacts
2026-04-27 14:41:58 +02:00
Dave Halter
7bac12c125
Remove some 3.7/3.6 artifacts
2026-04-27 14:35:10 +02:00
Dave Halter
d4233732be
Format unions with | consistently
2026-04-27 14:24:23 +02:00
Dave Halter
375dd1bacc
Add 3.14 to the supported environments
2026-04-27 14:01:39 +02:00
Dave Halter
94f7e540ff
Merge branch 'py314' of https://github.com/frenzymadness/jedi into py314
2026-04-27 12:22:31 +02:00
Dave Halter
a662298e2f
Remove a bit more python3.8/3.9 specific code
2026-04-27 00:42:07 +02:00
Dave Halter
1eddf24a50
Remove Python 3.9 and 3.10
2026-04-27 00:34:17 +02:00
Lumir Balhar
04737b2637
Fix Python 3.15 compatibility
...
- Fix getattr_static for Python 3.15 __dict__ GetSetDescriptorType
- Accept abs() parameter name change ('x' → 'number')
- Add Python 3.15 os module constants to test expectations
Fixes instance attribute introspection and stdlib changes in Python 3.15.
2026-04-08 08:19:15 +02:00
Lumir Balhar
9b24443787
Fix Python 3.14 compatibility for typing.Union annotations
...
In Python 3.14, typing.Union changed its repr from 'typing.Union[X, Y]'
to 'X | Y' (PEP 604), breaking annotation inference.
Changes:
- Use getattr() instead of safe_getattr() for __module__ retrieval
(getattr_static fails on Union types in Python 3.14)
- Add fallback to typing.get_origin() when regex fails to match
- Normalize Union display back to 'Union[X, Y]' format for consistency
- Update test expectations for invalid annotation edge case in 3.14
Fixes: https://github.com/davidhalter/jedi/issues/2064
2026-03-09 15:39:23 +01:00
Dave Halter
ea09983566
Some small typing improvements for tests
2026-02-16 21:20:27 +01:00
Dave Halter
8cbb817b12
Fix a lot of test related typing issues
2026-02-10 19:38:55 +01:00
Hoblovski
1b33f0d77c
fix: move test to arrays.py
2025-11-13 21:12:15 +08:00
Hoblovski
3d2ce2e01f
tests: add bad case
2025-11-13 20:33:00 +08:00
Eric Masseran
4ea7981680
Add complete test
2025-08-29 18:37:51 +02:00
Eric Masseran
356923e40d
Merge remote-tracking branch 'origin' into support-dataclass-transform
...
* origin:
Fix pip install -e in docs
Upgrade Mypy
Fix a few flake8 issues
Upgrade flake8
Upgrade other test runners
Remove 3.6/3.7 references and change tests slightly
Upgrade OS's that it is tested on
Try to add something to the README
2025-08-28 10:33:17 +02:00