comparison src/testdir/test_python3.vim @ 17976:6d11a0d5751d v8.1.1984

patch 8.1.1984: more functions can be used as methods Commit: https://github.com/vim/vim/commit/3f4f3d8e7e6fc0494d00cfb75669a554c8e67c8b Author: Bram Moolenaar <Bram@vim.org> Date: Wed Sep 4 20:05:59 2019 +0200 patch 8.1.1984: more functions can be used as methods Problem: More functions can be used as methods. Solution: Make various functions usable as a method.
author Bram Moolenaar <Bram@vim.org>
date Wed, 04 Sep 2019 20:15:04 +0200
parents 8e9e9124c7a2
children 1895dd434ecf
comparison
equal deleted inserted replaced
17975:3e5a4604ea96 17976:6d11a0d5751d
52 call assert_false(v:exception) 52 call assert_false(v:exception)
53 endtry 53 endtry
54 54
55 try 55 try
56 py3 f = vim.Function(b'\x80\xfdR' + vim.eval('s:foo()').encode()) 56 py3 f = vim.Function(b'\x80\xfdR' + vim.eval('s:foo()').encode())
57 call assert_equal(name, py3eval('f.name')) 57 call assert_equal(name, 'f.name'->py3eval())
58 catch 58 catch
59 call assert_false(v:exception) 59 call assert_false(v:exception)
60 endtry 60 endtry
61 61
62 py3 del f 62 py3 del f