diff options
author | Damien George <damien.p.george@gmail.com> | 2015-08-20 10:34:22 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-09-12 22:09:18 +0100 |
commit | 3ca84026db59166441c5b33af12fe2826793e66b (patch) | |
tree | 627e347b837c08e524dfb746f2b10889b19e2d01 /tests/cmdline | |
parent | 0af73014cc61a05bcf53558d7c2d554d98da4419 (diff) | |
download | micropython-3ca84026db59166441c5b33af12fe2826793e66b.tar.gz micropython-3ca84026db59166441c5b33af12fe2826793e66b.zip |
unix: Enable REPL auto-indent.
Diffstat (limited to 'tests/cmdline')
-rw-r--r-- | tests/cmdline/repl_cont.py | 4 | ||||
-rw-r--r-- | tests/cmdline/repl_cont.py.exp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tests/cmdline/repl_cont.py b/tests/cmdline/repl_cont.py index 66a484ce3d..06c445d128 100644 --- a/tests/cmdline/repl_cont.py +++ b/tests/cmdline/repl_cont.py @@ -16,6 +16,6 @@ d = {1:'one', 2:'two'} print(d[2]) def f(x): - print(x) - +print(x) + f(3) diff --git a/tests/cmdline/repl_cont.py.exp b/tests/cmdline/repl_cont.py.exp index 927a237c5f..1f8f9f5fac 100644 --- a/tests/cmdline/repl_cont.py.exp +++ b/tests/cmdline/repl_cont.py.exp @@ -25,8 +25,8 @@ Micro Python \.\+ version >>> print(d[2]) two >>> def f(x): -... print(x) -... +... print(x) +... [K >>> f(3) 3 >>> |