From dc9a269d35bcad9dcaa48408432e4a22e2a842fd Mon Sep 17 00:00:00 2001 From: Takafumi Arakaki Date: Sun, 3 Mar 2013 14:07:48 +0100 Subject: [PATCH] Use literal block instead of >>> for code example --- jedi/parsing_representation.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/jedi/parsing_representation.py b/jedi/parsing_representation.py index 683d6bcd..08cdba53 100644 --- a/jedi/parsing_representation.py +++ b/jedi/parsing_representation.py @@ -696,11 +696,11 @@ class Statement(Simple): def _remove_executions_from_set_vars(self, set_vars): """ - Important mainly for assosiative arrays: + Important mainly for assosiative arrays:: - >>> a = 3 - >>> b = {} - >>> b[a] = 3 + a = 3 + b = {} + b[a] = 3 `a` is in this case not a set_var, it is used to index the dict. """