1
0
forked from VimPlug/jedi
Commit Graph

11 Commits

Author SHA1 Message Date
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
Dave Halter
ef23f7401e specify a deprecation process, see also #395 2014-04-18 15:24:36 +02:00
Dave Halter
17ecd73df9 fix @Alexey-T's concern of deprecated documentation, see #317 2014-03-11 13:23:25 +01:00
David Halter
7b1290a182 last documentation fixes 2013-08-31 18:59:29 +04:30
David Halter
0fd0b0efc6 split api classes from api documentation, fixes #212 2013-08-31 18:45:55 +04:30
David Halter
9023d01dcb jedi settings should have its own documentation page, #212 2013-08-31 18:04:07 +04:30
David Halter
38db3af324 sphinx dev: polishes 2013-02-04 00:02:49 +01:00
David Halter
0ce1bfda72 sphinx automodule doesn't document members by default anymore 2013-02-03 23:59:03 +01:00
Danilo Bargen
a4e1fe47fd Improved plugin api documentation 2013-01-02 20:10:59 +01:00
Danilo Bargen
cd4727ea9c Added global.rst with jedi macro 2013-01-02 20:10:25 +01:00
Danilo Bargen
e01a6cd0f8 Changed directory structure 2013-01-02 20:10:25 +01:00