mirror of
https://github.com/davidhalter/jedi.git
synced 2026-05-18 06:19:39 +08:00
Print str to avoid u prefix
This commit is contained in:
+4
-4
@@ -23,10 +23,10 @@ example for the autocompletion feature:
|
|||||||
>>> completions = script.complete()
|
>>> completions = script.complete()
|
||||||
>>> completions
|
>>> completions
|
||||||
[<Completion: load>, <Completion: loads>]
|
[<Completion: load>, <Completion: loads>]
|
||||||
>>> completions[0].complete
|
>>> print(completions[0].complete)
|
||||||
'oad'
|
oad
|
||||||
>>> completions[0].word
|
>>> print(completions[0].word)
|
||||||
'load'
|
load
|
||||||
|
|
||||||
As you see Jedi is pretty simple and allows you to concentrate on writing a
|
As you see Jedi is pretty simple and allows you to concentrate on writing a
|
||||||
good text editor, while still having very good IDE features for Python.
|
good text editor, while still having very good IDE features for Python.
|
||||||
|
|||||||
Reference in New Issue
Block a user