File tree
5 files changed
+12
-8
lines changed- third_party
- jedi_deps
- ycmd/tests/python
5 files changed
+12
-8
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
- .circleci/config.yml+56
- .coveragerc+7
- .git-blame-ignore-revs+1
- .github/workflows/lint.yml+12
- .github/workflows/main.yml+12
- .github/workflows/test.yml+151
- .gitignore+8
- .gitmodules-3
- .pre-commit-config.yaml+40
- .travis.yml-30
- LICENSE.txt+1-1
- MANIFEST.in+6-1
- README.rst+11-7
- RELEASE.rst+59
- codecov.yml+14
- doc/Makefile+5-1
- doc/conf.py+85-206
- doc/example.py+26-19
- doc/example.rst+1-2
- doc/format.rst+383-300
- doc/index.rst+4-4
- doc/install.rst+109-17
- doc/release_notes.rst+277
- doc/requirements.txt-2
- doc/scipy-sphinx-theme-1
- doc/validation.rst+63-7
- numpydoc/__init__.py+6-3
- numpydoc/__main__.py+39-28
- numpydoc/_version.py+1
- numpydoc/docscrape.py+337-234
- numpydoc/docscrape_sphinx.py+180-182
- numpydoc/numpydoc.py+227-126
- numpydoc/templates/numpydoc_docstring.rst+1
- numpydoc/tests/test_docscrape.py+670-313
- numpydoc/tests/test_full.py+105
- numpydoc/tests/test_main.py+100-63
- numpydoc/tests/test_numpydoc.py+234
- numpydoc/tests/test_validate.py+1.4k
- numpydoc/tests/test_xref.py+220
- numpydoc/tests/tinybuild/Makefile+11
- numpydoc/tests/tinybuild/conf.py+26
- numpydoc/tests/tinybuild/index.rst+7
- numpydoc/tests/tinybuild/numpydoc_test_module.py+64
- numpydoc/validate.py+632
- numpydoc/xref.py+197
- requirements/developer.txt+1
- requirements/doc.txt+4
- requirements/test.txt+3
- setup.cfg+5
- setup.py+43-24
- .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: 8 additions & 4 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
38 | 38 |
| |
39 | 39 |
| |
40 | 40 |
| |
41 |
| - | |
| 41 | + | |
| 42 | + | |
42 | 43 |
| |
43 | 44 |
| |
44 | 45 |
| |
45 |
| - | |
| 46 | + | |
46 | 47 |
| |
47 | 48 |
| |
48 | 49 |
| |
| |||
154 | 155 |
| |
155 | 156 |
| |
156 | 157 |
| |
157 |
| - | |
| 158 | + | |
158 | 159 |
| |
159 | 160 |
| |
160 | 161 |
| |
| |||
381 | 382 |
| |
382 | 383 |
| |
383 | 384 |
| |
384 |
| - | |
| 385 | + | |
385 | 386 |
| |
386 | 387 |
| |
387 | 388 |
| |
| |||
699 | 700 |
| |
700 | 701 |
| |
701 | 702 |
| |
| 703 | + | |
| 704 | + | |
| 705 | + | |
702 | 706 |
| |
703 | 707 |
| |
704 | 708 |
| |
|
0 commit comments