diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-06-12 14:20:36 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-06-12 14:20:36 +0200 |
commit | 9f3685a527c9293b05c8ad7a6a4a7c2fa8b3b8b8 (patch) | |
tree | 4a01e3e62a1ecc504d835720319f0a26f71c041c /src/testdir/test87.ok | |
parent | 0ea4a6b94b6f7a13ef5027b43c36bda0836b51af (diff) | |
download | vim-git-9f3685a527c9293b05c8ad7a6a4a7c2fa8b3b8b8.tar.gz |
updated for version 7.3.1172v7.3.1172
Problem: Python 2: loading modules doesn't work well.
Solution: Fix the code. Add more tests. (ZyX)
Diffstat (limited to 'src/testdir/test87.ok')
-rw-r--r-- | src/testdir/test87.ok | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/testdir/test87.ok b/src/testdir/test87.ok index 31c7df4b6..1d4044519 100644 --- a/src/testdir/test87.ok +++ b/src/testdir/test87.ok @@ -1093,6 +1093,8 @@ vim.current.window = True:(<class 'TypeError'>, TypeError('expected vim.Window o vim.current.tabpage = True:(<class 'TypeError'>, TypeError('expected vim.TabPage object',)) vim.current.xxx = True:(<class 'AttributeError'>, AttributeError('xxx',)) 3,xx +before +after vim.command("throw 'abc'"):(<class 'vim.error'>, error('abc',)) Exe("throw 'def'"):(<class 'vim.error'>, error('def',)) vim.eval("Exe('throw ''ghi''')"):(<class 'vim.error'>, error('ghi',)) |