1
0
forked from VimPlug/jedi

remove repl style comments and use indented blocks instead, #146

This commit is contained in:
David Halter
2013-03-01 19:52:36 +04:30
parent c98d099001
commit 90c800b257
2 changed files with 23 additions and 22 deletions

View File

@@ -23,12 +23,13 @@ def run_test(source, f_name, lines_to_execute):
which results are expected. The comment always begins with `#?`. The last
row symbolizes the cursor.
For example:
>>> #? ['ab']
>>> ab = 3; a
For example::
>>> #? int()
>>> ab = 3; ab
#? ['ab']
ab = 3; a
#? int()
ab = 3; ab
"""
fails = 0
tests = 0