PyPI project
jedi
64 indexed releases ยท newest sdist 0.20.0 with 312 indexed members
Files in 0.20.0 jedi-0.20.0.tar.gz
- conftest.py
- docs/conf.py
- jedi/__init__.py
- jedi/__main__.py
- jedi/_compatibility.py
- jedi/api/__init__.py
- jedi/api/classes.py
- jedi/api/completion.py
- jedi/api/completion_cache.py
- jedi/api/environment.py
- jedi/api/errors.py
- jedi/api/exceptions.py
- jedi/api/file_name.py
- jedi/api/helpers.py
- jedi/api/interpreter.py
- jedi/api/keywords.py
- jedi/api/project.py
- jedi/api/refactoring/__init__.py
- jedi/api/refactoring/extract.py
- jedi/api/replstartup.py
- jedi/api/strings.py
- jedi/cache.py
- jedi/common.py
- jedi/debug.py
- jedi/file_io.py
- jedi/inference/__init__.py
- jedi/inference/analysis.py
- jedi/inference/arguments.py
- jedi/inference/base_value.py
- jedi/inference/cache.py
- jedi/inference/compiled/__init__.py
- jedi/inference/compiled/access.py
- jedi/inference/compiled/getattr_static.py
- jedi/inference/compiled/mixed.py
- jedi/inference/compiled/subprocess/__init__.py
- jedi/inference/compiled/subprocess/__main__.py
- jedi/inference/compiled/subprocess/functions.py
- jedi/inference/compiled/value.py
- jedi/inference/context.py
- jedi/inference/docstring_utils.py
- jedi/inference/docstrings.py
- jedi/inference/dynamic_params.py
- jedi/inference/filters.py
- jedi/inference/finder.py
- jedi/inference/flow_analysis.py
- jedi/inference/gradual/__init__.py
- jedi/inference/gradual/annotation.py
- jedi/inference/gradual/base.py
- jedi/inference/gradual/conversion.py
- jedi/inference/gradual/generics.py
- jedi/inference/gradual/stub_value.py
- jedi/inference/gradual/type_var.py
- jedi/inference/gradual/typeshed.py
- jedi/inference/gradual/typing.py
- jedi/inference/gradual/utils.py
- jedi/inference/helpers.py
- jedi/inference/imports.py
- jedi/inference/lazy_value.py
- jedi/inference/names.py
- jedi/inference/param.py
- jedi/inference/parser_cache.py
- jedi/inference/recursion.py
- jedi/inference/references.py
- jedi/inference/signature.py
- jedi/inference/star_args.py
- jedi/inference/syntax_tree.py
- jedi/inference/sys_path.py
- jedi/inference/utils.py
- jedi/inference/value/__init__.py
- jedi/inference/value/decorator.py
- jedi/inference/value/dynamic_arrays.py
- jedi/inference/value/function.py
- jedi/inference/value/instance.py
- jedi/inference/value/iterable.py
- jedi/inference/value/klass.py
- jedi/inference/value/module.py
- jedi/inference/value/namespace.py
- jedi/parser_utils.py
- jedi/plugins/__init__.py
- jedi/plugins/django.py
- jedi/plugins/flask.py
- jedi/plugins/pytest.py
- jedi/plugins/registry.py
- jedi/plugins/stdlib.py
- jedi/settings.py
- jedi/utils.py
- setup.py
- sith.py
- test/__init__.py
- test/completion/__init__.py
- test/completion/arrays.py
- test/completion/async_.py
- test/completion/basic.py
- test/completion/classes.py
- test/completion/completion.py
- test/completion/complex.py
- test/completion/comprehensions.py
- test/completion/conftest.py
- test/completion/context.py
- test/completion/decorators.py
- test/completion/descriptors.py
- test/completion/django.py
- test/completion/docstring.py
- test/completion/dynamic_arrays.py
- test/completion/dynamic_params.py
- test/completion/fixture_module.py
- test/completion/flow_analysis.py
- test/completion/fstring.py
- test/completion/functions.py
- test/completion/generators.py
- test/completion/goto.py
- test/completion/import_tree/__init__.py
- test/completion/import_tree/classes.py
- test/completion/import_tree/flow_import.py
- test/completion/import_tree/globals.py
- test/completion/import_tree/invisible_pkg.py
- test/completion/import_tree/mod1.py
- test/completion/import_tree/mod2.py
- test/completion/import_tree/pkg/__init__.py
- test/completion/import_tree/pkg/base.py
- test/completion/import_tree/pkg/mod1.py
- test/completion/import_tree/random.py
- test/completion/import_tree/recurse_class1.py
- test/completion/import_tree/recurse_class2.py
- test/completion/import_tree/references.py
- test/completion/import_tree/rename1.py
- test/completion/import_tree/rename2.py
- test/completion/imports.py
- test/completion/inheritance.py
- test/completion/invalid.py
- test/completion/isinstance.py
- test/completion/keywords.py
- test/completion/lambdas.py
- test/completion/named_expression.py
- test/completion/named_param.py
- test/completion/namespace1/pkg1/pkg2/mod1.py
- test/completion/namespace2/pkg1/pkg2/mod2.py
- test/completion/ns_path.py
- test/completion/on_import.py
- test/completion/ordering.py
- test/completion/parser.py
- test/completion/pep0484_basic.py
- test/completion/pep0484_comments.py
- test/completion/pep0484_decorators.py
- test/completion/pep0484_generic_mismatches.py
- test/completion/pep0484_generic_parameters.py
- test/completion/pep0484_generic_passthroughs.py
- test/completion/pep0484_overload.py
- test/completion/pep0484_typing.py
- test/completion/pep0526_variables.py
- test/completion/pep0593_annotations.py
- test/completion/pep0604.py
- test/completion/pep0695_type_parameter_syntax.py
- test/completion/positional_only_params.py
- test/completion/precedence.py
- test/completion/pytest.py
- test/completion/recursion.py
- test/completion/stdlib.py
- test/completion/stub_folder/stub_only_folder/nested_with_stub.py
- test/completion/stub_folder/stub_only_folder/python_only.py
- test/completion/stub_folder/with_stub.py
- test/completion/stub_folder/with_stub_folder/__init__.py
- test/completion/stub_folder/with_stub_folder/nested_with_stub.py
- test/completion/stub_folder/with_stub_folder/python_only.py
- test/completion/stubs.py
- test/completion/sys_path.py
- test/completion/thirdparty/PyQt4_.py
- test/completion/thirdparty/jedi_.py
- test/completion/thirdparty/psycopg2_.py
- test/completion/thirdparty/pylab_.py
- test/completion/types.py
- test/completion/usages.py
- test/conftest.py
- test/examples/buildout_project/src/proj_name/module_name.py
- test/examples/django/app/__init__.py
- test/examples/django/app/models.py
- test/examples/django/manage.py
- test/examples/flask-site-packages/flask/__init__.py
- test/examples/flask-site-packages/flask/ext/__init__.py
- test/examples/flask-site-packages/flask_baz/__init__.py
- test/examples/flask-site-packages/flask_foo.py
- test/examples/flask-site-packages/flaskext/__init__.py
- test/examples/flask-site-packages/flaskext/bar.py
- test/examples/flask-site-packages/flaskext/moo/__init__.py
- test/examples/implicit_namespace_package/ns1/pkg/ns1_file.py
- test/examples/implicit_namespace_package/ns2/pkg/ns2_file.py
- test/examples/implicit_nested_namespaces/namespace/pkg/module.py
- test/examples/import-recursion/cadquery_simple/__init__.py
- test/examples/import-recursion/cadquery_simple/cq.py
- test/examples/import-recursion/cq_example.py
- test/examples/inheritance/pkg/__init__.py
- test/examples/inheritance/pkg/module.py
- test/examples/init_extension_module/setup.py
- test/examples/issue1209/__init__.py
- test/examples/issue1209/api/__init__.py
- test/examples/issue1209/api/whatever/__init__.py
- test/examples/issue1209/api/whatever/api_test1.py
- test/examples/issue1209/whatever/__init__.py
- test/examples/issue1209/whatever/test.py
- test/examples/namespace_package/ns1/pkg/__init__.py
- test/examples/namespace_package/ns1/pkg/ns1_file.py
- test/examples/namespace_package/ns1/pkg/ns1_folder/__init__.py
- test/examples/namespace_package/ns2/pkg/ns2_file.py
- test/examples/namespace_package/ns2/pkg/ns2_folder/__init__.py
- test/examples/namespace_package/ns2/pkg/ns2_folder/nested/__init__.py
- test/examples/namespace_package_relative_import/rel1.py
- test/examples/namespace_package_relative_import/rel2.py
- test/examples/nested_namespaces/__init__.py
- test/examples/nested_namespaces/namespace/__init__.py
- test/examples/nested_namespaces/namespace/pkg/__init__.py
- test/examples/not_in_sys_path/__init__.py
- test/examples/not_in_sys_path/not_in_sys_path.py
- test/examples/not_in_sys_path/not_in_sys_path_package/__init__.py
- test/examples/not_in_sys_path/not_in_sys_path_package/module.py
- test/examples/not_in_sys_path/pkg/__init__.py
- test/examples/not_in_sys_path/pkg/module.py
- test/examples/pytest_plugin_package/pytest_plugin/fixtures.py
- test/examples/pytest_plugin_package/pytest_plugin/plugin.py
- test/examples/sample_venvs/pth_directory/dir-from-foo-pth/__init__.py
- test/examples/sample_venvs/pth_directory/smth.py
- test/examples/simple_import/__init__.py
- test/examples/simple_import/module.py
- test/examples/simple_import/module2.py
- test/examples/speed/precedence.py
- test/examples/stub_packages/with_python/__init__.py
- test/examples/stub_packages/with_python/module.py
- test/examples/typing_overload/file.py
- test/helpers.py
- test/refactor.py
- test/refactor/extract_function.py
- test/refactor/extract_variable.py
- test/refactor/import_tree/inline_mod.py
- test/refactor/import_tree/pkgx/__init__.py
- test/refactor/import_tree/pkgx/mod2.py
- test/refactor/import_tree/some_mod.py
- test/refactor/inline.py
- test/refactor/rename.py
- test/run.py
- test/static_analysis/attribute_error.py
- test/static_analysis/attribute_warnings.py
- test/static_analysis/branches.py
- test/static_analysis/builtins.py
- test/static_analysis/class_simple.py
- test/static_analysis/comprehensions.py
- test/static_analysis/descriptors.py
- test/static_analysis/generators.py
- test/static_analysis/import_tree/__init__.py
- test/static_analysis/import_tree/a.py
- test/static_analysis/import_tree/b.py
- test/static_analysis/imports.py
- test/static_analysis/iterable.py
- test/static_analysis/keywords.py
- test/static_analysis/normal_arguments.py
- test/static_analysis/operations.py
- test/static_analysis/star_arguments.py
- test/static_analysis/try_except.py
- test/test_api/__init__.py
- test/test_api/test_analysis.py
- test/test_api/test_api.py
- test/test_api/test_api_classes_follow_definition.py
- test/test_api/test_call_signatures.py
- test/test_api/test_classes.py
- test/test_api/test_completion.py
- test/test_api/test_context.py
- test/test_api/test_documentation.py
- test/test_api/test_environment.py
- test/test_api/test_full_name.py
- test/test_api/test_interpreter.py
- test/test_api/test_keyword.py
- test/test_api/test_names.py
- test/test_api/test_project.py
- test/test_api/test_refactoring.py
- test/test_api/test_search.py
- test/test_api/test_settings.py
- test/test_api/test_signatures.py
- test/test_api/test_syntax_errors.py
- test/test_api/test_unicode.py
- test/test_api/test_usages.py
- test/test_cache.py
- test/test_debug.py
- test/test_file_io.py
- test/test_inference/__init__.py
- test/test_inference/test_annotations.py
- test/test_inference/test_buildout_detection.py
- test/test_inference/test_compiled.py
- test/test_inference/test_context.py
- test/test_inference/test_docstring.py
- test/test_inference/test_extension.py
- test/test_inference/test_fstring.py
- test/test_inference/test_gradual/__init__.py
- test/test_inference/test_gradual/test_conversion.py
- test/test_inference/test_gradual/test_stub_loading.py
- test/test_inference/test_gradual/test_stubs.py
- test/test_inference/test_gradual/test_typeshed.py
- test/test_inference/test_implicit_namespace_package.py
- test/test_inference/test_imports.py
- test/test_inference/test_literals.py
- test/test_inference/test_mixed.py
- test/test_inference/test_namespace_package.py
- test/test_inference/test_precedence.py
- test/test_inference/test_pyc.py
- test/test_inference/test_representation.py
- test/test_inference/test_signature.py
- test/test_inference/test_stdlib.py
- test/test_inference/test_sys_path.py
- test/test_integration.py
- test/test_parso_integration/__init__.py
- test/test_parso_integration/test_basic.py
- test/test_parso_integration/test_error_correction.py
- test/test_parso_integration/test_parser_utils.py
- test/test_settings.py
- test/test_utils.py
Indexed releases
- 0.20.0
jedi-0.20.0.tar.gz312 members - 0.19.2
jedi-0.19.2.tar.gz311 members - 0.19.1
jedi-0.19.1.tar.gz310 members - 0.19.0
jedi-0.19.0.tar.gz310 members - 0.18.2
jedi-0.18.2.tar.gz309 members - 0.18.1
jedi-0.18.1.tar.gz305 members - 0.18.0
jedi-0.18.0.tar.gz302 members - 0.17.2
jedi-0.17.2.tar.gz306 members - 0.17.1
jedi-0.17.1.tar.gz306 members - 0.17.0
jedi-0.17.0.tar.gz307 members - 0.16.0
jedi-0.16.0.tar.gz295 members - 0.15.2
jedi-0.15.2.tar.gz287 members - 0.15.1
jedi-0.15.1.tar.gz275 members - 0.15.0
jedi-0.15.0.tar.gz275 members - 0.14.1
jedi-0.14.1.tar.gz271 members - 0.14.0
jedi-0.14.0.tar.gz271 members - 0.13.3
jedi-0.13.3.tar.gz241 members - 0.13.2
jedi-0.13.2.tar.gz241 members - 0.13.1
jedi-0.13.1.tar.gz241 members - 0.13.0
jedi-0.13.0.tar.gz241 members - 0.12.1
jedi-0.12.1.tar.gz238 members - 0.12.0
jedi-0.12.0.tar.gz237 members - 0.11.1
jedi-0.11.1.tar.gz224 members - 0.11.0
jedi-0.11.0.tar.gz215 members - 0.10.2
jedi-0.10.2.tar.gz235 members - 0.10.1
jedi-0.10.1.tar.gz235 members - 0.10.0
jedi-0.10.0-py2.py3-none-any.whl52 members - 0.9.0
jedi-0.9.0.tar.gz178 members - 0.8.1
jedi-0.8.1.tar.gz154 members - 0.6.0
jedi-0.6.0.tar.gz28 members - 0.5b4
jedi-0.5b4.tar.gz22 members - 0.8.1-final0
jedi-0.8.1-final0.tar.gz154 members - 0.20.0
jedi-0.20.0-py2.py3-none-any.whl84 members - 0.19.2
jedi-0.19.2-py2.py3-none-any.whl84 members - 0.19.1
jedi-0.19.1-py2.py3-none-any.whl84 members - 0.19.0
jedi-0.19.0-py2.py3-none-any.whl84 members - 0.18.2
jedi-0.18.2-py2.py3-none-any.whl84 members - 0.18.1
jedi-0.18.1-py2.py3-none-any.whl84 members - 0.18.0
jedi-0.18.0-py2.py3-none-any.whl83 members - 0.17.2
jedi-0.17.2-py2.py3-none-any.whl83 members - 0.17.1
jedi-0.17.1-py2.py3-none-any.whl83 members - 0.17.0
jedi-0.17.0-py2.py3-none-any.whl84 members - 0.16.0
jedi-0.16.0-py2.py3-none-any.whl82 members - 0.15.2
jedi-0.15.2-py2.py3-none-any.whl79 members - 0.15.1
jedi-0.15.1-py2.py3-none-any.whl74 members - 0.15.0
jedi-0.15.0-py2.py3-none-any.whl74 members - 0.14.1
jedi-0.14.1-py2.py3-none-any.whl71 members - 0.14.0
jedi-0.14.0-py2.py3-none-any.whl71 members - 0.13.3
jedi-0.13.3-py2.py3-none-any.whl62 members - 0.13.2
jedi-0.13.2-py2.py3-none-any.whl62 members - 0.13.1
jedi-0.13.1-py2.py3-none-any.whl62 members - 0.13.0
jedi-0.13.0-py2.py3-none-any.whl62 members - 0.12.1
jedi-0.12.1-py2.py3-none-any.whl62 members - 0.12.0
jedi-0.12.0-py2.py3-none-any.whl62 members - 0.11.1
jedi-0.11.1-py2.py3-none-any.whl180 members - 0.11.0
jedi-0.11.0-py2.py3-none-any.whl45 members - 0.10.2
jedi-0.10.2-py2.py3-none-any.whl56 members - 0.10.1
jedi-0.10.1-py2.py3-none-any.whl56 members - 0.10.0
jedi-0.10.0-py2-none-any.whl52 members - 0.9.0
jedi-0.9.0-py2.py3-none-any.whl44 members - 0.7.0
jedi-0.7.0.tar.gz104 members - 0.5b5
jedi-0.5b5.tar.gz16 members - 0.5b3
jedi-0.5b3.tar.gz19 members - 0.8.0-final0
jedi-0.8.0-final0.tar.gz138 members