1
0
forked from VimPlug/jedi

Use literal block instead of >>> for code example

This commit is contained in:
Takafumi Arakaki
2013-03-03 14:07:48 +01:00
parent 700493cac8
commit dc9a269d35

View File

@@ -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.
"""