Print str to avoid u prefix

This commit is contained in:
Takafumi Arakaki
2013-02-26 10:28:25 +01:00
parent 668be37089
commit dad9cf0518
+4 -4
View File
@@ -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.