1
0
forked from VimPlug/jedi

Do not use >>> for non-doctest code example

Use literal block instead.
This commit is contained in:
Takafumi Arakaki
2013-02-26 10:36:08 +01:00
parent dad9cf0518
commit 95a98c9033
6 changed files with 27 additions and 24 deletions

View File

@@ -299,10 +299,10 @@ class Parser(object):
def _parse_statement(self, pre_used_token=None, added_breaks=None,
stmt_class=pr.Statement):
"""
Parses statements like:
Parses statements like::
>>> a = test(b)
>>> a += 3 - 2 or b
a = test(b)
a += 3 - 2 or b
and so on. One line at a time.