diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-04-24 13:04:26 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-04-24 13:04:26 +0200 |
commit | af6abb9d93959d801d40a2d77a96962cef2335fc (patch) | |
tree | 2a4c39066970fd372b41b351535429df0f6e3b31 /src/testdir | |
parent | 3f99152276def2b8f88a3dd5f87f645e9e875da2 (diff) | |
download | vim-af6abb9d93959d801d40a2d77a96962cef2335fc.zip |
updated for version 7.3.907
Problem: Python uses IndexError when a dict key is not found.
Solution: Use KeyError instead. (ZyX)
Diffstat (limited to 'src/testdir')
-rw-r--r-- | src/testdir/test86.ok | 2 | ||||
-rw-r--r-- | src/testdir/test87.ok | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/testdir/test86.ok b/src/testdir/test86.ok index fd670c846..20b00d4d0 100644 --- a/src/testdir/test86.ok +++ b/src/testdir/test86.ok @@ -38,7 +38,7 @@ Vim(put):E684: Vim(python):E725: Vim(python):E117: [0.0, 0.0] -IndexError +KeyError TypeError TypeError ValueError diff --git a/src/testdir/test87.ok b/src/testdir/test87.ok index b8769002a..9d75c564e 100644 --- a/src/testdir/test87.ok +++ b/src/testdir/test87.ok @@ -38,7 +38,7 @@ Vim(put):E684: Vim(py3):E725: Vim(py3):E117: [0.0, 0.0] -IndexError +KeyError TypeError TypeError ValueError |