1
0
forked from VimPlug/jedi

Merge pull request #1956 from PeterJCLaw/python-3.12

Support Python 3.12
This commit is contained in:
Dave Halter
2023-09-17 19:25:45 +00:00
committed by GitHub
8 changed files with 18 additions and 8 deletions

View File

@@ -13,7 +13,8 @@ from ..helpers import get_example_dir
'code, sig, names, op, version', [
('import math; math.cos', 'cos(x, /)', ['x'], ge, (3, 6)),
('next', 'next(iterator, default=None, /)', ['iterator', 'default'], ge, (3, 6)),
('next', 'next(iterator, default=None, /)', ['iterator', 'default'], lt, (3, 12)),
('next', 'next()', [], ge, (3, 12)),
('str', "str(object='', /) -> str", ['object'], ge, (3, 6)),