mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-24 22:34:22 +08:00
Print str to avoid u prefix
This commit is contained in:
@@ -23,10 +23,10 @@ example for the autocompletion feature:
|
||||
>>> completions = script.complete()
|
||||
>>> completions
|
||||
[<Completion: load>, <Completion: loads>]
|
||||
>>> completions[0].complete
|
||||
'oad'
|
||||
>>> completions[0].word
|
||||
'load'
|
||||
>>> print(completions[0].complete)
|
||||
oad
|
||||
>>> print(completions[0].word)
|
||||
load
|
||||
|
||||
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.
|
||||
|
||||
Reference in New Issue
Block a user