Files
jedi/docs
Mariano Reingart 2ec196fa2e Update API doc for completions
At least in jedi version 0.9.0 the API seems to change to:
 * complete method is now completions
 * words attribute is now name

Example:
```
(venv)reingart@S55t-B:~$ python
Python 2.7.6 (default, Jun 22 2015, 17:58:13) [GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import jedi
>>> jedi.__version__
'0.9.0'
>>> source = '''import json; json.l'''
>>> script = jedi.Script(source, 1, 19, '')
>>> script
<Script: ''>
>>> completions = script.completions()
>>> completions
[<Completion: load>, <Completion: loads>]
>>> completions[1].complete
'oads'
>>> completions[1].name
u'loads'
>>> 
```
2015-12-30 06:03:51 -03:00
..
2013-07-05 14:15:55 +02:00
2013-01-02 20:10:25 +01:00
2013-01-02 20:10:25 +01:00
2015-12-30 06:03:51 -03:00
2014-03-11 14:07:41 +01:00
2013-01-02 20:10:25 +01:00
2013-01-02 20:10:25 +01:00