From 5f8135318297dc7eeeb52dec12729875a8093777 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Wed, 19 Jun 2019 18:20:48 +0200 Subject: [PATCH] Make the jedi documentation more concise --- jedi/__init__.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/jedi/__init__.py b/jedi/__init__.py index 9288c6af..48c81f76 100644 --- a/jedi/__init__.py +++ b/jedi/__init__.py @@ -1,17 +1,16 @@ """ Jedi is a static analysis tool for Python that can be used in IDEs/editors. Jedi has a focus on autocompletion and goto functionality. Jedi is fast and is -very well tested. It understands Python on a very deep level. +very well tested. It understands Python and stubs on a deep level. Jedi has support for different goto functions. It's possible to search for -usages and to list names in a Python file and get information about them. Jedi -understands docstrings. +usages and list names in a Python file to get information about them. Jedi uses a very simple API to connect with IDE's. There's a reference implementation as a `VIM-Plugin `_, which uses Jedi's autocompletion. We encourage you to use Jedi in your IDEs. -There's also native support for Jedi within IPython and you can install it in -your REPL if you want. +Autocompletion in your REPL is also possible, IPython uses it natively and for +the CPython REPL you have to install it. Here's a simple example of the autocompletion feature: