File tree
4 files changed
+6
-6
lines changed- third_party
- jedi_deps
- ycmd/tests/python
4 files changed
+6
-6
lines changedSubmodule bottle updated from 1d531f7 to fee8780
- .gitattributes+10
- .github/workflows/ci.yml+73
- .travis.yml-74
- AUTHORS.txt+1
- CHANGELOG.rst+7
- README.rst+3-11
- appveyor.yml-17
- conftest.py+8-1
- docs/docs/features.rst+1-1
- docs/docs/testing.rst+2-2
- docs/index.rst+3-8
- jedi/__init__.py+1-1
- jedi/_compatibility.py-16
- jedi/api/__init__.py+16-8
- jedi/api/classes.py+9-3
- jedi/api/completion.py+11-7
- jedi/api/environment.py+1-1
- jedi/api/helpers.py-1
- jedi/api/project.py+28-21
- jedi/api/refactoring/__init__.py+2-2
- jedi/debug.py+1-4
- jedi/inference/__init__.py-2
- jedi/inference/base_value.py+5-1
- jedi/inference/compiled/access.py+30-7
- jedi/inference/compiled/mixed.py+1-1
- jedi/inference/compiled/subprocess/__init__.py+2-1
- jedi/inference/compiled/subprocess/functions.py+30-12
- jedi/inference/compiled/value.py+9-15
- jedi/inference/context.py+10-9
- jedi/inference/docstring_utils.py+21
- jedi/inference/docstrings.py+17-31
- jedi/inference/filters.py+41-18
- jedi/inference/gradual/annotation.py+32-3
- jedi/inference/gradual/base.py+6
- jedi/inference/gradual/type_var.py+4-4
- jedi/inference/gradual/typeshed.py+1-4
- jedi/inference/gradual/typing.py+18-13
- jedi/inference/imports.py+8-15
- jedi/inference/names.py+10-1
- jedi/inference/recursion.py+1-1
- jedi/inference/references.py+18-9
- jedi/inference/star_args.py+7-1
- jedi/inference/syntax_tree.py+7
- jedi/inference/sys_path.py+1-2
- jedi/inference/value/decorator.py+13
- jedi/inference/value/function.py+2-1
- jedi/inference/value/instance.py+28-32
- jedi/inference/value/iterable.py+12-10
- jedi/inference/value/klass.py+11-11
- jedi/inference/value/module.py+2-2
- jedi/inference/value/namespace.py+5-5
- jedi/parser_utils.py+21-7
- jedi/plugins/pytest.py+42-4
- jedi/third_party/typeshed+1-1
- setup.py+2-1
- test/completion/arrays.py+30
- test/completion/async_.py+19-5
- test/completion/docstring.py+7
- test/completion/generators.py+5
- test/completion/imports.py+4
- test/completion/namespace1/pkg1/pkg2/mod1.py+1
- test/completion/namespace2/pkg1/pkg2/mod2.py+1
- test/completion/ns_path.py+18
- test/completion/on_import.py+1-3
- test/completion/pep0484_generic_passthroughs.py+27
- test/completion/precedence.py+1-1
- test/completion/pytest.py+19
- test/completion/usages.py+16
- test/conftest.py-17
- test/refactor.py+2-2
- test/refactor/inline.py+1-1
- test/run.py+24-4
- test/static_analysis/with_.py-2
- test/test_api/test_api.py+3-2
- test/test_api/test_call_signatures.py+11-12
- test/test_api/test_classes.py+2-2
- test/test_api/test_completion.py+25-13
- test/test_api/test_documentation.py+12-1
- test/test_api/test_interpreter.py+61
- test/test_api/test_names.py+6
- test/test_api/test_project.py+5-1
- test/test_api/test_unicode.py+1-1
- test/test_api/test_usages.py+5-6
- test/test_inference/test_context.py+1-1
- test/test_inference/test_docstring.py+32
- test/test_inference/test_extension.py+2-4
- test/test_inference/test_gradual/test_conversion.py+3-2
- test/test_inference/test_gradual/test_typeshed.py+5-5
- test/test_inference/test_implicit_namespace_package.py+1-1
- test/test_inference/test_imports.py+13-2
- test/test_inference/test_signature.py+59-10
- test/test_parso_integration/test_parser_utils.py+19
- test/test_settings.py+3-4
- test/test_utils.py+1-1
- .coveragerc+2
- .github/workflows/build.yml+68
- .gitignore+1
- .travis.yml-31
- AUTHORS.txt+1
- CHANGELOG.rst+10
- README.rst+3-3
- docs/docs/development.rst+2-2
- docs/index.rst+1-1
- parso/__init__.py+1-1
- parso/cache.py+1-1
- parso/parser.py+3-5
- parso/python/errors.py+96-41
- parso/python/grammar310.txt+1-3
- parso/python/grammar311.txt+169
- parso/python/grammar312.txt+169
- parso/python/grammar39.txt+1-3
- parso/python/parser.py-4
- parso/python/pep8.py+12-10
- parso/python/prefix.py+15-6
- parso/python/tokenize.py+4-3
- parso/python/tree.py+16-10
- parso/tree.py+137-22
- parso/utils.py+1-1
- test/failing_examples.py+48
- test/normalizer_issue_files/allowed_syntax.py+45
- test/test_cache.py+8-5
- test/test_dump_tree.py+182
- test/test_normalizer_issues_files.py+6-5
- test/test_parser_tree.py+25
- test/test_pep8.py+2
- test/test_pgen2.py+1-1
- test/test_prefix.py+2-1
- test/test_python_errors.py+83-7
- test/test_utils.py+4
Lines changed: 3 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
42 | 42 |
| |
43 | 43 |
| |
44 | 44 |
| |
45 |
| - | |
| 45 | + | |
46 | 46 |
| |
47 | 47 |
| |
48 | 48 |
| |
| |||
154 | 154 |
| |
155 | 155 |
| |
156 | 156 |
| |
157 |
| - | |
| 157 | + | |
158 | 158 |
| |
159 | 159 |
| |
160 | 160 |
| |
| |||
381 | 381 |
| |
382 | 382 |
| |
383 | 383 |
| |
384 |
| - | |
| 384 | + | |
385 | 385 |
| |
386 | 386 |
| |
387 | 387 |
| |
|
0 commit comments