Blame vim-python310-new-errmsg.patch
|
Zdenek Dohnal |
2cb80d |
diff --git a/src/testdir/test_python3.vim b/src/testdir/test_python3.vim
|
|
Zdenek Dohnal |
2cb80d |
index 66d5db5..a7b3570 100644
|
|
Zdenek Dohnal |
2cb80d |
--- a/src/testdir/test_python3.vim
|
|
Zdenek Dohnal |
2cb80d |
+++ b/src/testdir/test_python3.vim
|
|
Zdenek Dohnal |
2cb80d |
@@ -3094,7 +3094,7 @@ func Test_python3_errors()
|
|
Zdenek Dohnal |
2cb80d |
<<< Finished
|
|
Zdenek Dohnal |
2cb80d |
> VimForeachRTP
|
|
Zdenek Dohnal |
2cb80d |
vim.foreach_rtp(None):(<class 'TypeError'>, TypeError("'NoneType' object is not callable",))
|
|
Zdenek Dohnal |
2cb80d |
- vim.foreach_rtp(NoArgsCall()):(<class 'TypeError'>, TypeError('__call__() takes exactly 1 positional argument (2 given)',))
|
|
Zdenek Dohnal |
2cb80d |
+ vim.foreach_rtp(NoArgsCall()):(<class 'TypeError'>, TypeError('__call__() takes 1 positional argument but 2 were given',))
|
|
Zdenek Dohnal |
2cb80d |
vim.foreach_rtp(FailingCall()):(<class 'NotImplementedError'>, NotImplementedError('call',))
|
|
Zdenek Dohnal |
2cb80d |
vim.foreach_rtp(int, 2):(<class 'TypeError'>, TypeError('foreach_rtp() takes exactly one argument (2 given)',))
|
|
Zdenek Dohnal |
2cb80d |
> import
|