Skip to content

Commit 8c176fe

Browse files
committed
Revise for autodisasm
1 parent 9206c5d commit 8c176fe

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

test/example/multi-line.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# This file deliberately has several statements on a line, so
22
# so please spare me the lecture on standard Python style.
3-
x = 1; y = 2
4-
z = lambda x, y: x + y
3+
x = 2; y = 3
4+
z = lambda x, y: [
5+
i + x for i
6+
in range(y)
7+
]
58
a = z(x, y); b = 6
69
print(a, b)

test/unit/processor/test_proc_complete.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def test_completion():
5555
["set basename o", ["off", "on"]],
5656
["set basename of", ["off"]],
5757
# Multiple completion on two words
58-
["set auto", ["autoeval", "autolist", "autopc", "autopython"]],
58+
["set auto", ["autodisasm", "autoeval", "autolist", "autopc", "autopython"]],
5959
# Completion when word is complete, without space.
6060
["show", ["show "]],
6161
# Completion when word is complete with space.

0 commit comments

Comments
 (0)