From dad9cf05188dfae1526c48187dbc6d80fe6525d8 Mon Sep 17 00:00:00 2001 From: Takafumi Arakaki Date: Tue, 26 Feb 2013 10:28:25 +0100 Subject: [PATCH] Print str to avoid u prefix --- jedi/__init__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/jedi/__init__.py b/jedi/__init__.py index 3e95de32..1e87dece 100644 --- a/jedi/__init__.py +++ b/jedi/__init__.py @@ -23,10 +23,10 @@ example for the autocompletion feature: >>> completions = script.complete() >>> completions [, ] ->>> 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.