diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-09-21 14:00:35 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-09-21 14:00:35 +0200 |
commit | 66b7985ec9e4924abc370636077ed33114d0327d (patch) | |
tree | d3fc6e02af7989af008caade8eff1eb53e5ad52c /src/testdir/test87.ok | |
parent | 770456589e5e53507fcd32013a190b520f4fc688 (diff) | |
download | vim-66b7985ec9e4924abc370636077ed33114d0327d.zip |
updated for version 7.3.672
Problem: Not possible to lock/unlock lists in Python interface.
Solution: Add .locked and .scope attributes. (ZyX)
Diffstat (limited to 'src/testdir/test87.ok')
-rw-r--r-- | src/testdir/test87.ok | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/testdir/test87.ok b/src/testdir/test87.ok index 4eab84530..4c0bb799d 100644 --- a/src/testdir/test87.ok +++ b/src/testdir/test87.ok @@ -44,6 +44,16 @@ TypeError ValueError TypeError TypeError +d : locked:0;scope:0 +dl : locked:1;scope:0 +v: : locked:2;scope:1 +g: : locked:0;scope:2 +d:{'abc': 1} +dl:{'def': 1} +l : locked:0 +ll : locked:1 +l:[0] +ll:[1] [0, 1, 2] ['a', 'b'] ['c', 1] |