From 4c90861e9f864eab94f043c432acff508396ed62 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 24 Mar 2016 21:58:12 +0100 Subject: patch 7.4.1646 Problem: Using Python vim.bindeval() on a partial doesn't work. (Nikolai Pavlov) Solution: Add VAR_PARTIAL support in Python. --- src/testdir/test_partial.vim | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'src/testdir/test_partial.vim') diff --git a/src/testdir/test_partial.vim b/src/testdir/test_partial.vim index 1fe67eabc..08958de83 100644 --- a/src/testdir/test_partial.vim +++ b/src/testdir/test_partial.vim @@ -206,3 +206,17 @@ func Test_redefine_dict_func() call assert_true(v:errmsg, v:exception) endtry endfunc + +func Test_bind_in_python() + if has('python') + let g:d = {} + function g:d.test2() + endfunction + python import vim + try + call assert_equal(pyeval('vim.bindeval("g:d.test2")'), g:d.test2) + catch + call assert_true(v:false, v:exception) + endtry + endif +endfunc -- cgit v1.2.1