Mercurial > vim
annotate src/testdir/test_python2.vim @ 24882:4c1b6f3eb96b v8.2.2979
patch 8.2.2979: not all options code is covered by tests
Commit: https://github.com/vim/vim/commit/5958549760652c173b703613b9cbf09b25a4eddb
Author: Yegappan Lakshmanan <yegappan@yahoo.com>
Date: Sat Jun 12 13:46:41 2021 +0200
patch 8.2.2979: not all options code is covered by tests
Problem: Not all options code is covered by tests.
Solution: Add more tests for options. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/8369)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 12 Jun 2021 14:00:04 +0200 |
parents | 04205b7d67d5 |
children | 485c7c4afeb7 |
rev | line source |
---|---|
10751
27b42717662b
patch 8.0.0265: may get ml_get error when :pydo deletes lines
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
1 " Test for python 2 commands. |
27b42717662b
patch 8.0.0265: may get ml_get error when :pydo deletes lines
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
2 |
17089
8e9e9124c7a2
patch 8.1.1544: some balloon tests don't run when they can
Bram Moolenaar <Bram@vim.org>
parents:
17049
diff
changeset
|
3 source check.vim |
8e9e9124c7a2
patch 8.1.1544: some balloon tests don't run when they can
Bram Moolenaar <Bram@vim.org>
parents:
17049
diff
changeset
|
4 CheckFeature python |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
5 CheckFeature quickfix |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
6 source shared.vim |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
7 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
8 " NOTE: This will cause errors when run under valgrind. |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
9 " This would require recompiling Python with: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
10 " ./configure --without-pymalloc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
11 " See http://svn.python.org/view/python/trunk/Misc/README.valgrind?view=markup |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
12 " |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
13 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
14 " This function should be called first. This sets up python functions used by |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
15 " the other tests. |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
16 func Test_AAA_python_setup() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
17 py << trim EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
18 import vim |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
19 import sys |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
20 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
21 def emsg(ei): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
22 return ei[0].__name__ + ':' + repr(ei[1].args) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
23 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
24 def ee(expr, g=globals(), l=locals()): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
25 try: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
26 exec(expr, g, l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
27 except: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
28 ei = sys.exc_info() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
29 msg = emsg(ei) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
30 msg = msg.replace('TypeError:(\'argument 1 ', 'TypeError:(\'') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
31 if expr.find('None') > -1: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
32 msg = msg.replace('TypeError:(\'iteration over non-sequence\',)', |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
33 'TypeError:("\'NoneType\' object is not iterable",)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
34 if expr.find('FailingNumber') > -1: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
35 msg = msg.replace(', not \'FailingNumber\'', '').replace('"', '\'') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
36 msg = msg.replace('TypeError:(\'iteration over non-sequence\',)', |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
37 'TypeError:("\'FailingNumber\' object is not iterable",)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
38 if msg.find('(\'\'') > -1 or msg.find('(\'can\'t') > -1: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
39 msg = msg.replace('(\'', '("').replace('\',)', '",)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
40 # Some Python versions say can't, others cannot. |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
41 if msg.find('can\'t') > -1: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
42 msg = msg.replace('can\'t', 'cannot') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
43 # Some Python versions use single quote, some double quote |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
44 if msg.find('"cannot ') > -1: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
45 msg = msg.replace('"cannot ', '\'cannot ') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
46 if msg.find(' attributes"') > -1: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
47 msg = msg.replace(' attributes"', ' attributes\'') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
48 if expr == 'fd(self=[])': |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
49 # HACK: PyMapping_Check changed meaning |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
50 msg = msg.replace('AttributeError:(\'keys\',)', |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
51 'TypeError:(\'unable to convert list to vim dictionary\',)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
52 vim.current.buffer.append(expr + ':' + msg) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
53 else: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
54 vim.current.buffer.append(expr + ':NOT FAILED') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
55 EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
56 endfunc |
10751
27b42717662b
patch 8.0.0265: may get ml_get error when :pydo deletes lines
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
57 |
27b42717662b
patch 8.0.0265: may get ml_get error when :pydo deletes lines
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
58 func Test_pydo() |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
59 " Check deleting lines does not trigger an ml_get error. |
10751
27b42717662b
patch 8.0.0265: may get ml_get error when :pydo deletes lines
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
60 new |
27b42717662b
patch 8.0.0265: may get ml_get error when :pydo deletes lines
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
61 call setline(1, ['one', 'two', 'three']) |
27b42717662b
patch 8.0.0265: may get ml_get error when :pydo deletes lines
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
62 pydo vim.command("%d_") |
27b42717662b
patch 8.0.0265: may get ml_get error when :pydo deletes lines
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
63 bwipe! |
27b42717662b
patch 8.0.0265: may get ml_get error when :pydo deletes lines
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
64 |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
65 " Check switching to another buffer does not trigger an ml_get error. |
10751
27b42717662b
patch 8.0.0265: may get ml_get error when :pydo deletes lines
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
66 new |
27b42717662b
patch 8.0.0265: may get ml_get error when :pydo deletes lines
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
67 let wincount = winnr('$') |
27b42717662b
patch 8.0.0265: may get ml_get error when :pydo deletes lines
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
68 call setline(1, ['one', 'two', 'three']) |
27b42717662b
patch 8.0.0265: may get ml_get error when :pydo deletes lines
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
69 pydo vim.command("new") |
27b42717662b
patch 8.0.0265: may get ml_get error when :pydo deletes lines
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
70 call assert_equal(wincount + 1, winnr('$')) |
27b42717662b
patch 8.0.0265: may get ml_get error when :pydo deletes lines
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
71 bwipe! |
27b42717662b
patch 8.0.0265: may get ml_get error when :pydo deletes lines
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
72 bwipe! |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
73 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
74 " Try modifying a buffer with 'nomodifiable' set |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
75 set nomodifiable |
21265
6a4806e326dd
patch 8.2.1183: assert_fails() checks the last error message
Bram Moolenaar <Bram@vim.org>
parents:
21200
diff
changeset
|
76 call assert_fails('pydo toupper(line)', 'E21:') |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
77 set modifiable |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
78 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
79 " Invalid command |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
80 call AssertException(['pydo non_existing_cmd'], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
81 \ "Vim(pydo):NameError: global name 'non_existing_cmd' is not defined") |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
82 call AssertException(["pydo raise Exception('test')"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
83 \ 'Vim(pydo):Exception: test') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
84 call AssertException(["pydo {lambda}"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
85 \ 'Vim(pydo):SyntaxError: invalid syntax') |
10751
27b42717662b
patch 8.0.0265: may get ml_get error when :pydo deletes lines
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
86 endfunc |
14395
c15bef307de6
patch 8.1.0212: preferred cursor column not set in interfaces
Christian Brabandt <cb@256bit.org>
parents:
10751
diff
changeset
|
87 |
c15bef307de6
patch 8.1.0212: preferred cursor column not set in interfaces
Christian Brabandt <cb@256bit.org>
parents:
10751
diff
changeset
|
88 func Test_set_cursor() |
c15bef307de6
patch 8.1.0212: preferred cursor column not set in interfaces
Christian Brabandt <cb@256bit.org>
parents:
10751
diff
changeset
|
89 " Check that setting the cursor position works. |
c15bef307de6
patch 8.1.0212: preferred cursor column not set in interfaces
Christian Brabandt <cb@256bit.org>
parents:
10751
diff
changeset
|
90 new |
c15bef307de6
patch 8.1.0212: preferred cursor column not set in interfaces
Christian Brabandt <cb@256bit.org>
parents:
10751
diff
changeset
|
91 call setline(1, ['first line', 'second line']) |
c15bef307de6
patch 8.1.0212: preferred cursor column not set in interfaces
Christian Brabandt <cb@256bit.org>
parents:
10751
diff
changeset
|
92 normal gg |
c15bef307de6
patch 8.1.0212: preferred cursor column not set in interfaces
Christian Brabandt <cb@256bit.org>
parents:
10751
diff
changeset
|
93 pydo vim.current.window.cursor = (1, 5) |
c15bef307de6
patch 8.1.0212: preferred cursor column not set in interfaces
Christian Brabandt <cb@256bit.org>
parents:
10751
diff
changeset
|
94 call assert_equal([1, 6], [line('.'), col('.')]) |
c15bef307de6
patch 8.1.0212: preferred cursor column not set in interfaces
Christian Brabandt <cb@256bit.org>
parents:
10751
diff
changeset
|
95 |
c15bef307de6
patch 8.1.0212: preferred cursor column not set in interfaces
Christian Brabandt <cb@256bit.org>
parents:
10751
diff
changeset
|
96 " Check that movement after setting cursor position keeps current column. |
c15bef307de6
patch 8.1.0212: preferred cursor column not set in interfaces
Christian Brabandt <cb@256bit.org>
parents:
10751
diff
changeset
|
97 normal j |
c15bef307de6
patch 8.1.0212: preferred cursor column not set in interfaces
Christian Brabandt <cb@256bit.org>
parents:
10751
diff
changeset
|
98 call assert_equal([2, 6], [line('.'), col('.')]) |
c15bef307de6
patch 8.1.0212: preferred cursor column not set in interfaces
Christian Brabandt <cb@256bit.org>
parents:
10751
diff
changeset
|
99 endfunc |
15234
ee63f4fe3d45
patch 8.1.0627: Python cannot handle function name of script-local function
Bram Moolenaar <Bram@vim.org>
parents:
14395
diff
changeset
|
100 |
ee63f4fe3d45
patch 8.1.0627: Python cannot handle function name of script-local function
Bram Moolenaar <Bram@vim.org>
parents:
14395
diff
changeset
|
101 func Test_vim_function() |
ee63f4fe3d45
patch 8.1.0627: Python cannot handle function name of script-local function
Bram Moolenaar <Bram@vim.org>
parents:
14395
diff
changeset
|
102 " Check creating vim.Function object |
ee63f4fe3d45
patch 8.1.0627: Python cannot handle function name of script-local function
Bram Moolenaar <Bram@vim.org>
parents:
14395
diff
changeset
|
103 |
ee63f4fe3d45
patch 8.1.0627: Python cannot handle function name of script-local function
Bram Moolenaar <Bram@vim.org>
parents:
14395
diff
changeset
|
104 func s:foo() |
ee63f4fe3d45
patch 8.1.0627: Python cannot handle function name of script-local function
Bram Moolenaar <Bram@vim.org>
parents:
14395
diff
changeset
|
105 return matchstr(expand('<sfile>'), '<SNR>\zs\d\+_foo$') |
ee63f4fe3d45
patch 8.1.0627: Python cannot handle function name of script-local function
Bram Moolenaar <Bram@vim.org>
parents:
14395
diff
changeset
|
106 endfunc |
ee63f4fe3d45
patch 8.1.0627: Python cannot handle function name of script-local function
Bram Moolenaar <Bram@vim.org>
parents:
14395
diff
changeset
|
107 let name = '<SNR>' . s:foo() |
ee63f4fe3d45
patch 8.1.0627: Python cannot handle function name of script-local function
Bram Moolenaar <Bram@vim.org>
parents:
14395
diff
changeset
|
108 |
ee63f4fe3d45
patch 8.1.0627: Python cannot handle function name of script-local function
Bram Moolenaar <Bram@vim.org>
parents:
14395
diff
changeset
|
109 try |
ee63f4fe3d45
patch 8.1.0627: Python cannot handle function name of script-local function
Bram Moolenaar <Bram@vim.org>
parents:
14395
diff
changeset
|
110 py f = vim.bindeval('function("s:foo")') |
ee63f4fe3d45
patch 8.1.0627: Python cannot handle function name of script-local function
Bram Moolenaar <Bram@vim.org>
parents:
14395
diff
changeset
|
111 call assert_equal(name, pyeval('f.name')) |
ee63f4fe3d45
patch 8.1.0627: Python cannot handle function name of script-local function
Bram Moolenaar <Bram@vim.org>
parents:
14395
diff
changeset
|
112 catch |
ee63f4fe3d45
patch 8.1.0627: Python cannot handle function name of script-local function
Bram Moolenaar <Bram@vim.org>
parents:
14395
diff
changeset
|
113 call assert_false(v:exception) |
ee63f4fe3d45
patch 8.1.0627: Python cannot handle function name of script-local function
Bram Moolenaar <Bram@vim.org>
parents:
14395
diff
changeset
|
114 endtry |
ee63f4fe3d45
patch 8.1.0627: Python cannot handle function name of script-local function
Bram Moolenaar <Bram@vim.org>
parents:
14395
diff
changeset
|
115 |
ee63f4fe3d45
patch 8.1.0627: Python cannot handle function name of script-local function
Bram Moolenaar <Bram@vim.org>
parents:
14395
diff
changeset
|
116 try |
ee63f4fe3d45
patch 8.1.0627: Python cannot handle function name of script-local function
Bram Moolenaar <Bram@vim.org>
parents:
14395
diff
changeset
|
117 py f = vim.Function('\x80\xfdR' + vim.eval('s:foo()')) |
17976
6d11a0d5751d
patch 8.1.1984: more functions can be used as methods
Bram Moolenaar <Bram@vim.org>
parents:
17089
diff
changeset
|
118 call assert_equal(name, 'f.name'->pyeval()) |
15234
ee63f4fe3d45
patch 8.1.0627: Python cannot handle function name of script-local function
Bram Moolenaar <Bram@vim.org>
parents:
14395
diff
changeset
|
119 catch |
ee63f4fe3d45
patch 8.1.0627: Python cannot handle function name of script-local function
Bram Moolenaar <Bram@vim.org>
parents:
14395
diff
changeset
|
120 call assert_false(v:exception) |
ee63f4fe3d45
patch 8.1.0627: Python cannot handle function name of script-local function
Bram Moolenaar <Bram@vim.org>
parents:
14395
diff
changeset
|
121 endtry |
ee63f4fe3d45
patch 8.1.0627: Python cannot handle function name of script-local function
Bram Moolenaar <Bram@vim.org>
parents:
14395
diff
changeset
|
122 |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
123 " Non-existing function attribute |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
124 call AssertException(["let x = pyeval('f.abc')"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
125 \ 'Vim(let):AttributeError: abc') |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
126 |
15234
ee63f4fe3d45
patch 8.1.0627: Python cannot handle function name of script-local function
Bram Moolenaar <Bram@vim.org>
parents:
14395
diff
changeset
|
127 py del f |
ee63f4fe3d45
patch 8.1.0627: Python cannot handle function name of script-local function
Bram Moolenaar <Bram@vim.org>
parents:
14395
diff
changeset
|
128 delfunc s:foo |
ee63f4fe3d45
patch 8.1.0627: Python cannot handle function name of script-local function
Bram Moolenaar <Bram@vim.org>
parents:
14395
diff
changeset
|
129 endfunc |
15888
a83c4b1f8ea2
patch 8.1.0950: using :python sets 'pyxversion' even when not executed
Bram Moolenaar <Bram@vim.org>
parents:
15234
diff
changeset
|
130 |
a83c4b1f8ea2
patch 8.1.0950: using :python sets 'pyxversion' even when not executed
Bram Moolenaar <Bram@vim.org>
parents:
15234
diff
changeset
|
131 func Test_skipped_python_command_does_not_affect_pyxversion() |
a83c4b1f8ea2
patch 8.1.0950: using :python sets 'pyxversion' even when not executed
Bram Moolenaar <Bram@vim.org>
parents:
15234
diff
changeset
|
132 set pyxversion=0 |
a83c4b1f8ea2
patch 8.1.0950: using :python sets 'pyxversion' even when not executed
Bram Moolenaar <Bram@vim.org>
parents:
15234
diff
changeset
|
133 if 0 |
a83c4b1f8ea2
patch 8.1.0950: using :python sets 'pyxversion' even when not executed
Bram Moolenaar <Bram@vim.org>
parents:
15234
diff
changeset
|
134 python import vim |
a83c4b1f8ea2
patch 8.1.0950: using :python sets 'pyxversion' even when not executed
Bram Moolenaar <Bram@vim.org>
parents:
15234
diff
changeset
|
135 endif |
a83c4b1f8ea2
patch 8.1.0950: using :python sets 'pyxversion' even when not executed
Bram Moolenaar <Bram@vim.org>
parents:
15234
diff
changeset
|
136 call assert_equal(0, &pyxversion) " This assertion would have failed with Vim 8.0.0251. (pyxversion was introduced in 8.0.0251.) |
a83c4b1f8ea2
patch 8.1.0950: using :python sets 'pyxversion' even when not executed
Bram Moolenaar <Bram@vim.org>
parents:
15234
diff
changeset
|
137 endfunc |
16080
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
138 |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
139 func _SetUpHiddenBuffer() |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
140 new |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
141 edit hidden |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
142 setlocal bufhidden=hide |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
143 |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
144 enew |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
145 let lnum = 0 |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
146 while lnum < 10 |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
147 call append( 1, string( lnum ) ) |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
148 let lnum = lnum + 1 |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
149 endwhile |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
150 normal G |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
151 |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
152 call assert_equal( line( '.' ), 11 ) |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
153 endfunc |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
154 |
16138
402b714cb919
patch 8.1.1074: Python test doesn't wipe out hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
16080
diff
changeset
|
155 func _CleanUpHiddenBuffer() |
402b714cb919
patch 8.1.1074: Python test doesn't wipe out hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
16080
diff
changeset
|
156 bwipe! hidden |
402b714cb919
patch 8.1.1074: Python test doesn't wipe out hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
16080
diff
changeset
|
157 bwipe! |
402b714cb919
patch 8.1.1074: Python test doesn't wipe out hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
16080
diff
changeset
|
158 endfunc |
402b714cb919
patch 8.1.1074: Python test doesn't wipe out hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
16080
diff
changeset
|
159 |
16080
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
160 func Test_Write_To_HiddenBuffer_Does_Not_Fix_Cursor_Clear() |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
161 call _SetUpHiddenBuffer() |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
162 py vim.buffers[ int( vim.eval( 'bufnr("hidden")' ) ) ][:] = None |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
163 call assert_equal( line( '.' ), 11 ) |
16138
402b714cb919
patch 8.1.1074: Python test doesn't wipe out hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
16080
diff
changeset
|
164 call _CleanUpHiddenBuffer() |
16080
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
165 endfunc |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
166 |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
167 func Test_Write_To_HiddenBuffer_Does_Not_Fix_Cursor_List() |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
168 call _SetUpHiddenBuffer() |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
169 py vim.buffers[ int( vim.eval( 'bufnr("hidden")' ) ) ][:] = [ 'test' ] |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
170 call assert_equal( line( '.' ), 11 ) |
16138
402b714cb919
patch 8.1.1074: Python test doesn't wipe out hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
16080
diff
changeset
|
171 call _CleanUpHiddenBuffer() |
16080
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
172 endfunc |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
173 |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
174 func Test_Write_To_HiddenBuffer_Does_Not_Fix_Cursor_Str() |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
175 call _SetUpHiddenBuffer() |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
176 py vim.buffers[ int( vim.eval( 'bufnr("hidden")' ) ) ][0] = 'test' |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
177 call assert_equal( line( '.' ), 11 ) |
16138
402b714cb919
patch 8.1.1074: Python test doesn't wipe out hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
16080
diff
changeset
|
178 call _CleanUpHiddenBuffer() |
16080
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
179 endfunc |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
180 |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
181 func Test_Write_To_HiddenBuffer_Does_Not_Fix_Cursor_ClearLine() |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
182 call _SetUpHiddenBuffer() |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
183 py vim.buffers[ int( vim.eval( 'bufnr("hidden")' ) ) ][0] = None |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
184 call assert_equal( line( '.' ), 11 ) |
16138
402b714cb919
patch 8.1.1074: Python test doesn't wipe out hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
16080
diff
changeset
|
185 call _CleanUpHiddenBuffer() |
16080
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
186 endfunc |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
187 |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
188 func _SetUpVisibleBuffer() |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
189 new |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
190 let lnum = 0 |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
191 while lnum < 10 |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
192 call append( 1, string( lnum ) ) |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
193 let lnum = lnum + 1 |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
194 endwhile |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
195 normal G |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
196 call assert_equal( line( '.' ), 11 ) |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
197 endfunc |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
198 |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
199 func Test_Write_To_Current_Buffer_Fixes_Cursor_Clear() |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
200 call _SetUpVisibleBuffer() |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
201 |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
202 py vim.current.buffer[:] = None |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
203 call assert_equal( line( '.' ), 1 ) |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
204 |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
205 bwipe! |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
206 endfunc |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
207 |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
208 func Test_Write_To_Current_Buffer_Fixes_Cursor_List() |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
209 call _SetUpVisibleBuffer() |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
210 |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
211 py vim.current.buffer[:] = [ 'test' ] |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
212 call assert_equal( line( '.' ), 1 ) |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
213 |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
214 bwipe! |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
215 endfunc |
16080
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
216 |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
217 func Test_Write_To_Current_Buffer_Fixes_Cursor_Str() |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
218 call _SetUpVisibleBuffer() |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
219 |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
220 py vim.current.buffer[-1] = None |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
221 call assert_equal( line( '.' ), 10 ) |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
222 |
bf8cf5c3b784
patch 8.1.1045: E315 ml_get error when using Python and hidden buffer
Bram Moolenaar <Bram@vim.org>
parents:
15888
diff
changeset
|
223 bwipe! |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
224 endfunc |
16688
e791f29affae
patch 8.1.1346: error for Python exception does not show useful info
Bram Moolenaar <Bram@vim.org>
parents:
16138
diff
changeset
|
225 |
e791f29affae
patch 8.1.1346: error for Python exception does not show useful info
Bram Moolenaar <Bram@vim.org>
parents:
16138
diff
changeset
|
226 func Test_Catch_Exception_Message() |
e791f29affae
patch 8.1.1346: error for Python exception does not show useful info
Bram Moolenaar <Bram@vim.org>
parents:
16138
diff
changeset
|
227 try |
e791f29affae
patch 8.1.1346: error for Python exception does not show useful info
Bram Moolenaar <Bram@vim.org>
parents:
16138
diff
changeset
|
228 py raise RuntimeError( 'TEST' ) |
e791f29affae
patch 8.1.1346: error for Python exception does not show useful info
Bram Moolenaar <Bram@vim.org>
parents:
16138
diff
changeset
|
229 catch /.*/ |
e791f29affae
patch 8.1.1346: error for Python exception does not show useful info
Bram Moolenaar <Bram@vim.org>
parents:
16138
diff
changeset
|
230 call assert_match( '^Vim(.*):RuntimeError: TEST$', v:exception ) |
e791f29affae
patch 8.1.1346: error for Python exception does not show useful info
Bram Moolenaar <Bram@vim.org>
parents:
16138
diff
changeset
|
231 endtry |
e791f29affae
patch 8.1.1346: error for Python exception does not show useful info
Bram Moolenaar <Bram@vim.org>
parents:
16138
diff
changeset
|
232 endfunc |
20045
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
18870
diff
changeset
|
233 |
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
18870
diff
changeset
|
234 " Test for various heredoc syntax |
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
18870
diff
changeset
|
235 func Test_python_heredoc() |
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
18870
diff
changeset
|
236 python << END |
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
18870
diff
changeset
|
237 s='A' |
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
18870
diff
changeset
|
238 END |
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
18870
diff
changeset
|
239 python << |
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
18870
diff
changeset
|
240 s+='B' |
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
18870
diff
changeset
|
241 . |
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
18870
diff
changeset
|
242 python << trim END |
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
18870
diff
changeset
|
243 s+='C' |
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
18870
diff
changeset
|
244 END |
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
18870
diff
changeset
|
245 python << trim |
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
18870
diff
changeset
|
246 s+='D' |
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
18870
diff
changeset
|
247 . |
20233
5f9c2c7d3d73
patch 8.2.0672: heredoc in scripts does not accept lower case marker
Bram Moolenaar <Bram@vim.org>
parents:
20045
diff
changeset
|
248 python << trim eof |
5f9c2c7d3d73
patch 8.2.0672: heredoc in scripts does not accept lower case marker
Bram Moolenaar <Bram@vim.org>
parents:
20045
diff
changeset
|
249 s+='E' |
5f9c2c7d3d73
patch 8.2.0672: heredoc in scripts does not accept lower case marker
Bram Moolenaar <Bram@vim.org>
parents:
20045
diff
changeset
|
250 eof |
5f9c2c7d3d73
patch 8.2.0672: heredoc in scripts does not accept lower case marker
Bram Moolenaar <Bram@vim.org>
parents:
20045
diff
changeset
|
251 call assert_equal('ABCDE', pyxeval('s')) |
20045
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
18870
diff
changeset
|
252 endfunc |
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
18870
diff
changeset
|
253 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
254 " Test for the buffer range object |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
255 func Test_python_range() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
256 new |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
257 call setline(1, ['one', 'two', 'three']) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
258 py b = vim.current.buffer |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
259 py r = b.range(1, 3) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
260 call assert_equal(0, pyeval('r.start')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
261 call assert_equal(2, pyeval('r.end')) |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
262 call assert_equal('one', pyeval('r[0]')) |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
263 call assert_equal('one', pyeval('r[-3]')) |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
264 call assert_equal('three', pyeval('r[-4]')) |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
265 call assert_equal(['two', 'three'], pyeval('r[1:]')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
266 py r[0] = 'green' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
267 call assert_equal(['green', 'two', 'three'], getline(1, '$')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
268 py r[0:2] = ['red', 'blue'] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
269 call assert_equal(['red', 'blue', 'three'], getline(1, '$')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
270 call assert_equal(['start', 'end', '__members__'], pyeval('r.__members__')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
271 |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
272 " try different invalid start/end index for the range slice |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
273 %d |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
274 call setline(1, ['one', 'two', 'three']) |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
275 py r[-10:1] = ["a"] |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
276 py r[10:12] = ["b"] |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
277 py r[-10:-9] = ["c"] |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
278 py r[1:0] = ["d"] |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
279 call assert_equal(['c', 'd', 'a', 'two', 'three', 'b'], getline(1, '$')) |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
280 |
21198
8531ddd7dd63
patch 8.2.1150: ml_get error when using Python
Bram Moolenaar <Bram@vim.org>
parents:
21190
diff
changeset
|
281 " The following code used to trigger an ml_get error |
8531ddd7dd63
patch 8.2.1150: ml_get error when using Python
Bram Moolenaar <Bram@vim.org>
parents:
21190
diff
changeset
|
282 %d |
8531ddd7dd63
patch 8.2.1150: ml_get error when using Python
Bram Moolenaar <Bram@vim.org>
parents:
21190
diff
changeset
|
283 let x = pyeval('r[:]') |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
284 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
285 " Non-existing range attribute |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
286 call AssertException(["let x = pyeval('r.abc')"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
287 \ 'Vim(let):AttributeError: abc') |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
288 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
289 close! |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
290 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
291 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
292 " Test for the python tabpage object |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
293 func Test_python_tabpage() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
294 tabnew |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
295 py t = vim.tabpages[1] |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
296 py wl = t.windows |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
297 tabclose |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
298 " Accessing a closed tabpage |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
299 call AssertException(["let n = pyeval('t.number')"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
300 \ 'Vim(let):vim.error: attempt to refer to deleted tab page') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
301 call AssertException(["let n = pyeval('len(wl)')"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
302 \ 'Vim(let):vim.error: attempt to refer to deleted tab page') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
303 call AssertException(["py w = wl[0]"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
304 \ 'Vim(python):vim.error: attempt to refer to deleted tab page') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
305 call AssertException(["py vim.current.tabpage = t"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
306 \ 'Vim(python):vim.error: attempt to refer to deleted tab page') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
307 call assert_match('<tabpage object (deleted)', pyeval('repr(t)')) |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
308 %bw! |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
309 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
310 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
311 " Test for the python window object |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
312 func Test_python_window() |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
313 " Test for setting the window height |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
314 10new |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
315 py vim.current.window.height = 5 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
316 call assert_equal(5, winheight(0)) |
24685
04205b7d67d5
patch 8.2.2881: various pieces of code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
24667
diff
changeset
|
317 py vim.current.window.height = 3.2 |
04205b7d67d5
patch 8.2.2881: various pieces of code not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
24667
diff
changeset
|
318 call assert_equal(3, winheight(0)) |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
319 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
320 " Test for setting the window width |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
321 10vnew |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
322 py vim.current.window.width = 6 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
323 call assert_equal(6, winwidth(0)) |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
324 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
325 " Try accessing a closed window |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
326 py w = vim.current.window |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
327 py wopts = w.options |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
328 close |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
329 " Access the attributes of a closed window |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
330 call AssertException(["let n = pyeval('w.number')"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
331 \ 'Vim(let):vim.error: attempt to refer to deleted window') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
332 call AssertException(["py w.height = 5"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
333 \ 'Vim(python):vim.error: attempt to refer to deleted window') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
334 call AssertException(["py vim.current.window = w"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
335 \ 'Vim(python):vim.error: attempt to refer to deleted window') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
336 " Try to set one of the options of the closed window |
21198
8531ddd7dd63
patch 8.2.1150: ml_get error when using Python
Bram Moolenaar <Bram@vim.org>
parents:
21190
diff
changeset
|
337 " The following caused an ASAN failure |
8531ddd7dd63
patch 8.2.1150: ml_get error when using Python
Bram Moolenaar <Bram@vim.org>
parents:
21190
diff
changeset
|
338 call AssertException(["py wopts['list'] = False"], |
8531ddd7dd63
patch 8.2.1150: ml_get error when using Python
Bram Moolenaar <Bram@vim.org>
parents:
21190
diff
changeset
|
339 \ 'vim.error: attempt to refer to deleted window') |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
340 call assert_match('<window object (deleted)', pyeval("repr(w)")) |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
341 %bw! |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
342 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
343 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
344 " Test for the python List object |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
345 func Test_python_list() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
346 let l = [1, 2] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
347 py pl = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
348 call assert_equal(['locked', '__members__'], pyeval('pl.__members__')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
349 |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
350 " Try to convert a null List |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
351 call AssertException(["py t = vim.eval('test_null_list()')"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
352 \ 'Vim(python):SystemError: error return without exception set') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
353 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
354 " Try to convert a List with a null List item |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
355 call AssertException(["py t = vim.eval('[test_null_list()]')"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
356 \ 'Vim(python):SystemError: error return without exception set') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
357 |
22806
690b84a6a7ce
patch 8.2.1951: test for list and dict fails
Bram Moolenaar <Bram@vim.org>
parents:
22011
diff
changeset
|
358 " Try to bind a null List variable (works because an empty list is used) |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
359 let cmds =<< trim END |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
360 let l = test_null_list() |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
361 py ll = vim.bindeval('l') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
362 END |
22806
690b84a6a7ce
patch 8.2.1951: test for list and dict fails
Bram Moolenaar <Bram@vim.org>
parents:
22011
diff
changeset
|
363 call AssertException(cmds, '') |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
364 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
365 let l = [] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
366 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
367 py f = vim.bindeval('function("strlen")') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
368 " Extending List directly with different types |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
369 py l.extend([1, "as'd", [1, 2, f, {'a': 1}]]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
370 call assert_equal([1, "as'd", [1, 2, function("strlen"), {'a': 1}]], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
371 call assert_equal([1, 2, function("strlen"), {'a': 1}], l[-1]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
372 call assert_fails('echo l[-4]', 'E684:') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
373 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
374 " List assignment |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
375 py l[0] = 0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
376 call assert_equal([0, "as'd", [1, 2, function("strlen"), {'a': 1}]], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
377 py l[-2] = f |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
378 call assert_equal([0, function("strlen"), [1, 2, function("strlen"), {'a': 1}]], l) |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
379 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
380 " appending to a list |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
381 let l = [1, 2] |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
382 py ll = vim.bindeval('l') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
383 py ll[2] = 8 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
384 call assert_equal([1, 2, 8], l) |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
385 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
386 " Using dict as an index |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
387 call AssertException(['py ll[{}] = 10'], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
388 \ 'Vim(python):TypeError: index must be int or slice, not dict') |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
389 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
390 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
391 " Test for the python Dict object |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
392 func Test_python_dict() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
393 let d = {} |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
394 py pd = vim.bindeval('d') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
395 call assert_equal(['locked', 'scope', '__members__'], |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
396 \ pyeval('pd.__members__')) |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
397 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
398 " Try to convert a null Dict |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
399 call AssertException(["py t = vim.eval('test_null_dict()')"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
400 \ 'Vim(python):SystemError: error return without exception set') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
401 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
402 " Try to convert a Dict with a null List value |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
403 call AssertException(["py t = vim.eval(\"{'a' : test_null_list()}\")"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
404 \ 'Vim(python):SystemError: error return without exception set') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
405 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
406 " Try to convert a Dict with a null string key |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
407 py t = vim.eval("{test_null_string() : 10}") |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
408 call assert_fails("let d = pyeval('t')", 'E859:') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
409 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
410 " Dict length |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
411 let d = {'a' : 10, 'b' : 20} |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
412 py d = vim.bindeval('d') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
413 call assert_equal(2, pyeval('len(d)')) |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
414 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
415 " Deleting an non-existing key |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
416 call AssertException(["py del d['c']"], "Vim(python):KeyError: 'c'") |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
417 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
418 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
419 " Extending Dictionary directly with different types |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
420 func Test_python_dict_extend() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
421 let d = {} |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
422 func d.f() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
423 return 1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
424 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
425 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
426 py f = vim.bindeval('function("strlen")') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
427 py << trim EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
428 d = vim.bindeval('d') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
429 d['1'] = 'asd' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
430 d.update() # Must not do anything, including throwing errors |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
431 d.update(b = [1, 2, f]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
432 d.update((('-1', {'a': 1}),)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
433 d.update({'0': -1}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
434 dk = d.keys() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
435 dv = d.values() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
436 di = d.items() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
437 cmpfun = lambda a, b: cmp(repr(a), repr(b)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
438 dk.sort(cmpfun) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
439 dv.sort(cmpfun) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
440 di.sort(cmpfun) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
441 EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
442 |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
443 " Try extending a locked dictionary |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
444 lockvar d |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
445 call AssertException(["py d.update({'b' : 20})"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
446 \ 'Vim(python):vim.error: dictionary is locked') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
447 unlockvar d |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
448 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
449 call assert_equal(1, pyeval("d['f'](self={})")) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
450 call assert_equal("['-1', '0', '1', 'b', 'f']", pyeval('repr(dk)')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
451 call assert_equal("['asd', -1L, <vim.Function '1'>, <vim.dictionary object at >, <vim.list object at >]", substitute(pyeval('repr(dv)'),'0x\x\+','','g')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
452 call assert_equal("[('-1', <vim.dictionary object at >), ('0', -1L), ('1', 'asd'), ('b', <vim.list object at >), ('f', <vim.Function '1'>)]", substitute(pyeval('repr(di)'),'0x\x\+','','g')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
453 call assert_equal(['0', '1', 'b', 'f', '-1'], keys(d)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
454 call assert_equal("[-1, 'asd', [1, 2, function('strlen')], function('1'), {'a': 1}]", string(values(d))) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
455 py del dk |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
456 py del di |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
457 py del dv |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
458 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
459 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
460 func Test_python_list_del_items() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
461 " removing items with del |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
462 let l = [0, function("strlen"), [1, 2, function("strlen"), {'a': 1}]] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
463 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
464 py del l[2] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
465 call assert_equal("[0, function('strlen')]", string(l)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
466 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
467 let l = range(8) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
468 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
469 py del l[:3] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
470 py del l[1:] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
471 call assert_equal([3], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
472 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
473 " removing items out of range: silently skip items that don't exist |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
474 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
475 " The following two ranges delete nothing as they match empty list: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
476 let l = [0, 1, 2, 3] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
477 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
478 py del l[2:1] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
479 call assert_equal([0, 1, 2, 3], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
480 py del l[2:2] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
481 call assert_equal([0, 1, 2, 3], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
482 py del l[2:3] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
483 call assert_equal([0, 1, 3], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
484 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
485 let l = [0, 1, 2, 3] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
486 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
487 py del l[2:4] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
488 call assert_equal([0, 1], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
489 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
490 let l = [0, 1, 2, 3] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
491 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
492 py del l[2:5] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
493 call assert_equal([0, 1], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
494 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
495 let l = [0, 1, 2, 3] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
496 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
497 py del l[2:6] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
498 call assert_equal([0, 1], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
499 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
500 " The following two ranges delete nothing as they match empty list: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
501 let l = [0, 1, 2, 3] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
502 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
503 py del l[-1:2] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
504 call assert_equal([0, 1, 2, 3], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
505 py del l[-2:2] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
506 call assert_equal([0, 1, 2, 3], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
507 py del l[-3:2] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
508 call assert_equal([0, 2, 3], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
509 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
510 let l = [0, 1, 2, 3] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
511 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
512 py del l[-4:2] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
513 call assert_equal([2, 3], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
514 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
515 let l = [0, 1, 2, 3] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
516 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
517 py del l[-5:2] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
518 call assert_equal([2, 3], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
519 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
520 let l = [0, 1, 2, 3] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
521 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
522 py del l[-6:2] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
523 call assert_equal([2, 3], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
524 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
525 let l = [0, 1, 2, 3] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
526 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
527 py del l[::2] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
528 call assert_equal([1, 3], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
529 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
530 let l = [0, 1, 2, 3] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
531 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
532 py del l[3:0:-2] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
533 call assert_equal([0, 2], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
534 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
535 let l = [0, 1, 2, 3] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
536 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
537 py del l[2:4:-2] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
538 let l = [0, 1, 2, 3] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
539 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
540 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
541 func Test_python_dict_del_items() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
542 let d = eval("{'0' : -1, '1' : 'asd', 'b' : [1, 2, function('strlen')], 'f' : function('min'), '-1' : {'a': 1}}") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
543 py d = vim.bindeval('d') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
544 py del d['-1'] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
545 py del d['f'] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
546 call assert_equal([1, 2, function('strlen')], pyeval('d.get(''b'', 1)')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
547 call assert_equal([1, 2, function('strlen')], pyeval('d.pop(''b'')')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
548 call assert_equal(1, pyeval('d.get(''b'', 1)')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
549 call assert_equal('asd', pyeval('d.pop(''1'', 2)')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
550 call assert_equal(2, pyeval('d.pop(''1'', 2)')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
551 call assert_equal('True', pyeval('repr(d.has_key(''0''))')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
552 call assert_equal('False', pyeval('repr(d.has_key(''1''))')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
553 call assert_equal('True', pyeval('repr(''0'' in d)')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
554 call assert_equal('False', pyeval('repr(''1'' in d)')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
555 call assert_equal("['0']", pyeval('repr(list(iter(d)))')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
556 call assert_equal({'0' : -1}, d) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
557 call assert_equal("('0', -1L)", pyeval('repr(d.popitem())')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
558 call assert_equal('None', pyeval('repr(d.get(''0''))')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
559 call assert_equal('[]', pyeval('repr(list(iter(d)))')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
560 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
561 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
562 " Slice assignment to a list |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
563 func Test_python_slice_assignment() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
564 let l = [0, 1, 2, 3] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
565 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
566 py l[0:0] = ['a'] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
567 call assert_equal(['a', 0, 1, 2, 3], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
568 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
569 let l = [0, 1, 2, 3] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
570 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
571 py l[1:2] = ['b'] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
572 call assert_equal([0, 'b', 2, 3], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
573 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
574 let l = [0, 1, 2, 3] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
575 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
576 py l[2:4] = ['c'] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
577 call assert_equal([0, 1, 'c'], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
578 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
579 let l = [0, 1, 2, 3] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
580 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
581 py l[4:4] = ['d'] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
582 call assert_equal([0, 1, 2, 3, 'd'], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
583 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
584 let l = [0, 1, 2, 3] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
585 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
586 py l[-1:2] = ['e'] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
587 call assert_equal([0, 1, 2, 'e', 3], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
588 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
589 let l = [0, 1, 2, 3] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
590 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
591 py l[-10:2] = ['f'] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
592 call assert_equal(['f', 2, 3], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
593 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
594 let l = [0, 1, 2, 3] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
595 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
596 py l[2:-10] = ['g'] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
597 call assert_equal([0, 1, 'g', 2, 3], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
598 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
599 let l = [] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
600 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
601 py l[0:0] = ['h'] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
602 call assert_equal(['h'], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
603 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
604 let l = range(8) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
605 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
606 py l[2:6:2] = [10, 20] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
607 call assert_equal([0, 1, 10, 3, 20, 5, 6, 7], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
608 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
609 let l = range(8) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
610 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
611 py l[6:2:-2] = [10, 20] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
612 call assert_equal([0, 1, 2, 3, 20, 5, 10, 7], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
613 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
614 let l = range(8) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
615 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
616 py l[6:2] = () |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
617 call assert_equal([0, 1, 2, 3, 4, 5, 6, 7], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
618 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
619 let l = range(8) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
620 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
621 py l[6:2:1] = () |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
622 call assert_equal([0, 1, 2, 3, 4, 5, 6, 7], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
623 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
624 let l = range(8) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
625 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
626 py l[2:2:1] = () |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
627 call assert_equal([0, 1, 2, 3, 4, 5, 6, 7], l) |
21200
37edecbfb834
patch 8.2.1151: insufficient test coverage for Python
Bram Moolenaar <Bram@vim.org>
parents:
21198
diff
changeset
|
628 |
37edecbfb834
patch 8.2.1151: insufficient test coverage for Python
Bram Moolenaar <Bram@vim.org>
parents:
21198
diff
changeset
|
629 call AssertException(["py x = l[10:11:0]"], |
37edecbfb834
patch 8.2.1151: insufficient test coverage for Python
Bram Moolenaar <Bram@vim.org>
parents:
21198
diff
changeset
|
630 \ "Vim(python):ValueError: slice step cannot be zero") |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
631 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
632 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
633 " Locked variables |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
634 func Test_python_lockedvar() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
635 new |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
636 py cb = vim.current.buffer |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
637 let l = [0, 1, 2, 3] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
638 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
639 lockvar! l |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
640 py << trim EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
641 try: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
642 l[2]='i' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
643 except vim.error: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
644 cb.append('l[2] threw vim.error: ' + emsg(sys.exc_info())) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
645 EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
646 call assert_equal(['', "l[2] threw vim.error: error:('list is locked',)"], |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
647 \ getline(1, '$')) |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
648 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
649 " Try to concatenate a locked list |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
650 call AssertException(['py l += [4, 5]'], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
651 \ 'Vim(python):vim.error: list is locked') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
652 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
653 call assert_equal([0, 1, 2, 3], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
654 unlockvar! l |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
655 close! |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
656 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
657 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
658 " Test for calling a function |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
659 func Test_python_function_call() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
660 func New(...) |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
661 return ['NewStart'] + a:000 + ['NewEnd'] |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
662 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
663 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
664 func DictNew(...) dict |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
665 return ['DictNewStart'] + a:000 + ['DictNewEnd', self] |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
666 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
667 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
668 new |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
669 let l = [function('New'), function('DictNew')] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
670 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
671 py l.extend(list(l[0](1, 2, 3))) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
672 call assert_equal([function('New'), function('DictNew'), 'NewStart', 1, 2, 3, 'NewEnd'], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
673 py l.extend(list(l[1](1, 2, 3, self={'a': 'b'}))) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
674 call assert_equal([function('New'), function('DictNew'), 'NewStart', 1, 2, 3, 'NewEnd', 'DictNewStart', 1, 2, 3, 'DictNewEnd', {'a': 'b'}], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
675 py l.extend([l[0].name]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
676 call assert_equal([function('New'), function('DictNew'), 'NewStart', 1, 2, 3, 'NewEnd', 'DictNewStart', 1, 2, 3, 'DictNewEnd', {'a': 'b'}, 'New'], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
677 py ee('l[1](1, 2, 3)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
678 call assert_equal("l[1](1, 2, 3):error:('Vim:E725: Calling dict function without Dictionary: DictNew',)", getline(2)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
679 %d |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
680 py f = l[0] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
681 delfunction New |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
682 py ee('f(1, 2, 3)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
683 call assert_equal("f(1, 2, 3):error:('Vim:E117: Unknown function: New',)", getline(2)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
684 close! |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
685 delfunction DictNew |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
686 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
687 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
688 func Test_python_float() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
689 CheckFeature float |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
690 let l = [0.0] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
691 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
692 py l.extend([0.0]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
693 call assert_equal([0.0, 0.0], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
694 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
695 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
696 " Test for Dict key errors |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
697 func Test_python_dict_key_error() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
698 let messages = [] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
699 py << trim EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
700 d = vim.bindeval('{}') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
701 m = vim.bindeval('messages') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
702 def em(expr, g=globals(), l=locals()): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
703 try: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
704 exec(expr, g, l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
705 except: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
706 m.extend([sys.exc_type.__name__]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
707 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
708 em('d["abc1"]') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
709 em('d["abc1"]="\\0"') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
710 em('d["abc1"]=vim') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
711 em('d[""]=1') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
712 em('d["a\\0b"]=1') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
713 em('d[u"a\\0b"]=1') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
714 em('d.pop("abc1")') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
715 em('d.popitem()') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
716 del em |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
717 del m |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
718 EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
719 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
720 call assert_equal(['KeyError', 'TypeError', 'TypeError', 'ValueError', |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
721 \ 'TypeError', 'TypeError', 'KeyError', 'KeyError'], messages) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
722 unlet messages |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
723 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
724 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
725 " Test for locked and scope attributes |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
726 func Test_python_lock_scope_attr() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
727 let d = {} | let dl = {} | lockvar dl |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
728 let res = [] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
729 for s in split("d dl v: g:") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
730 let name = tr(s, ':', 's') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
731 execute 'py ' .. name .. ' = vim.bindeval("' .. s .. '")' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
732 call add(res, s .. ' : ' .. join(map(['locked', 'scope'], |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
733 \ 'v:val .. ":" .. pyeval(name .. "." .. v:val)'), ';')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
734 endfor |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
735 call assert_equal(['d : locked:0;scope:0', 'dl : locked:1;scope:0', |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
736 \ 'v: : locked:2;scope:1', 'g: : locked:0;scope:2'], res) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
737 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
738 silent! let d.abc2 = 1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
739 silent! let dl.abc3 = 1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
740 py d.locked = True |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
741 py dl.locked = False |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
742 silent! let d.def = 1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
743 silent! let dl.def = 1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
744 call assert_equal({'abc2': 1}, d) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
745 call assert_equal({'def': 1}, dl) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
746 unlet d dl |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
747 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
748 let l = [] | let ll = [] | lockvar ll |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
749 let res = [] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
750 for s in split("l ll") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
751 let name = tr(s, ':', 's') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
752 execute 'py ' .. name .. '=vim.bindeval("' .. s .. '")' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
753 call add(res, s .. ' : locked:' .. pyeval(name .. '.locked')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
754 endfor |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
755 call assert_equal(['l : locked:0', 'll : locked:1'], res) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
756 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
757 silent! call extend(l, [0]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
758 silent! call extend(ll, [0]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
759 py l.locked = True |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
760 py ll.locked = False |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
761 silent! call extend(l, [1]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
762 silent! call extend(ll, [1]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
763 call assert_equal([0], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
764 call assert_equal([1], ll) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
765 unlet l ll |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
766 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
767 " Try changing an attribute of a fixed list |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
768 py a = vim.bindeval('v:argv') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
769 call AssertException(['py a.locked = 0'], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
770 \ 'Vim(python):TypeError: cannot modify fixed list') |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
771 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
772 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
773 " Test for pyeval() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
774 func Test_python_pyeval() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
775 let l = pyeval('range(3)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
776 call assert_equal([0, 1, 2], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
777 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
778 let d = pyeval('{"a": "b", "c": 1, "d": ["e"]}') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
779 call assert_equal([['a', 'b'], ['c', 1], ['d', ['e']]], sort(items(d))) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
780 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
781 let v:errmsg = '' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
782 call assert_equal(v:none, pyeval('None')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
783 call assert_equal('', v:errmsg) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
784 |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
785 py v = vim.eval('test_null_function()') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
786 call assert_equal(v:none, pyeval('v')) |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
787 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
788 if has('float') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
789 call assert_equal(0.0, pyeval('0.0')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
790 endif |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
791 |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
792 " Evaluate an invalid values |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
793 call AssertException(['let v = pyeval(''"\0"'')'], 'E859:') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
794 call AssertException(['let v = pyeval(''{"\0" : 1}'')'], 'E859:') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
795 call AssertException(['let v = pyeval("undefined_name")'], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
796 \ "Vim(let):NameError: name 'undefined_name' is not defined") |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
797 call AssertException(['let v = pyeval("vim")'], 'E859:') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
798 endfunc |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
799 |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
800 " Test for vim.bindeval() |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
801 func Test_python_vim_bindeval() |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
802 " Float |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
803 let f = 3.14 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
804 py f = vim.bindeval('f') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
805 call assert_equal(3.14, pyeval('f')) |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
806 |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
807 " Blob |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
808 let b = 0z12 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
809 py b = vim.bindeval('b') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
810 call assert_equal("\x12", pyeval('b')) |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
811 |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
812 " Bool |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
813 call assert_equal(1, pyeval("vim.bindeval('v:true')")) |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
814 call assert_equal(0, pyeval("vim.bindeval('v:false')")) |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
815 call assert_equal(v:none, pyeval("vim.bindeval('v:null')")) |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
816 call assert_equal(v:none, pyeval("vim.bindeval('v:none')")) |
21200
37edecbfb834
patch 8.2.1151: insufficient test coverage for Python
Bram Moolenaar <Bram@vim.org>
parents:
21198
diff
changeset
|
817 |
37edecbfb834
patch 8.2.1151: insufficient test coverage for Python
Bram Moolenaar <Bram@vim.org>
parents:
21198
diff
changeset
|
818 " channel/job |
24667
8feb0450b690
patch 8.2.2872: Python tests fail without the channel feature
Bram Moolenaar <Bram@vim.org>
parents:
23264
diff
changeset
|
819 if has('channel') |
8feb0450b690
patch 8.2.2872: Python tests fail without the channel feature
Bram Moolenaar <Bram@vim.org>
parents:
23264
diff
changeset
|
820 call assert_equal(v:none, pyeval("vim.bindeval('test_null_channel()')")) |
8feb0450b690
patch 8.2.2872: Python tests fail without the channel feature
Bram Moolenaar <Bram@vim.org>
parents:
23264
diff
changeset
|
821 endif |
8feb0450b690
patch 8.2.2872: Python tests fail without the channel feature
Bram Moolenaar <Bram@vim.org>
parents:
23264
diff
changeset
|
822 if has('job') |
8feb0450b690
patch 8.2.2872: Python tests fail without the channel feature
Bram Moolenaar <Bram@vim.org>
parents:
23264
diff
changeset
|
823 call assert_equal(v:none, pyeval("vim.bindeval('test_null_job()')")) |
8feb0450b690
patch 8.2.2872: Python tests fail without the channel feature
Bram Moolenaar <Bram@vim.org>
parents:
23264
diff
changeset
|
824 endif |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
825 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
826 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
827 " threading |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
828 " Running pydo command (Test_pydo) before this test, stops the python thread |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
829 " from running. So this test should be run before the pydo test |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
830 func Test_aaa_python_threading() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
831 let l = [0] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
832 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
833 py << trim EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
834 import threading |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
835 import time |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
836 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
837 class T(threading.Thread): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
838 def __init__(self): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
839 threading.Thread.__init__(self) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
840 self.t = 0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
841 self.running = True |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
842 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
843 def run(self): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
844 while self.running: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
845 self.t += 1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
846 time.sleep(0.1) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
847 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
848 t = T() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
849 del T |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
850 t.start() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
851 EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
852 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
853 sleep 1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
854 py t.running = False |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
855 py t.join() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
856 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
857 " Check if the background thread is working. Count should be 10, but on a |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
858 " busy system (AppVeyor) it can be much lower. |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
859 py l[0] = t.t > 4 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
860 py del time |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
861 py del threading |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
862 py del t |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
863 call assert_equal([1], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
864 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
865 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
866 " settrace |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
867 func Test_python_settrace() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
868 let l = [] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
869 py l = vim.bindeval('l') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
870 py << trim EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
871 import sys |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
872 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
873 def traceit(frame, event, arg): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
874 global l |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
875 if event == "line": |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
876 l.extend([frame.f_lineno]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
877 return traceit |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
878 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
879 def trace_main(): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
880 for i in range(5): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
881 pass |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
882 EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
883 py sys.settrace(traceit) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
884 py trace_main() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
885 py sys.settrace(None) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
886 py del traceit |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
887 py del trace_main |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
888 call assert_equal([1, 10, 11, 10, 11, 10, 11, 10, 11, 10, 11, 10, 1], l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
889 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
890 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
891 " Slice |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
892 func Test_python_list_slice() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
893 py ll = vim.bindeval('[0, 1, 2, 3, 4, 5]') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
894 py l = ll[:4] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
895 call assert_equal([0, 1, 2, 3], pyeval('l')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
896 py l = ll[2:] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
897 call assert_equal([2, 3, 4, 5], pyeval('l')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
898 py l = ll[:-4] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
899 call assert_equal([0, 1], pyeval('l')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
900 py l = ll[-2:] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
901 call assert_equal([4, 5], pyeval('l')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
902 py l = ll[2:4] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
903 call assert_equal([2, 3], pyeval('l')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
904 py l = ll[4:2] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
905 call assert_equal([], pyeval('l')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
906 py l = ll[-4:-2] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
907 call assert_equal([2, 3], pyeval('l')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
908 py l = ll[-2:-4] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
909 call assert_equal([], pyeval('l')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
910 py l = ll[:] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
911 call assert_equal([0, 1, 2, 3, 4, 5], pyeval('l')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
912 py l = ll[0:6] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
913 call assert_equal([0, 1, 2, 3, 4, 5], pyeval('l')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
914 py l = ll[-10:10] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
915 call assert_equal([0, 1, 2, 3, 4, 5], pyeval('l')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
916 py l = ll[4:2:-1] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
917 call assert_equal([4, 3], pyeval('l')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
918 py l = ll[::2] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
919 call assert_equal([0, 2, 4], pyeval('l')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
920 py l = ll[4:2:1] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
921 call assert_equal([], pyeval('l')) |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
922 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
923 " Error case: Use an invalid index |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
924 call AssertException(['py ll[-10] = 5'], 'Vim(python):vim.error: internal error:') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
925 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
926 " Use a step value of 0 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
927 call AssertException(['py ll[0:3:0] = [1, 2, 3]'], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
928 \ 'Vim(python):ValueError: slice step cannot be zero') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
929 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
930 " Error case: Invalid slice type |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
931 call AssertException(["py x = ll['abc']"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
932 \ 'Vim(python):TypeError: index must be int or slice, not str') |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
933 py del l |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
934 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
935 " Error case: List with a null list item |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
936 let l = [test_null_list()] |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
937 py ll = vim.bindeval('l') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
938 call AssertException(["py x = ll[:]"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
939 \ 'Vim(python):SystemError: error return without exception set') |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
940 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
941 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
942 " Vars |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
943 func Test_python_vars() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
944 let g:foo = 'bac' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
945 let w:abc3 = 'def' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
946 let b:baz = 'bar' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
947 let t:bar = 'jkl' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
948 try |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
949 throw "Abc" |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
950 catch /Abc/ |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
951 call assert_equal('Abc', pyeval('vim.vvars[''exception'']')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
952 endtry |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
953 call assert_equal('bac', pyeval('vim.vars[''foo'']')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
954 call assert_equal('def', pyeval('vim.current.window.vars[''abc3'']')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
955 call assert_equal('bar', pyeval('vim.current.buffer.vars[''baz'']')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
956 call assert_equal('jkl', pyeval('vim.current.tabpage.vars[''bar'']')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
957 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
958 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
959 " Options |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
960 " paste: boolean, global |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
961 " previewheight number, global |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
962 " operatorfunc: string, global |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
963 " number: boolean, window-local |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
964 " numberwidth: number, window-local |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
965 " colorcolumn: string, window-local |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
966 " statusline: string, window-local/global |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
967 " autoindent: boolean, buffer-local |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
968 " shiftwidth: number, buffer-local |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
969 " omnifunc: string, buffer-local |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
970 " preserveindent: boolean, buffer-local/global |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
971 " path: string, buffer-local/global |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
972 func Test_python_opts() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
973 let g:res = [] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
974 let g:bufs = [bufnr('%')] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
975 new |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
976 let g:bufs += [bufnr('%')] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
977 vnew |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
978 let g:bufs += [bufnr('%')] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
979 wincmd j |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
980 vnew |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
981 let g:bufs += [bufnr('%')] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
982 wincmd l |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
983 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
984 func RecVars(opt) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
985 let gval = string(eval('&g:' .. a:opt)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
986 let wvals = join(map(range(1, 4), |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
987 \ 'v:val .. ":" .. string(getwinvar(v:val, "&" .. a:opt))')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
988 let bvals = join(map(copy(g:bufs), |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
989 \ 'v:val .. ":" .. string(getbufvar(v:val, "&" .. a:opt))')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
990 call add(g:res, ' G: ' .. gval) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
991 call add(g:res, ' W: ' .. wvals) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
992 call add(g:res, ' B: ' .. wvals) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
993 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
994 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
995 py << trim EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
996 def e(s, g=globals(), l=locals()): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
997 try: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
998 exec(s, g, l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
999 except: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1000 vim.command('return ' + repr(sys.exc_type.__name__)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1001 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1002 def ev(s, g=globals(), l=locals()): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1003 try: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1004 return eval(s, g, l) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1005 except: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1006 vim.command('let exc=' + repr(sys.exc_type.__name__)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1007 return 0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1008 EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1009 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1010 func E(s) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1011 python e(vim.eval('a:s')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1012 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1013 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1014 func Ev(s) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1015 let r = pyeval('ev(vim.eval("a:s"))') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1016 if exists('exc') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1017 throw exc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1018 endif |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1019 return r |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1020 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1021 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1022 py gopts1 = vim.options |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1023 py wopts1 = vim.windows[2].options |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1024 py wopts2 = vim.windows[0].options |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1025 py wopts3 = vim.windows[1].options |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1026 py bopts1 = vim.buffers[vim.bindeval("g:bufs")[2]].options |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1027 py bopts2 = vim.buffers[vim.bindeval("g:bufs")[1]].options |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1028 py bopts3 = vim.buffers[vim.bindeval("g:bufs")[0]].options |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1029 call add(g:res, 'wopts iters equal: ' .. |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1030 \ pyeval('list(wopts1) == list(wopts2)')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1031 call add(g:res, 'bopts iters equal: ' .. |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1032 \ pyeval('list(bopts1) == list(bopts2)')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1033 py gset = set(iter(gopts1)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1034 py wset = set(iter(wopts1)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1035 py bset = set(iter(bopts1)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1036 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1037 set path=.,..,, |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1038 let lst = [] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1039 let lst += [['paste', 1, 0, 1, 2, 1, 1, 0]] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1040 let lst += [['previewheight', 5, 1, 6, 'a', 0, 1, 0]] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1041 let lst += [['operatorfunc', 'A', 'B', 'C', 2, 0, 1, 0]] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1042 let lst += [['number', 0, 1, 1, 0, 1, 0, 1]] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1043 let lst += [['numberwidth', 2, 3, 5, -100, 0, 0, 1]] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1044 let lst += [['colorcolumn', '+1', '+2', '+3', 'abc4', 0, 0, 1]] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1045 let lst += [['statusline', '1', '2', '4', 0, 0, 1, 1]] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1046 let lst += [['autoindent', 0, 1, 1, 2, 1, 0, 2]] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1047 let lst += [['shiftwidth', 0, 2, 1, 3, 0, 0, 2]] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1048 let lst += [['omnifunc', 'A', 'B', 'C', 1, 0, 0, 2]] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1049 let lst += [['preserveindent', 0, 1, 1, 2, 1, 1, 2]] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1050 let lst += [['path', '.,,', ',,', '.', 0, 0, 1, 2]] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1051 for [oname, oval1, oval2, oval3, invval, bool, global, local] in lst |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1052 py oname = vim.eval('oname') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1053 py oval1 = vim.bindeval('oval1') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1054 py oval2 = vim.bindeval('oval2') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1055 py oval3 = vim.bindeval('oval3') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1056 if invval is 0 || invval is 1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1057 py invval = bool(vim.bindeval('invval')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1058 else |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1059 py invval = vim.bindeval('invval') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1060 endif |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1061 if bool |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1062 py oval1 = bool(oval1) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1063 py oval2 = bool(oval2) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1064 py oval3 = bool(oval3) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1065 endif |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1066 call add(g:res, '>>> ' .. oname) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1067 call add(g:res, ' g/w/b:' .. pyeval('oname in gset') .. '/' .. |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1068 \ pyeval('oname in wset') .. '/' .. pyeval('oname in bset')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1069 call add(g:res, ' g/w/b (in):' .. pyeval('oname in gopts1') .. '/' .. |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1070 \ pyeval('oname in wopts1') .. '/' .. pyeval('oname in bopts1')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1071 for v in ['gopts1', 'wopts1', 'bopts1'] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1072 try |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1073 call add(g:res, ' p/' .. v .. ': ' .. Ev('repr(' .. v .. '[''' .. oname .. '''])')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1074 catch |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1075 call add(g:res, ' p/' .. v .. '! ' .. v:exception) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1076 endtry |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1077 let r = E(v .. '[''' .. oname .. ''']=invval') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1078 if r isnot 0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1079 call add(g:res, ' inv: ' .. string(invval) .. '! ' .. r) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1080 endif |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1081 for vv in (v is# 'gopts1' ? [v] : [v, v[:-2] .. '2', v[:-2] .. '3']) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1082 let val = substitute(vv, '^.opts', 'oval', '') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1083 let r = E(vv .. '[''' .. oname .. ''']=' .. val) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1084 if r isnot 0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1085 call add(g:res, ' ' .. vv .. '! ' .. r) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1086 endif |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1087 endfor |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1088 endfor |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1089 call RecVars(oname) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1090 for v in ['wopts3', 'bopts3'] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1091 let r = E('del ' .. v .. '["' .. oname .. '"]') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1092 if r isnot 0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1093 call add(g:res, ' del ' .. v .. '! ' .. r) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1094 endif |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1095 endfor |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1096 call RecVars(oname) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1097 endfor |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1098 delfunction RecVars |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1099 delfunction E |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1100 delfunction Ev |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1101 py del ev |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1102 py del e |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1103 only |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1104 for buf in g:bufs[1:] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1105 execute 'bwipeout!' buf |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1106 endfor |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1107 py del gopts1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1108 py del wopts1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1109 py del wopts2 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1110 py del wopts3 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1111 py del bopts1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1112 py del bopts2 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1113 py del bopts3 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1114 py del oval1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1115 py del oval2 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1116 py del oval3 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1117 py del oname |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1118 py del invval |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1119 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1120 let expected =<< trim END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1121 wopts iters equal: 1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1122 bopts iters equal: 1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1123 >>> paste |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1124 g/w/b:1/0/0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1125 g/w/b (in):1/0/0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1126 p/gopts1: False |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1127 p/wopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1128 inv: 2! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1129 wopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1130 wopts2! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1131 wopts3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1132 p/bopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1133 inv: 2! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1134 bopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1135 bopts2! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1136 bopts3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1137 G: 1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1138 W: 1:1 2:1 3:1 4:1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1139 B: 1:1 2:1 3:1 4:1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1140 del wopts3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1141 del bopts3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1142 G: 1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1143 W: 1:1 2:1 3:1 4:1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1144 B: 1:1 2:1 3:1 4:1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1145 >>> previewheight |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1146 g/w/b:1/0/0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1147 g/w/b (in):1/0/0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1148 p/gopts1: 12 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1149 inv: 'a'! TypeError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1150 p/wopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1151 inv: 'a'! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1152 wopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1153 wopts2! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1154 wopts3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1155 p/bopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1156 inv: 'a'! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1157 bopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1158 bopts2! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1159 bopts3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1160 G: 5 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1161 W: 1:5 2:5 3:5 4:5 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1162 B: 1:5 2:5 3:5 4:5 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1163 del wopts3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1164 del bopts3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1165 G: 5 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1166 W: 1:5 2:5 3:5 4:5 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1167 B: 1:5 2:5 3:5 4:5 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1168 >>> operatorfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1169 g/w/b:1/0/0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1170 g/w/b (in):1/0/0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1171 p/gopts1: '' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1172 inv: 2! TypeError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1173 p/wopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1174 inv: 2! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1175 wopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1176 wopts2! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1177 wopts3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1178 p/bopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1179 inv: 2! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1180 bopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1181 bopts2! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1182 bopts3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1183 G: 'A' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1184 W: 1:'A' 2:'A' 3:'A' 4:'A' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1185 B: 1:'A' 2:'A' 3:'A' 4:'A' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1186 del wopts3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1187 del bopts3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1188 G: 'A' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1189 W: 1:'A' 2:'A' 3:'A' 4:'A' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1190 B: 1:'A' 2:'A' 3:'A' 4:'A' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1191 >>> number |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1192 g/w/b:0/1/0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1193 g/w/b (in):0/1/0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1194 p/gopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1195 inv: 0! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1196 gopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1197 p/wopts1: False |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1198 p/bopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1199 inv: 0! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1200 bopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1201 bopts2! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1202 bopts3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1203 G: 0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1204 W: 1:1 2:1 3:0 4:0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1205 B: 1:1 2:1 3:0 4:0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1206 del wopts3! ValueError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1207 del bopts3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1208 G: 0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1209 W: 1:1 2:1 3:0 4:0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1210 B: 1:1 2:1 3:0 4:0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1211 >>> numberwidth |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1212 g/w/b:0/1/0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1213 g/w/b (in):0/1/0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1214 p/gopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1215 inv: -100! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1216 gopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1217 p/wopts1: 4 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1218 inv: -100! error |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1219 p/bopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1220 inv: -100! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1221 bopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1222 bopts2! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1223 bopts3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1224 G: 4 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1225 W: 1:3 2:5 3:2 4:4 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1226 B: 1:3 2:5 3:2 4:4 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1227 del wopts3! ValueError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1228 del bopts3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1229 G: 4 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1230 W: 1:3 2:5 3:2 4:4 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1231 B: 1:3 2:5 3:2 4:4 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1232 >>> colorcolumn |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1233 g/w/b:0/1/0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1234 g/w/b (in):0/1/0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1235 p/gopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1236 inv: 'abc4'! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1237 gopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1238 p/wopts1: '' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1239 inv: 'abc4'! error |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1240 p/bopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1241 inv: 'abc4'! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1242 bopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1243 bopts2! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1244 bopts3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1245 G: '' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1246 W: 1:'+2' 2:'+3' 3:'+1' 4:'' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1247 B: 1:'+2' 2:'+3' 3:'+1' 4:'' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1248 del wopts3! ValueError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1249 del bopts3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1250 G: '' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1251 W: 1:'+2' 2:'+3' 3:'+1' 4:'' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1252 B: 1:'+2' 2:'+3' 3:'+1' 4:'' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1253 >>> statusline |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1254 g/w/b:1/1/0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1255 g/w/b (in):1/1/0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1256 p/gopts1: '' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1257 inv: 0! TypeError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1258 p/wopts1: None |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1259 inv: 0! TypeError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1260 p/bopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1261 inv: 0! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1262 bopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1263 bopts2! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1264 bopts3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1265 G: '1' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1266 W: 1:'2' 2:'4' 3:'1' 4:'1' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1267 B: 1:'2' 2:'4' 3:'1' 4:'1' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1268 del bopts3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1269 G: '1' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1270 W: 1:'2' 2:'1' 3:'1' 4:'1' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1271 B: 1:'2' 2:'1' 3:'1' 4:'1' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1272 >>> autoindent |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1273 g/w/b:0/0/1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1274 g/w/b (in):0/0/1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1275 p/gopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1276 inv: 2! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1277 gopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1278 p/wopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1279 inv: 2! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1280 wopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1281 wopts2! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1282 wopts3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1283 p/bopts1: False |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1284 G: 0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1285 W: 1:0 2:1 3:0 4:1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1286 B: 1:0 2:1 3:0 4:1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1287 del wopts3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1288 del bopts3! ValueError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1289 G: 0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1290 W: 1:0 2:1 3:0 4:1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1291 B: 1:0 2:1 3:0 4:1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1292 >>> shiftwidth |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1293 g/w/b:0/0/1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1294 g/w/b (in):0/0/1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1295 p/gopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1296 inv: 3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1297 gopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1298 p/wopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1299 inv: 3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1300 wopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1301 wopts2! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1302 wopts3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1303 p/bopts1: 8 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1304 G: 8 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1305 W: 1:0 2:2 3:8 4:1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1306 B: 1:0 2:2 3:8 4:1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1307 del wopts3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1308 del bopts3! ValueError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1309 G: 8 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1310 W: 1:0 2:2 3:8 4:1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1311 B: 1:0 2:2 3:8 4:1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1312 >>> omnifunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1313 g/w/b:0/0/1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1314 g/w/b (in):0/0/1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1315 p/gopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1316 inv: 1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1317 gopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1318 p/wopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1319 inv: 1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1320 wopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1321 wopts2! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1322 wopts3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1323 p/bopts1: '' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1324 inv: 1! TypeError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1325 G: '' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1326 W: 1:'A' 2:'B' 3:'' 4:'C' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1327 B: 1:'A' 2:'B' 3:'' 4:'C' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1328 del wopts3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1329 del bopts3! ValueError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1330 G: '' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1331 W: 1:'A' 2:'B' 3:'' 4:'C' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1332 B: 1:'A' 2:'B' 3:'' 4:'C' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1333 >>> preserveindent |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1334 g/w/b:0/0/1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1335 g/w/b (in):0/0/1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1336 p/gopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1337 inv: 2! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1338 gopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1339 p/wopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1340 inv: 2! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1341 wopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1342 wopts2! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1343 wopts3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1344 p/bopts1: False |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1345 G: 0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1346 W: 1:0 2:1 3:0 4:1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1347 B: 1:0 2:1 3:0 4:1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1348 del wopts3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1349 del bopts3! ValueError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1350 G: 0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1351 W: 1:0 2:1 3:0 4:1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1352 B: 1:0 2:1 3:0 4:1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1353 >>> path |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1354 g/w/b:1/0/1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1355 g/w/b (in):1/0/1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1356 p/gopts1: '.,..,,' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1357 inv: 0! TypeError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1358 p/wopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1359 inv: 0! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1360 wopts1! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1361 wopts2! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1362 wopts3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1363 p/bopts1: None |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1364 inv: 0! TypeError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1365 G: '.,,' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1366 W: 1:'.,,' 2:',,' 3:'.,,' 4:'.' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1367 B: 1:'.,,' 2:',,' 3:'.,,' 4:'.' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1368 del wopts3! KeyError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1369 G: '.,,' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1370 W: 1:'.,,' 2:',,' 3:'.,,' 4:'.,,' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1371 B: 1:'.,,' 2:',,' 3:'.,,' 4:'.,,' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1372 END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1373 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1374 call assert_equal(expected, g:res) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1375 unlet g:res |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1376 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1377 call assert_equal(0, pyeval("'' in vim.options")) |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1378 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1379 " use an empty key to index vim.options |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1380 call AssertException(["let v = pyeval(\"vim.options['']\")"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1381 \ 'Vim(let):ValueError: empty keys are not allowed') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1382 call AssertException(["py vim.current.window.options[''] = 0"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1383 \ 'Vim(python):ValueError: empty keys are not allowed') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1384 call AssertException(["py vim.current.window.options[{}] = 0"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1385 \ 'Vim(python):TypeError: expected str() or unicode() instance, but got dict') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1386 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1387 " set one of the number options to a very large number |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1388 let cmd = ["py vim.options['previewheight'] = 9999999999999999"] |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1389 call AssertException(cmd, 'OverflowError:') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1390 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1391 " unset a global-local string option |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1392 call AssertException(["py del vim.options['errorformat']"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1393 \ 'Vim(python):ValueError: unable to unset global option errorformat') |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1394 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1395 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1396 " Test for vim.buffer object |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1397 func Test_python_buffer() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1398 new |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1399 call setline(1, "Hello\nWorld") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1400 call assert_fails("let x = pyeval('vim.current.buffer[0]')", 'E859:') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1401 %bw! |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1402 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1403 edit Xfile1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1404 let bnr1 = bufnr() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1405 py cb = vim.current.buffer |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1406 vnew Xfile2 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1407 let bnr2 = bufnr() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1408 call setline(1, ['First line', 'Second line', 'Third line']) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1409 py b = vim.current.buffer |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1410 wincmd w |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1411 |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1412 " Test for getting lines from the buffer using a slice |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1413 call assert_equal(['First line'], pyeval('b[-10:1]')) |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1414 call assert_equal(['Third line'], pyeval('b[2:10]')) |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1415 call assert_equal([], pyeval('b[2:0]')) |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1416 call assert_equal([], pyeval('b[10:12]')) |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1417 call assert_equal([], pyeval('b[-10:-8]')) |
21200
37edecbfb834
patch 8.2.1151: insufficient test coverage for Python
Bram Moolenaar <Bram@vim.org>
parents:
21198
diff
changeset
|
1418 call AssertException(["py x = b[0:3:0]"], |
37edecbfb834
patch 8.2.1151: insufficient test coverage for Python
Bram Moolenaar <Bram@vim.org>
parents:
21198
diff
changeset
|
1419 \ "Vim(python):TypeError: sequence index must be integer, not 'slice'") |
37edecbfb834
patch 8.2.1151: insufficient test coverage for Python
Bram Moolenaar <Bram@vim.org>
parents:
21198
diff
changeset
|
1420 call AssertException(["py b[0:3:0] = 'abc'"], |
37edecbfb834
patch 8.2.1151: insufficient test coverage for Python
Bram Moolenaar <Bram@vim.org>
parents:
21198
diff
changeset
|
1421 \ "Vim(python):TypeError: sequence index must be integer, not 'slice'") |
37edecbfb834
patch 8.2.1151: insufficient test coverage for Python
Bram Moolenaar <Bram@vim.org>
parents:
21198
diff
changeset
|
1422 call AssertException(["py x = b[{}]"], |
37edecbfb834
patch 8.2.1151: insufficient test coverage for Python
Bram Moolenaar <Bram@vim.org>
parents:
21198
diff
changeset
|
1423 \ "Vim(python):TypeError: sequence index must be integer, not 'dict'") |
37edecbfb834
patch 8.2.1151: insufficient test coverage for Python
Bram Moolenaar <Bram@vim.org>
parents:
21198
diff
changeset
|
1424 call AssertException(["py b[{}] = 'abc'"], |
37edecbfb834
patch 8.2.1151: insufficient test coverage for Python
Bram Moolenaar <Bram@vim.org>
parents:
21198
diff
changeset
|
1425 \ "Vim(python):TypeError: sequence index must be integer, not 'dict'") |
37edecbfb834
patch 8.2.1151: insufficient test coverage for Python
Bram Moolenaar <Bram@vim.org>
parents:
21198
diff
changeset
|
1426 |
37edecbfb834
patch 8.2.1151: insufficient test coverage for Python
Bram Moolenaar <Bram@vim.org>
parents:
21198
diff
changeset
|
1427 " Test for getting lines using a range |
37edecbfb834
patch 8.2.1151: insufficient test coverage for Python
Bram Moolenaar <Bram@vim.org>
parents:
21198
diff
changeset
|
1428 call AssertException(["py x = b.range(0,3)[0:2:0]"], |
37edecbfb834
patch 8.2.1151: insufficient test coverage for Python
Bram Moolenaar <Bram@vim.org>
parents:
21198
diff
changeset
|
1429 \ "Vim(python):TypeError: sequence index must be integer, not 'slice'") |
37edecbfb834
patch 8.2.1151: insufficient test coverage for Python
Bram Moolenaar <Bram@vim.org>
parents:
21198
diff
changeset
|
1430 call AssertException(["py b.range(0,3)[0:2:0] = 'abc'"], |
37edecbfb834
patch 8.2.1151: insufficient test coverage for Python
Bram Moolenaar <Bram@vim.org>
parents:
21198
diff
changeset
|
1431 \ "Vim(python):TypeError: sequence index must be integer, not 'slice'") |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1432 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1433 " Tests BufferAppend and BufferItem |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1434 py cb.append(b[0]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1435 call assert_equal(['First line'], getbufline(bnr1, 2)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1436 %d |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1437 |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1438 " Try to append using out-of-range line number |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1439 call AssertException(["py b.append('abc', 10)"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1440 \ 'Vim(python):IndexError: line number out of range') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1441 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1442 " Append a non-string item |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1443 call AssertException(["py b.append([22])"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1444 \ 'Vim(python):TypeError: expected str() or unicode() instance, but got int') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1445 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1446 " Tests BufferSlice and BufferAssSlice |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1447 py cb.append('abc5') # Will be overwritten |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1448 py cb[-1:] = b[:-2] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1449 call assert_equal(['First line'], getbufline(bnr1, 2)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1450 %d |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1451 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1452 " Test BufferLength and BufferAssSlice |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1453 py cb.append('def') # Will not be overwritten |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1454 py cb[len(cb):] = b[:] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1455 call assert_equal(['def', 'First line', 'Second line', 'Third line'], |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1456 \ getbufline(bnr1, 2, '$')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1457 %d |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1458 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1459 " Test BufferAssItem and BufferMark |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1460 call setbufline(bnr1, 1, ['one', 'two', 'three']) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1461 call cursor(1, 3) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1462 normal ma |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1463 py cb.append('ghi') # Will be overwritten |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1464 py cb[-1] = repr((len(cb) - cb.mark('a')[0], cb.mark('a')[1])) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1465 call assert_equal(['(3, 2)'], getbufline(bnr1, 4)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1466 %d |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1467 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1468 " Test BufferRepr |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1469 py cb.append(repr(cb) + repr(b)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1470 call assert_equal(['<buffer Xfile1><buffer Xfile2>'], getbufline(bnr1, 2)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1471 %d |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1472 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1473 " Modify foreign buffer |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1474 py << trim EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1475 b.append('foo') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1476 b[0]='bar' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1477 b[0:0]=['baz'] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1478 vim.command('call append("$", getbufline(%i, 1, "$"))' % b.number) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1479 EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1480 call assert_equal(['baz', 'bar', 'Second line', 'Third line', 'foo'], |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1481 \ getbufline(bnr2, 1, '$')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1482 %d |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1483 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1484 " Test assigning to name property |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1485 augroup BUFS |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
1486 autocmd BufFilePost * python cb.append(vim.eval('expand("<abuf>")') + ':BufFilePost:' + vim.eval('bufnr("%")')) |
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
1487 autocmd BufFilePre * python cb.append(vim.eval('expand("<abuf>")') + ':BufFilePre:' + vim.eval('bufnr("%")')) |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1488 augroup END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1489 py << trim EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1490 import os |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1491 old_name = cb.name |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1492 cb.name = 'foo' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1493 cb.append(cb.name[-11:].replace(os.path.sep, '/')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1494 b.name = 'bar' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1495 cb.append(b.name[-11:].replace(os.path.sep, '/')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1496 cb.name = old_name |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1497 cb.append(cb.name[-14:].replace(os.path.sep, '/')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1498 del old_name |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1499 EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1500 call assert_equal([bnr1 .. ':BufFilePre:' .. bnr1, |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1501 \ bnr1 .. ':BufFilePost:' .. bnr1, |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1502 \ 'testdir/foo', |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1503 \ bnr2 .. ':BufFilePre:' .. bnr2, |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1504 \ bnr2 .. ':BufFilePost:' .. bnr2, |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1505 \ 'testdir/bar', |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1506 \ bnr1 .. ':BufFilePre:' .. bnr1, |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1507 \ bnr1 .. ':BufFilePost:' .. bnr1, |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1508 \ 'testdir/Xfile1'], getbufline(bnr1, 2, '$')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1509 %d |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1510 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1511 " Test CheckBuffer |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1512 py << trim EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1513 for _b in vim.buffers: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1514 if _b is not cb: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1515 vim.command('bwipeout! ' + str(_b.number)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1516 del _b |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1517 cb.append('valid: b:%s, cb:%s' % (repr(b.valid), repr(cb.valid))) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1518 EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1519 call assert_equal('valid: b:False, cb:True', getline(2)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1520 %d |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1521 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1522 py << trim EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1523 for expr in ('b[1]','b[:] = ["A", "B"]','b[:]','b.append("abc6")', 'b.name = "!"'): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1524 try: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1525 exec(expr) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1526 except vim.error: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1527 pass |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1528 else: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1529 # Usually a SEGV here |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1530 # Should not happen in any case |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1531 cb.append('No exception for ' + expr) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1532 vim.command('cd .') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1533 del b |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1534 EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1535 call assert_equal([''], getline(1, '$')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1536 |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1537 " Delete all the lines in a buffer |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1538 call setline(1, ['a', 'b', 'c']) |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1539 py vim.current.buffer[:] = [] |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1540 call assert_equal([''], getline(1, '$')) |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1541 |
21200
37edecbfb834
patch 8.2.1151: insufficient test coverage for Python
Bram Moolenaar <Bram@vim.org>
parents:
21198
diff
changeset
|
1542 " Test for buffer marks |
37edecbfb834
patch 8.2.1151: insufficient test coverage for Python
Bram Moolenaar <Bram@vim.org>
parents:
21198
diff
changeset
|
1543 call assert_equal(v:none, pyeval("vim.current.buffer.mark('r')")) |
37edecbfb834
patch 8.2.1151: insufficient test coverage for Python
Bram Moolenaar <Bram@vim.org>
parents:
21198
diff
changeset
|
1544 |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1545 " Test for modifying a 'nomodifiable' buffer |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1546 setlocal nomodifiable |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1547 call AssertException(["py vim.current.buffer[0] = 'abc'"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1548 \ "Vim(python):vim.error: Vim:E21: Cannot make changes, 'modifiable' is off") |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1549 call AssertException(["py vim.current.buffer[0] = None"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1550 \ "Vim(python):vim.error: Vim:E21: Cannot make changes, 'modifiable' is off") |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1551 call AssertException(["py vim.current.buffer[:] = None"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1552 \ "Vim(python):vim.error: Vim:E21: Cannot make changes, 'modifiable' is off") |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1553 call AssertException(["py vim.current.buffer[:] = []"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1554 \ "Vim(python):vim.error: Vim:E21: Cannot make changes, 'modifiable' is off") |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1555 call AssertException(["py vim.current.buffer.append('abc')"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1556 \ "Vim(python):vim.error: Vim:E21: Cannot make changes, 'modifiable' is off") |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1557 call AssertException(["py vim.current.buffer.append([])"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1558 \ "Vim(python):vim.error: Vim:E21: Cannot make changes, 'modifiable' is off") |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1559 setlocal modifiable |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1560 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1561 augroup BUFS |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
1562 autocmd! |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1563 augroup END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1564 augroup! BUFS |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1565 %bw! |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1566 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1567 " Range object for a deleted buffer |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1568 new Xfile |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1569 call setline(1, ['one', 'two', 'three']) |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1570 py b = vim.current.buffer |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1571 py r = vim.current.buffer.range(0, 2) |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1572 call assert_equal('<range Xfile (0:2)>', pyeval('repr(r)')) |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1573 %bw! |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1574 call AssertException(['py r[:] = []'], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1575 \ 'Vim(python):vim.error: attempt to refer to deleted buffer') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1576 call assert_match('<buffer object (deleted)', pyeval('repr(b)')) |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1577 call assert_match('<range object (for deleted buffer)', pyeval('repr(r)')) |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1578 call AssertException(["let n = pyeval('len(r)')"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1579 \ 'Vim(let):vim.error: attempt to refer to deleted buffer') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1580 call AssertException(["py r.append('abc')"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1581 \ 'Vim(python):vim.error: attempt to refer to deleted buffer') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1582 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1583 " object for a deleted buffer |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1584 call AssertException(["py b[0] = 'one'"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1585 \ 'Vim(python):vim.error: attempt to refer to deleted buffer') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1586 call AssertException(["py b.append('one')"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1587 \ 'Vim(python):vim.error: attempt to refer to deleted buffer') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1588 call AssertException(["let n = pyeval('len(b)')"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1589 \ 'Vim(let):vim.error: attempt to refer to deleted buffer') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1590 call AssertException(["py pos = b.mark('a')"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1591 \ 'Vim(python):vim.error: attempt to refer to deleted buffer') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1592 call AssertException(["py vim.current.buffer = b"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1593 \ 'Vim(python):vim.error: attempt to refer to deleted buffer') |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1594 call AssertException(["py rn = b.range(0, 2)"], |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1595 \ 'Vim(python):vim.error: attempt to refer to deleted buffer') |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1596 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1597 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1598 " Test vim.buffers object |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1599 func Test_python_buffers() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1600 %bw! |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1601 edit Xfile |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1602 py cb = vim.current.buffer |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1603 set hidden |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1604 edit a |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1605 buffer # |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1606 edit b |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1607 buffer # |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1608 edit c |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1609 buffer # |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1610 py << trim EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1611 try: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1612 from __builtin__ import next |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1613 except ImportError: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1614 next = lambda o: o.next() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1615 # Check GCing iterator that was not fully exhausted |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1616 i = iter(vim.buffers) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1617 cb.append('i:' + str(next(i))) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1618 # and also check creating more than one iterator at a time |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1619 i2 = iter(vim.buffers) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1620 cb.append('i2:' + str(next(i2))) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1621 cb.append('i:' + str(next(i))) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1622 # The following should trigger GC and not cause any problems |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1623 del i |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1624 del i2 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1625 i3 = iter(vim.buffers) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1626 cb.append('i3:' + str(next(i3))) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1627 del i3 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1628 EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1629 call assert_equal(['i:<buffer Xfile>', |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1630 \ 'i2:<buffer Xfile>', 'i:<buffer a>', 'i3:<buffer Xfile>'], |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1631 \ getline(2, '$')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1632 %d |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1633 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1634 py << trim EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1635 prevnum = 0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1636 for b in vim.buffers: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1637 # Check buffer order |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1638 if prevnum >= b.number: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1639 cb.append('!!! Buffer numbers not in strictly ascending order') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1640 # Check indexing: vim.buffers[number].number == number |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1641 cb.append(str(b.number) + ':' + repr(vim.buffers[b.number]) + \ |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1642 '=' + repr(b)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1643 prevnum = b.number |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1644 del prevnum |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1645 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1646 cb.append(str(len(vim.buffers))) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1647 EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1648 call assert_equal([bufnr('Xfile') .. ':<buffer Xfile>=<buffer Xfile>', |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1649 \ bufnr('a') .. ':<buffer a>=<buffer a>', |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1650 \ bufnr('b') .. ':<buffer b>=<buffer b>', |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1651 \ bufnr('c') .. ':<buffer c>=<buffer c>', '4'], getline(2, '$')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1652 %d |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1653 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1654 py << trim EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1655 bnums = list(map(lambda b: b.number, vim.buffers))[1:] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1656 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1657 # Test wiping out buffer with existing iterator |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1658 i4 = iter(vim.buffers) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1659 cb.append('i4:' + str(next(i4))) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1660 vim.command('bwipeout! ' + str(bnums.pop(0))) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1661 try: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1662 next(i4) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1663 except vim.error: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1664 pass |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1665 else: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1666 cb.append('!!!! No vim.error') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1667 i4 = iter(vim.buffers) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1668 vim.command('bwipeout! ' + str(bnums.pop(-1))) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1669 vim.command('bwipeout! ' + str(bnums.pop(-1))) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1670 cb.append('i4:' + str(next(i4))) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1671 try: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1672 next(i4) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1673 except StopIteration: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1674 cb.append('StopIteration') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1675 del i4 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1676 del bnums |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1677 EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1678 call assert_equal(['i4:<buffer Xfile>', |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1679 \ 'i4:<buffer Xfile>', 'StopIteration'], getline(2, '$')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1680 %bw! |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1681 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1682 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1683 " Test vim.{tabpage,window}list and vim.{tabpage,window} objects |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1684 func Test_python_tabpage_window() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1685 %bw |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1686 edit Xfile |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1687 py cb = vim.current.buffer |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1688 tabnew 0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1689 tabnew 1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1690 vnew a.1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1691 tabnew 2 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1692 vnew a.2 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1693 vnew b.2 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1694 vnew c.2 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1695 |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1696 call assert_equal(4, pyeval('vim.current.window.tabpage.number')) |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1697 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1698 py << trim EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1699 cb.append('Number of tabs: ' + str(len(vim.tabpages))) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1700 cb.append('Current tab pages:') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1701 def W(w): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1702 if repr(w).find('(unknown)') != -1: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1703 return '<window object (unknown)>' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1704 else: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1705 return repr(w) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1706 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1707 start = len(cb) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1708 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1709 def Cursor(w): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1710 if w.buffer is cb: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1711 return repr((start - w.cursor[0], w.cursor[1])) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1712 else: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1713 return repr(w.cursor) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1714 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1715 for t in vim.tabpages: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1716 cb.append(' ' + repr(t) + '(' + str(t.number) + ')' + ': ' + \ |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1717 str(len(t.windows)) + ' windows, current is ' + W(t.window)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1718 cb.append(' Windows:') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1719 for w in t.windows: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1720 cb.append(' ' + W(w) + '(' + str(w.number) + ')' + \ |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1721 ': displays buffer ' + repr(w.buffer) + \ |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1722 '; cursor is at ' + Cursor(w)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1723 # Other values depend on the size of the terminal, so they are checked |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1724 # partly: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1725 for attr in ('height', 'row', 'width', 'col'): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1726 try: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1727 aval = getattr(w, attr) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1728 if type(aval) is not long: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1729 raise TypeError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1730 if aval < 0: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1731 raise ValueError |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1732 except Exception: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1733 cb.append('!!!!!! Error while getting attribute ' + attr + \ |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1734 ': ' + sys.exc_type.__name__) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1735 del aval |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1736 del attr |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1737 w.cursor = (len(w.buffer), 0) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1738 del W |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1739 del Cursor |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1740 cb.append('Number of windows in current tab page: ' + \ |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1741 str(len(vim.windows))) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1742 if list(vim.windows) != list(vim.current.tabpage.windows): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1743 cb.append('!!!!!! Windows differ') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1744 EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1745 |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
1746 let expected =<< trim END |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1747 Number of tabs: 4 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1748 Current tab pages: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1749 <tabpage 0>(1): 1 windows, current is <window object (unknown)> |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1750 Windows: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1751 <window object (unknown)>(1): displays buffer <buffer Xfile>; cursor is at (2, 0) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1752 <tabpage 1>(2): 1 windows, current is <window object (unknown)> |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1753 Windows: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1754 <window object (unknown)>(1): displays buffer <buffer 0>; cursor is at (1, 0) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1755 <tabpage 2>(3): 2 windows, current is <window object (unknown)> |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1756 Windows: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1757 <window object (unknown)>(1): displays buffer <buffer a.1>; cursor is at (1, 0) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1758 <window object (unknown)>(2): displays buffer <buffer 1>; cursor is at (1, 0) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1759 <tabpage 3>(4): 4 windows, current is <window 0> |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1760 Windows: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1761 <window 0>(1): displays buffer <buffer c.2>; cursor is at (1, 0) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1762 <window 1>(2): displays buffer <buffer b.2>; cursor is at (1, 0) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1763 <window 2>(3): displays buffer <buffer a.2>; cursor is at (1, 0) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1764 <window 3>(4): displays buffer <buffer 2>; cursor is at (1, 0) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1765 Number of windows in current tab page: 4 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1766 END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1767 call assert_equal(expected, getbufline(bufnr('Xfile'), 2, '$')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1768 %bw! |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1769 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1770 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1771 " Test vim.current |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1772 func Test_python_vim_current() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1773 %bw |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1774 edit Xfile |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1775 py cb = vim.current.buffer |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1776 tabnew 0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1777 tabnew 1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1778 vnew a.1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1779 tabnew 2 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1780 vnew a.2 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1781 vnew b.2 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1782 vnew c.2 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1783 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1784 py << trim EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1785 def H(o): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1786 return repr(o) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1787 cb.append('Current tab page: ' + repr(vim.current.tabpage)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1788 cb.append('Current window: ' + repr(vim.current.window) + ': ' + \ |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1789 H(vim.current.window) + ' is ' + H(vim.current.tabpage.window)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1790 cb.append('Current buffer: ' + repr(vim.current.buffer) + ': ' + \ |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1791 H(vim.current.buffer) + ' is ' + H(vim.current.window.buffer)+ \ |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1792 ' is ' + H(vim.current.tabpage.window.buffer)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1793 del H |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1794 EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1795 let expected =<< trim END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1796 Current tab page: <tabpage 3> |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1797 Current window: <window 0>: <window 0> is <window 0> |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1798 Current buffer: <buffer c.2>: <buffer c.2> is <buffer c.2> is <buffer c.2> |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1799 END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1800 call assert_equal(expected, getbufline(bufnr('Xfile'), 2, '$')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1801 call deletebufline(bufnr('Xfile'), 1, '$') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1802 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1803 " Assigning: fails |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1804 py << trim EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1805 try: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1806 vim.current.window = vim.tabpages[0].window |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1807 except ValueError: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1808 cb.append('ValueError at assigning foreign tab window') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1809 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1810 for attr in ('window', 'tabpage', 'buffer'): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1811 try: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1812 setattr(vim.current, attr, None) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1813 except TypeError: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1814 cb.append('Type error at assigning None to vim.current.' + attr) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1815 del attr |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1816 EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1817 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1818 let expected =<< trim END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1819 ValueError at assigning foreign tab window |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1820 Type error at assigning None to vim.current.window |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1821 Type error at assigning None to vim.current.tabpage |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1822 Type error at assigning None to vim.current.buffer |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1823 END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1824 call assert_equal(expected, getbufline(bufnr('Xfile'), 2, '$')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1825 call deletebufline(bufnr('Xfile'), 1, '$') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1826 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1827 call setbufline(bufnr('Xfile'), 1, 'python interface') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1828 py << trim EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1829 # Assigning: success |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1830 vim.current.tabpage = vim.tabpages[-2] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1831 vim.current.buffer = cb |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1832 vim.current.window = vim.windows[0] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1833 vim.current.window.cursor = (len(vim.current.buffer), 0) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1834 cb.append('Current tab page: ' + repr(vim.current.tabpage)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1835 cb.append('Current window: ' + repr(vim.current.window)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1836 cb.append('Current buffer: ' + repr(vim.current.buffer)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1837 cb.append('Current line: ' + repr(vim.current.line)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1838 EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1839 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1840 let expected =<< trim END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1841 Current tab page: <tabpage 2> |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1842 Current window: <window 0> |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1843 Current buffer: <buffer Xfile> |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1844 Current line: 'python interface' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1845 END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1846 call assert_equal(expected, getbufline(bufnr('Xfile'), 2, '$')) |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1847 py vim.current.line = 'one line' |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1848 call assert_equal('one line', getline('.')) |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1849 call deletebufline(bufnr('Xfile'), 1, '$') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1850 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1851 py << trim EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1852 ws = list(vim.windows) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1853 ts = list(vim.tabpages) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1854 for b in vim.buffers: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1855 if b is not cb: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1856 vim.command('bwipeout! ' + str(b.number)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1857 del b |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1858 cb.append('w.valid: ' + repr([w.valid for w in ws])) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1859 cb.append('t.valid: ' + repr([t.valid for t in ts])) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1860 del w |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1861 del t |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1862 del ts |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1863 del ws |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1864 EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1865 let expected =<< trim END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1866 w.valid: [True, False] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1867 t.valid: [True, False, True, False] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1868 END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1869 call assert_equal(expected, getbufline(bufnr('Xfile'), 2, '$')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1870 %bw! |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1871 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1872 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1873 " Test types |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1874 func Test_python_types() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1875 %d |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1876 py cb = vim.current.buffer |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1877 py << trim EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1878 for expr, attr in ( |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1879 ('vim.vars', 'Dictionary'), |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1880 ('vim.options', 'Options'), |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1881 ('vim.bindeval("{}")', 'Dictionary'), |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1882 ('vim.bindeval("[]")', 'List'), |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1883 ('vim.bindeval("function(\'tr\')")', 'Function'), |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1884 ('vim.current.buffer', 'Buffer'), |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1885 ('vim.current.range', 'Range'), |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1886 ('vim.current.window', 'Window'), |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1887 ('vim.current.tabpage', 'TabPage'), |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1888 ): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1889 cb.append(expr + ':' + attr + ':' + \ |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1890 repr(type(eval(expr)) is getattr(vim, attr))) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1891 del expr |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1892 del attr |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1893 EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1894 let expected =<< trim END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1895 vim.vars:Dictionary:True |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1896 vim.options:Options:True |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1897 vim.bindeval("{}"):Dictionary:True |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1898 vim.bindeval("[]"):List:True |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1899 vim.bindeval("function('tr')"):Function:True |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1900 vim.current.buffer:Buffer:True |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1901 vim.current.range:Range:True |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1902 vim.current.window:Window:True |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1903 vim.current.tabpage:TabPage:True |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1904 END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1905 call assert_equal(expected, getline(2, '$')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1906 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1907 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1908 " Test __dir__() method |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1909 func Test_python_dir_method() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1910 %d |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1911 py cb = vim.current.buffer |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1912 py << trim EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1913 for name, o in ( |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1914 ('current', vim.current), |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1915 ('buffer', vim.current.buffer), |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1916 ('window', vim.current.window), |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1917 ('tabpage', vim.current.tabpage), |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1918 ('range', vim.current.range), |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1919 ('dictionary', vim.bindeval('{}')), |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1920 ('list', vim.bindeval('[]')), |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1921 ('function', vim.bindeval('function("tr")')), |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1922 ('output', sys.stdout), |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1923 ): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1924 cb.append(name + ':' + ','.join(dir(o))) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1925 del name |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1926 del o |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1927 EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1928 let expected =<< trim END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1929 current:__dir__,__members__,buffer,line,range,tabpage,window |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1930 buffer:__dir__,__members__,append,mark,name,number,options,range,valid,vars |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1931 window:__dir__,__members__,buffer,col,cursor,height,number,options,row,tabpage,valid,vars,width |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1932 tabpage:__dir__,__members__,number,valid,vars,window,windows |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1933 range:__dir__,__members__,append,end,start |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1934 dictionary:__dir__,__members__,get,has_key,items,keys,locked,pop,popitem,scope,update,values |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1935 list:__dir__,__members__,extend,locked |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1936 function:__dir__,__members__,args,auto_rebind,self,softspace |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1937 output:__dir__,__members__,close,closed,flush,isatty,readable,seekable,softspace,writable,write,writelines |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1938 END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1939 call assert_equal(expected, getline(2, '$')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1940 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1941 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1942 " Test vim.*.__new__ |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1943 func Test_python_new() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1944 call assert_equal({}, pyeval('vim.Dictionary({})')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1945 call assert_equal({'a': 1}, pyeval('vim.Dictionary(a=1)')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1946 call assert_equal({'a': 1}, pyeval('vim.Dictionary(((''a'', 1),))')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1947 call assert_equal([], pyeval('vim.List()')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1948 call assert_equal(['a', 'b', 'c', '7'], pyeval('vim.List(iter(''abc7''))')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1949 call assert_equal(function('tr'), pyeval('vim.Function(''tr'')')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1950 call assert_equal(function('tr', [123, 3, 4]), |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1951 \ pyeval('vim.Function(''tr'', args=[123, 3, 4])')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1952 call assert_equal(function('tr'), pyeval('vim.Function(''tr'', args=[])')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1953 call assert_equal(function('tr', {}), |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1954 \ pyeval('vim.Function(''tr'', self={})')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1955 call assert_equal(function('tr', [123, 3, 4], {}), |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1956 \ pyeval('vim.Function(''tr'', args=[123, 3, 4], self={})')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1957 call assert_equal(function('tr'), |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1958 \ pyeval('vim.Function(''tr'', auto_rebind=False)')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1959 call assert_equal(function('tr', [123, 3, 4]), |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1960 \ pyeval('vim.Function(''tr'', args=[123, 3, 4], auto_rebind=False)')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1961 call assert_equal(function('tr'), |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1962 \ pyeval('vim.Function(''tr'', args=[], auto_rebind=False)')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1963 call assert_equal(function('tr', {}), |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1964 \ pyeval('vim.Function(''tr'', self={}, auto_rebind=False)')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1965 call assert_equal(function('tr', [123, 3, 4], {}), |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1966 \ pyeval('vim.Function(''tr'', args=[123, 3, 4], self={}, auto_rebind=False)')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1967 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1968 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1969 " Test vim.Function |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1970 func Test_python_vim_func() |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1971 func Args(...) |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1972 return a:000 |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1973 endfunc |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1974 |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1975 func SelfArgs(...) dict |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1976 return [a:000, self] |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1977 endfunc |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1978 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1979 " The following four lines should not crash |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1980 let Pt = function('tr', [[]], {'l': []}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1981 py Pt = vim.bindeval('Pt') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1982 unlet Pt |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1983 py del Pt |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1984 |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1985 call assert_equal(3, pyeval('vim.strwidth("a\tb")')) |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
1986 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1987 %bw! |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1988 py cb = vim.current.buffer |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1989 py << trim EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1990 def ecall(out_prefix, func, *args, **kwargs): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1991 line = out_prefix + ': ' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1992 try: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1993 ret = func(*args, **kwargs) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1994 except Exception: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1995 line += '!exception: ' + emsg(sys.exc_info()) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1996 else: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1997 line += '!result: ' + vim.Function('string')(ret) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1998 cb.append(line) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
1999 a = vim.Function('Args') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2000 pa1 = vim.Function('Args', args=['abcArgsPA1']) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2001 pa2 = vim.Function('Args', args=[]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2002 pa3 = vim.Function('Args', args=['abcArgsPA3'], self={'abcSelfPA3': 'abcSelfPA3Val'}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2003 pa4 = vim.Function('Args', self={'abcSelfPA4': 'abcSelfPA4Val'}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2004 cb.append('a: ' + repr(a)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2005 cb.append('pa1: ' + repr(pa1)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2006 cb.append('pa2: ' + repr(pa2)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2007 cb.append('pa3: ' + repr(pa3)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2008 cb.append('pa4: ' + repr(pa4)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2009 sa = vim.Function('SelfArgs') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2010 psa1 = vim.Function('SelfArgs', args=['abcArgsPSA1']) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2011 psa2 = vim.Function('SelfArgs', args=[]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2012 psa3 = vim.Function('SelfArgs', args=['abcArgsPSA3'], self={'abcSelfPSA3': 'abcSelfPSA3Val'}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2013 psa4 = vim.Function('SelfArgs', self={'abcSelfPSA4': 'abcSelfPSA4Val'}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2014 psa5 = vim.Function('SelfArgs', self={'abcSelfPSA5': 'abcSelfPSA5Val'}, auto_rebind=0) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2015 psa6 = vim.Function('SelfArgs', args=['abcArgsPSA6'], self={'abcSelfPSA6': 'abcSelfPSA6Val'}, auto_rebind=()) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2016 psa7 = vim.Function('SelfArgs', args=['abcArgsPSA7'], auto_rebind=[]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2017 psa8 = vim.Function('SelfArgs', auto_rebind=False) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2018 psa9 = vim.Function('SelfArgs', self={'abcSelfPSA9': 'abcSelfPSA9Val'}, auto_rebind=True) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2019 psaA = vim.Function('SelfArgs', args=['abcArgsPSAA'], self={'abcSelfPSAA': 'abcSelfPSAAVal'}, auto_rebind=1) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2020 psaB = vim.Function('SelfArgs', args=['abcArgsPSAB'], auto_rebind={'abcARPSAB': 'abcARPSABVal'}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2021 psaC = vim.Function('SelfArgs', auto_rebind=['abcARPSAC']) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2022 cb.append('sa: ' + repr(sa)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2023 cb.append('psa1: ' + repr(psa1)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2024 cb.append('psa2: ' + repr(psa2)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2025 cb.append('psa3: ' + repr(psa3)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2026 cb.append('psa4: ' + repr(psa4)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2027 cb.append('psa5: ' + repr(psa5)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2028 cb.append('psa6: ' + repr(psa6)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2029 cb.append('psa7: ' + repr(psa7)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2030 cb.append('psa8: ' + repr(psa8)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2031 cb.append('psa9: ' + repr(psa9)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2032 cb.append('psaA: ' + repr(psaA)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2033 cb.append('psaB: ' + repr(psaB)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2034 cb.append('psaC: ' + repr(psaC)) |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2035 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2036 psar = vim.Function('SelfArgs', args=[{'abcArgsPSAr': 'abcArgsPSArVal'}], self={'abcSelfPSAr': 'abcSelfPSArVal'}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2037 psar.args[0]['abcArgsPSAr2'] = [psar.self, psar.args[0]] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2038 psar.self['rec'] = psar |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2039 psar.self['self'] = psar.self |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2040 psar.self['args'] = psar.args |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2041 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2042 try: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2043 cb.append('psar: ' + repr(psar)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2044 except Exception: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2045 cb.append('!!!!!!!! Caught exception: ' + emsg(sys.exc_info())) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2046 EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2047 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2048 let expected =<< trim END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2049 a: <vim.Function 'Args'> |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2050 pa1: <vim.Function 'Args', args=['abcArgsPA1']> |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2051 pa2: <vim.Function 'Args'> |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2052 pa3: <vim.Function 'Args', args=['abcArgsPA3'], self={'abcSelfPA3': 'abcSelfPA3Val'}> |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2053 pa4: <vim.Function 'Args', self={'abcSelfPA4': 'abcSelfPA4Val'}> |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2054 sa: <vim.Function 'SelfArgs'> |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2055 psa1: <vim.Function 'SelfArgs', args=['abcArgsPSA1']> |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2056 psa2: <vim.Function 'SelfArgs'> |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2057 psa3: <vim.Function 'SelfArgs', args=['abcArgsPSA3'], self={'abcSelfPSA3': 'abcSelfPSA3Val'}> |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2058 psa4: <vim.Function 'SelfArgs', self={'abcSelfPSA4': 'abcSelfPSA4Val'}> |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2059 psa5: <vim.Function 'SelfArgs', self={'abcSelfPSA5': 'abcSelfPSA5Val'}> |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2060 psa6: <vim.Function 'SelfArgs', args=['abcArgsPSA6'], self={'abcSelfPSA6': 'abcSelfPSA6Val'}> |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2061 psa7: <vim.Function 'SelfArgs', args=['abcArgsPSA7']> |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2062 psa8: <vim.Function 'SelfArgs'> |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2063 psa9: <vim.Function 'SelfArgs', self={'abcSelfPSA9': 'abcSelfPSA9Val'}, auto_rebind=True> |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2064 psaA: <vim.Function 'SelfArgs', args=['abcArgsPSAA'], self={'abcSelfPSAA': 'abcSelfPSAAVal'}, auto_rebind=True> |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2065 psaB: <vim.Function 'SelfArgs', args=['abcArgsPSAB']> |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2066 psaC: <vim.Function 'SelfArgs'> |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2067 psar: <vim.Function 'SelfArgs', args=[{'abcArgsPSAr2': [{'rec': function('SelfArgs', [{...}], {...}), 'self': {...}, 'abcSelfPSAr': 'abcSelfPSArVal', 'args': [{...}]}, {...}], 'abcArgsPSAr': 'abcArgsPSArVal'}], self={'rec': function('SelfArgs', [{'abcArgsPSAr2': [{...}, {...}], 'abcArgsPSAr': 'abcArgsPSArVal'}], {...}), 'self': {...}, 'abcSelfPSAr': 'abcSelfPSArVal', 'args': [{'abcArgsPSAr2': [{...}, {...}], 'abcArgsPSAr': 'abcArgsPSArVal'}]}> |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2068 END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2069 call assert_equal(expected, getline(2, '$')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2070 %d |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2071 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2072 call assert_equal(function('Args'), pyeval('a')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2073 call assert_equal(function('Args', ['abcArgsPA1']), pyeval('pa1')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2074 call assert_equal(function('Args'), pyeval('pa2')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2075 call assert_equal(function('Args', ['abcArgsPA3'], {'abcSelfPA3': 'abcSelfPA3Val'}), pyeval('pa3')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2076 call assert_equal(function('Args', {'abcSelfPA4': 'abcSelfPA4Val'}), pyeval('pa4')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2077 call assert_equal(function('SelfArgs'), pyeval('sa')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2078 call assert_equal(function('SelfArgs', ['abcArgsPSA1']), pyeval('psa1')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2079 call assert_equal(function('SelfArgs'), pyeval('psa2')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2080 call assert_equal(function('SelfArgs', ['abcArgsPSA3'], {'abcSelfPSA3': 'abcSelfPSA3Val'}), pyeval('psa3')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2081 call assert_equal(function('SelfArgs', {'abcSelfPSA4': 'abcSelfPSA4Val'}), pyeval('psa4')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2082 call assert_equal(function('SelfArgs', {'abcSelfPSA5': 'abcSelfPSA5Val'}), pyeval('psa5')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2083 call assert_equal(function('SelfArgs', ['abcArgsPSA6'], {'abcSelfPSA6': 'abcSelfPSA6Val'}), pyeval('psa6')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2084 call assert_equal(function('SelfArgs', ['abcArgsPSA7']), pyeval('psa7')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2085 call assert_equal(function('SelfArgs'), pyeval('psa8')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2086 call assert_equal(function('SelfArgs', {'abcSelfPSA9': 'abcSelfPSA9Val'}), pyeval('psa9')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2087 call assert_equal(function('SelfArgs', ['abcArgsPSAA'], {'abcSelfPSAA': 'abcSelfPSAAVal'}), pyeval('psaA')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2088 call assert_equal(function('SelfArgs', ['abcArgsPSAB']), pyeval('psaB')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2089 call assert_equal(function('SelfArgs'), pyeval('psaC')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2090 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2091 let res = [] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2092 for v in ['sa', 'psa1', 'psa2', 'psa3', 'psa4', 'psa5', 'psa6', 'psa7', |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2093 \ 'psa8', 'psa9', 'psaA', 'psaB', 'psaC'] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2094 let d = {'f': pyeval(v)} |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2095 call add(res, 'd.' .. v .. '(): ' .. string(d.f())) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2096 endfor |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2097 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2098 let expected =<< trim END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2099 d.sa(): [[], {'f': function('SelfArgs')}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2100 d.psa1(): [['abcArgsPSA1'], {'f': function('SelfArgs', ['abcArgsPSA1'])}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2101 d.psa2(): [[], {'f': function('SelfArgs')}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2102 d.psa3(): [['abcArgsPSA3'], {'abcSelfPSA3': 'abcSelfPSA3Val'}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2103 d.psa4(): [[], {'abcSelfPSA4': 'abcSelfPSA4Val'}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2104 d.psa5(): [[], {'abcSelfPSA5': 'abcSelfPSA5Val'}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2105 d.psa6(): [['abcArgsPSA6'], {'abcSelfPSA6': 'abcSelfPSA6Val'}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2106 d.psa7(): [['abcArgsPSA7'], {'f': function('SelfArgs', ['abcArgsPSA7'])}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2107 d.psa8(): [[], {'f': function('SelfArgs')}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2108 d.psa9(): [[], {'f': function('SelfArgs', {'abcSelfPSA9': 'abcSelfPSA9Val'})}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2109 d.psaA(): [['abcArgsPSAA'], {'f': function('SelfArgs', ['abcArgsPSAA'], {'abcSelfPSAA': 'abcSelfPSAAVal'})}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2110 d.psaB(): [['abcArgsPSAB'], {'f': function('SelfArgs', ['abcArgsPSAB'])}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2111 d.psaC(): [[], {'f': function('SelfArgs')}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2112 END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2113 call assert_equal(expected, res) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2114 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2115 py ecall('a()', a, ) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2116 py ecall('pa1()', pa1, ) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2117 py ecall('pa2()', pa2, ) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2118 py ecall('pa3()', pa3, ) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2119 py ecall('pa4()', pa4, ) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2120 py ecall('sa()', sa, ) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2121 py ecall('psa1()', psa1, ) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2122 py ecall('psa2()', psa2, ) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2123 py ecall('psa3()', psa3, ) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2124 py ecall('psa4()', psa4, ) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2125 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2126 py ecall('a(42, 43)', a, 42, 43) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2127 py ecall('pa1(42, 43)', pa1, 42, 43) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2128 py ecall('pa2(42, 43)', pa2, 42, 43) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2129 py ecall('pa3(42, 43)', pa3, 42, 43) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2130 py ecall('pa4(42, 43)', pa4, 42, 43) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2131 py ecall('sa(42, 43)', sa, 42, 43) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2132 py ecall('psa1(42, 43)', psa1, 42, 43) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2133 py ecall('psa2(42, 43)', psa2, 42, 43) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2134 py ecall('psa3(42, 43)', psa3, 42, 43) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2135 py ecall('psa4(42, 43)', psa4, 42, 43) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2136 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2137 py ecall('a(42, self={"20": 1})', a, 42, self={'20': 1}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2138 py ecall('pa1(42, self={"20": 1})', pa1, 42, self={'20': 1}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2139 py ecall('pa2(42, self={"20": 1})', pa2, 42, self={'20': 1}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2140 py ecall('pa3(42, self={"20": 1})', pa3, 42, self={'20': 1}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2141 py ecall('pa4(42, self={"20": 1})', pa4, 42, self={'20': 1}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2142 py ecall('sa(42, self={"20": 1})', sa, 42, self={'20': 1}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2143 py ecall('psa1(42, self={"20": 1})', psa1, 42, self={'20': 1}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2144 py ecall('psa2(42, self={"20": 1})', psa2, 42, self={'20': 1}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2145 py ecall('psa3(42, self={"20": 1})', psa3, 42, self={'20': 1}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2146 py ecall('psa4(42, self={"20": 1})', psa4, 42, self={'20': 1}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2147 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2148 py ecall('a(self={"20": 1})', a, self={'20': 1}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2149 py ecall('pa1(self={"20": 1})', pa1, self={'20': 1}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2150 py ecall('pa2(self={"20": 1})', pa2, self={'20': 1}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2151 py ecall('pa3(self={"20": 1})', pa3, self={'20': 1}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2152 py ecall('pa4(self={"20": 1})', pa4, self={'20': 1}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2153 py ecall('sa(self={"20": 1})', sa, self={'20': 1}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2154 py ecall('psa1(self={"20": 1})', psa1, self={'20': 1}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2155 py ecall('psa2(self={"20": 1})', psa2, self={'20': 1}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2156 py ecall('psa3(self={"20": 1})', psa3, self={'20': 1}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2157 py ecall('psa4(self={"20": 1})', psa4, self={'20': 1}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2158 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2159 py << trim EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2160 def s(v): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2161 if v is None: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2162 return repr(v) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2163 else: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2164 return vim.Function('string')(v) |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2165 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2166 cb.append('a.args: ' + s(a.args)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2167 cb.append('pa1.args: ' + s(pa1.args)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2168 cb.append('pa2.args: ' + s(pa2.args)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2169 cb.append('pa3.args: ' + s(pa3.args)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2170 cb.append('pa4.args: ' + s(pa4.args)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2171 cb.append('sa.args: ' + s(sa.args)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2172 cb.append('psa1.args: ' + s(psa1.args)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2173 cb.append('psa2.args: ' + s(psa2.args)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2174 cb.append('psa3.args: ' + s(psa3.args)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2175 cb.append('psa4.args: ' + s(psa4.args)) |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2176 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2177 cb.append('a.self: ' + s(a.self)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2178 cb.append('pa1.self: ' + s(pa1.self)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2179 cb.append('pa2.self: ' + s(pa2.self)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2180 cb.append('pa3.self: ' + s(pa3.self)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2181 cb.append('pa4.self: ' + s(pa4.self)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2182 cb.append('sa.self: ' + s(sa.self)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2183 cb.append('psa1.self: ' + s(psa1.self)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2184 cb.append('psa2.self: ' + s(psa2.self)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2185 cb.append('psa3.self: ' + s(psa3.self)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2186 cb.append('psa4.self: ' + s(psa4.self)) |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2187 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2188 cb.append('a.name: ' + s(a.name)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2189 cb.append('pa1.name: ' + s(pa1.name)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2190 cb.append('pa2.name: ' + s(pa2.name)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2191 cb.append('pa3.name: ' + s(pa3.name)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2192 cb.append('pa4.name: ' + s(pa4.name)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2193 cb.append('sa.name: ' + s(sa.name)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2194 cb.append('psa1.name: ' + s(psa1.name)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2195 cb.append('psa2.name: ' + s(psa2.name)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2196 cb.append('psa3.name: ' + s(psa3.name)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2197 cb.append('psa4.name: ' + s(psa4.name)) |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2198 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2199 cb.append('a.auto_rebind: ' + s(a.auto_rebind)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2200 cb.append('pa1.auto_rebind: ' + s(pa1.auto_rebind)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2201 cb.append('pa2.auto_rebind: ' + s(pa2.auto_rebind)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2202 cb.append('pa3.auto_rebind: ' + s(pa3.auto_rebind)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2203 cb.append('pa4.auto_rebind: ' + s(pa4.auto_rebind)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2204 cb.append('sa.auto_rebind: ' + s(sa.auto_rebind)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2205 cb.append('psa1.auto_rebind: ' + s(psa1.auto_rebind)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2206 cb.append('psa2.auto_rebind: ' + s(psa2.auto_rebind)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2207 cb.append('psa3.auto_rebind: ' + s(psa3.auto_rebind)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2208 cb.append('psa4.auto_rebind: ' + s(psa4.auto_rebind)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2209 cb.append('psa5.auto_rebind: ' + s(psa5.auto_rebind)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2210 cb.append('psa6.auto_rebind: ' + s(psa6.auto_rebind)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2211 cb.append('psa7.auto_rebind: ' + s(psa7.auto_rebind)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2212 cb.append('psa8.auto_rebind: ' + s(psa8.auto_rebind)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2213 cb.append('psa9.auto_rebind: ' + s(psa9.auto_rebind)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2214 cb.append('psaA.auto_rebind: ' + s(psaA.auto_rebind)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2215 cb.append('psaB.auto_rebind: ' + s(psaB.auto_rebind)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2216 cb.append('psaC.auto_rebind: ' + s(psaC.auto_rebind)) |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2217 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2218 del s |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2219 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2220 del a |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2221 del pa1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2222 del pa2 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2223 del pa3 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2224 del pa4 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2225 del sa |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2226 del psa1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2227 del psa2 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2228 del psa3 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2229 del psa4 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2230 del psa5 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2231 del psa6 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2232 del psa7 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2233 del psa8 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2234 del psa9 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2235 del psaA |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2236 del psaB |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2237 del psaC |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2238 del psar |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2239 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2240 del ecall |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2241 EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2242 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2243 let expected =<< trim END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2244 a(): !result: [] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2245 pa1(): !result: ['abcArgsPA1'] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2246 pa2(): !result: [] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2247 pa3(): !result: ['abcArgsPA3'] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2248 pa4(): !result: [] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2249 sa(): !exception: error:('Vim:E725: Calling dict function without Dictionary: SelfArgs',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2250 psa1(): !exception: error:('Vim:E725: Calling dict function without Dictionary: SelfArgs',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2251 psa2(): !exception: error:('Vim:E725: Calling dict function without Dictionary: SelfArgs',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2252 psa3(): !result: [['abcArgsPSA3'], {'abcSelfPSA3': 'abcSelfPSA3Val'}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2253 psa4(): !result: [[], {'abcSelfPSA4': 'abcSelfPSA4Val'}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2254 a(42, 43): !result: [42, 43] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2255 pa1(42, 43): !result: ['abcArgsPA1', 42, 43] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2256 pa2(42, 43): !result: [42, 43] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2257 pa3(42, 43): !result: ['abcArgsPA3', 42, 43] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2258 pa4(42, 43): !result: [42, 43] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2259 sa(42, 43): !exception: error:('Vim:E725: Calling dict function without Dictionary: SelfArgs',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2260 psa1(42, 43): !exception: error:('Vim:E725: Calling dict function without Dictionary: SelfArgs',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2261 psa2(42, 43): !exception: error:('Vim:E725: Calling dict function without Dictionary: SelfArgs',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2262 psa3(42, 43): !result: [['abcArgsPSA3', 42, 43], {'abcSelfPSA3': 'abcSelfPSA3Val'}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2263 psa4(42, 43): !result: [[42, 43], {'abcSelfPSA4': 'abcSelfPSA4Val'}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2264 a(42, self={"20": 1}): !result: [42] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2265 pa1(42, self={"20": 1}): !result: ['abcArgsPA1', 42] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2266 pa2(42, self={"20": 1}): !result: [42] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2267 pa3(42, self={"20": 1}): !result: ['abcArgsPA3', 42] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2268 pa4(42, self={"20": 1}): !result: [42] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2269 sa(42, self={"20": 1}): !result: [[42], {'20': 1}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2270 psa1(42, self={"20": 1}): !result: [['abcArgsPSA1', 42], {'20': 1}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2271 psa2(42, self={"20": 1}): !result: [[42], {'20': 1}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2272 psa3(42, self={"20": 1}): !result: [['abcArgsPSA3', 42], {'20': 1}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2273 psa4(42, self={"20": 1}): !result: [[42], {'20': 1}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2274 a(self={"20": 1}): !result: [] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2275 pa1(self={"20": 1}): !result: ['abcArgsPA1'] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2276 pa2(self={"20": 1}): !result: [] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2277 pa3(self={"20": 1}): !result: ['abcArgsPA3'] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2278 pa4(self={"20": 1}): !result: [] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2279 sa(self={"20": 1}): !result: [[], {'20': 1}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2280 psa1(self={"20": 1}): !result: [['abcArgsPSA1'], {'20': 1}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2281 psa2(self={"20": 1}): !result: [[], {'20': 1}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2282 psa3(self={"20": 1}): !result: [['abcArgsPSA3'], {'20': 1}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2283 psa4(self={"20": 1}): !result: [[], {'20': 1}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2284 a.args: None |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2285 pa1.args: ['abcArgsPA1'] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2286 pa2.args: None |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2287 pa3.args: ['abcArgsPA3'] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2288 pa4.args: None |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2289 sa.args: None |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2290 psa1.args: ['abcArgsPSA1'] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2291 psa2.args: None |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2292 psa3.args: ['abcArgsPSA3'] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2293 psa4.args: None |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2294 a.self: None |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2295 pa1.self: None |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2296 pa2.self: None |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2297 pa3.self: {'abcSelfPA3': 'abcSelfPA3Val'} |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2298 pa4.self: {'abcSelfPA4': 'abcSelfPA4Val'} |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2299 sa.self: None |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2300 psa1.self: None |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2301 psa2.self: None |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2302 psa3.self: {'abcSelfPSA3': 'abcSelfPSA3Val'} |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2303 psa4.self: {'abcSelfPSA4': 'abcSelfPSA4Val'} |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2304 a.name: 'Args' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2305 pa1.name: 'Args' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2306 pa2.name: 'Args' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2307 pa3.name: 'Args' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2308 pa4.name: 'Args' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2309 sa.name: 'SelfArgs' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2310 psa1.name: 'SelfArgs' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2311 psa2.name: 'SelfArgs' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2312 psa3.name: 'SelfArgs' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2313 psa4.name: 'SelfArgs' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2314 a.auto_rebind: 1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2315 pa1.auto_rebind: 1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2316 pa2.auto_rebind: 1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2317 pa3.auto_rebind: 0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2318 pa4.auto_rebind: 0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2319 sa.auto_rebind: 1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2320 psa1.auto_rebind: 1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2321 psa2.auto_rebind: 1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2322 psa3.auto_rebind: 0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2323 psa4.auto_rebind: 0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2324 psa5.auto_rebind: 0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2325 psa6.auto_rebind: 0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2326 psa7.auto_rebind: 1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2327 psa8.auto_rebind: 1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2328 psa9.auto_rebind: 1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2329 psaA.auto_rebind: 1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2330 psaB.auto_rebind: 1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2331 psaC.auto_rebind: 1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2332 END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2333 call assert_equal(expected, getline(2, '$')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2334 %bw! |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2335 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2336 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2337 " Test stdout/stderr |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2338 func Test_python_stdin_stderr() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2339 let caught_writeerr = 0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2340 let caught_writelineerr = 0 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2341 redir => messages |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2342 py sys.stdout.write('abc8') ; sys.stdout.write('def') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2343 try |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2344 py sys.stderr.write('abc9') ; sys.stderr.write('def') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2345 catch /abc9def/ |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2346 let caught_writeerr = 1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2347 endtry |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2348 py sys.stdout.writelines(iter('abcA')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2349 try |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2350 py sys.stderr.writelines(iter('abcB')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2351 catch /abcB/ |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2352 let caught_writelineerr = 1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2353 endtry |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2354 redir END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2355 call assert_equal("\nabc8def\nabcA", messages) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2356 call assert_equal(1, caught_writeerr) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2357 call assert_equal(1, caught_writelineerr) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2358 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2359 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2360 " Test subclassing |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2361 func Test_python_subclass() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2362 new |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
2363 func Put(...) |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
2364 return a:000 |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
2365 endfunc |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2366 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2367 py << trim EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2368 class DupDict(vim.Dictionary): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2369 def __setitem__(self, key, value): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2370 super(DupDict, self).__setitem__(key, value) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2371 super(DupDict, self).__setitem__('dup_' + key, value) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2372 dd = DupDict() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2373 dd['a'] = 'b' |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2374 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2375 class DupList(vim.List): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2376 def __getitem__(self, idx): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2377 return [super(DupList, self).__getitem__(idx)] * 2 |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2378 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2379 dl = DupList() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2380 dl2 = DupList(iter('abcC')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2381 dl.extend(dl2[0]) |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2382 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2383 class DupFun(vim.Function): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2384 def __call__(self, arg): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2385 return super(DupFun, self).__call__(arg, arg) |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2386 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2387 df = DupFun('Put') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2388 EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2389 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2390 call assert_equal(['a', 'dup_a'], sort(keys(pyeval('dd')))) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2391 call assert_equal(['a', 'a'], pyeval('dl')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2392 call assert_equal(['a', 'b', 'c', 'C'], pyeval('dl2')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2393 call assert_equal([2, 2], pyeval('df(2)')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2394 call assert_equal(1, pyeval('dl') is# pyeval('dl')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2395 call assert_equal(1, pyeval('dd') is# pyeval('dd')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2396 call assert_equal(function('Put'), pyeval('df')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2397 delfunction Put |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2398 py << trim EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2399 del DupDict |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2400 del DupList |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2401 del DupFun |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2402 del dd |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2403 del dl |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2404 del dl2 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2405 del df |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2406 EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2407 close! |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2408 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2409 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2410 " Test chdir |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2411 func Test_python_chdir() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2412 new Xfile |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2413 py cb = vim.current.buffer |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2414 py << trim EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2415 import os |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2416 fnamemodify = vim.Function('fnamemodify') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2417 cb.append(fnamemodify('.', ':p:h:t')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2418 cb.append(vim.eval('@%')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2419 os.chdir('..') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2420 path = fnamemodify('.', ':p:h:t') |
22011
2b6d696b063d
patch 8.2.1555: not all tests are executed on Github Actions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
2421 if path != 'src' and path != 'src2': |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2422 # Running tests from a shadow directory, so move up another level |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2423 # This will result in @% looking like shadow/testdir/Xfile, hence the |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2424 # extra fnamemodify |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2425 os.chdir('..') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2426 cb.append(fnamemodify('.', ':p:h:t')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2427 cb.append(fnamemodify(vim.eval('@%'), ':s?^%s.??' % path).replace(os.path.sep, '/')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2428 os.chdir(path) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2429 del path |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2430 else: |
22011
2b6d696b063d
patch 8.2.1555: not all tests are executed on Github Actions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
2431 # Also accept running from src2/testdir/ for MS-Windows CI. |
2b6d696b063d
patch 8.2.1555: not all tests are executed on Github Actions
Bram Moolenaar <Bram@vim.org>
parents:
21265
diff
changeset
|
2432 cb.append(fnamemodify('.', ':p:h:t').replace('src2', 'src')) |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2433 cb.append(vim.eval('@%').replace(os.path.sep, '/')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2434 os.chdir('testdir') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2435 cb.append(fnamemodify('.', ':p:h:t')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2436 cb.append(vim.eval('@%')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2437 del fnamemodify |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2438 EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2439 call assert_equal(['testdir', 'Xfile', 'src', 'testdir/Xfile', 'testdir', |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2440 \ 'Xfile'], getline(2, '$')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2441 close! |
21200
37edecbfb834
patch 8.2.1151: insufficient test coverage for Python
Bram Moolenaar <Bram@vim.org>
parents:
21198
diff
changeset
|
2442 call AssertException(["py vim.chdir(None)"], "Vim(python):TypeError:") |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2443 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2444 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2445 " Test errors |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2446 func Test_python_errors() |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
2447 func F() dict |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
2448 endfunc |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2449 |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
2450 func D() |
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
2451 endfunc |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2452 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2453 new |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2454 py cb = vim.current.buffer |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2455 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2456 py << trim EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2457 d = vim.Dictionary() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2458 ned = vim.Dictionary(foo='bar', baz='abcD') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2459 dl = vim.Dictionary(a=1) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2460 dl.locked = True |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2461 l = vim.List() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2462 ll = vim.List('abcE') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2463 ll.locked = True |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2464 nel = vim.List('abcO') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2465 f = vim.Function('string') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2466 fd = vim.Function('F') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2467 fdel = vim.Function('D') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2468 vim.command('delfunction D') |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2469 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2470 def subexpr_test(expr, name, subexprs): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2471 cb.append('>>> Testing %s using %s' % (name, expr)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2472 for subexpr in subexprs: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2473 ee(expr % subexpr) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2474 cb.append('<<< Finished') |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2475 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2476 def stringtochars_test(expr): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2477 return subexpr_test(expr, 'StringToChars', ( |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2478 '1', # Fail type checks |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2479 'u"\\0"', # Fail PyString_AsStringAndSize(bytes, , NULL) check |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2480 '"\\0"', # Fail PyString_AsStringAndSize(object, , NULL) check |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2481 )) |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2482 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2483 class Mapping(object): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2484 def __init__(self, d): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2485 self.d = d |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2486 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2487 def __getitem__(self, key): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2488 return self.d[key] |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2489 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2490 def keys(self): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2491 return self.d.keys() |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2492 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2493 def items(self): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2494 return self.d.items() |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2495 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2496 def convertfrompyobject_test(expr, recurse=True): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2497 # pydict_to_tv |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2498 stringtochars_test(expr % '{%s : 1}') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2499 if recurse: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2500 convertfrompyobject_test(expr % '{"abcF" : %s}', False) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2501 # pymap_to_tv |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2502 stringtochars_test(expr % 'Mapping({%s : 1})') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2503 if recurse: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2504 convertfrompyobject_test(expr % 'Mapping({"abcG" : %s})', False) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2505 # pyseq_to_tv |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2506 iter_test(expr) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2507 return subexpr_test(expr, 'ConvertFromPyObject', ( |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2508 'None', # Not conversible |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2509 '{"": 1}', # Empty key not allowed |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2510 '{u"": 1}', # Same, but with unicode object |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2511 'FailingMapping()', # |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2512 'FailingMappingKey()', # |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2513 'FailingNumber()', # |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2514 )) |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2515 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2516 def convertfrompymapping_test(expr): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2517 convertfrompyobject_test(expr) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2518 return subexpr_test(expr, 'ConvertFromPyMapping', ( |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2519 '[]', |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2520 )) |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2521 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2522 def iter_test(expr): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2523 return subexpr_test(expr, '*Iter*', ( |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2524 'FailingIter()', |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2525 'FailingIterNext()', |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2526 )) |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2527 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2528 def number_test(expr, natural=False, unsigned=False): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2529 if natural: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2530 unsigned = True |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2531 return subexpr_test(expr, 'NumberToLong', ( |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2532 '[]', |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2533 'None', |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2534 ) + (unsigned and ('-1',) or ()) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2535 + (natural and ('0',) or ())) |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2536 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2537 class FailingTrue(object): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2538 def __nonzero__(self): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2539 raise NotImplementedError('bool') |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2540 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2541 class FailingIter(object): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2542 def __iter__(self): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2543 raise NotImplementedError('iter') |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2544 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2545 class FailingIterNext(object): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2546 def __iter__(self): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2547 return self |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2548 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2549 def next(self): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2550 raise NotImplementedError('next') |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2551 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2552 class FailingIterNextN(object): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2553 def __init__(self, n): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2554 self.n = n |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2555 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2556 def __iter__(self): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2557 return self |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2558 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2559 def next(self): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2560 if self.n: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2561 self.n -= 1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2562 return 1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2563 else: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2564 raise NotImplementedError('next N') |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2565 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2566 class FailingMappingKey(object): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2567 def __getitem__(self, item): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2568 raise NotImplementedError('getitem:mappingkey') |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2569 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2570 def keys(self): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2571 return list("abcH") |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2572 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2573 class FailingMapping(object): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2574 def __getitem__(self): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2575 raise NotImplementedError('getitem:mapping') |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2576 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2577 def keys(self): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2578 raise NotImplementedError('keys') |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2579 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2580 class FailingList(list): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2581 def __getitem__(self, idx): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2582 if i == 2: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2583 raise NotImplementedError('getitem:list') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2584 else: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2585 return super(FailingList, self).__getitem__(idx) |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2586 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2587 class NoArgsCall(object): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2588 def __call__(self): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2589 pass |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2590 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2591 class FailingCall(object): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2592 def __call__(self, path): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2593 raise NotImplementedError('call') |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2594 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2595 class FailingNumber(object): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2596 def __int__(self): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2597 raise NotImplementedError('int') |
21144
adae19565eea
patch 8.2.1123: Python 3 test is old style
Bram Moolenaar <Bram@vim.org>
parents:
21138
diff
changeset
|
2598 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2599 cb.append("> Output") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2600 cb.append(">> OutputSetattr") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2601 ee('del sys.stdout.softspace') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2602 number_test('sys.stdout.softspace = %s', unsigned=True) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2603 number_test('sys.stderr.softspace = %s', unsigned=True) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2604 ee('assert sys.stdout.isatty()==False') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2605 ee('assert sys.stdout.seekable()==False') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2606 ee('sys.stdout.close()') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2607 ee('sys.stdout.flush()') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2608 ee('assert sys.stderr.isatty()==False') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2609 ee('assert sys.stderr.seekable()==False') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2610 ee('sys.stderr.close()') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2611 ee('sys.stderr.flush()') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2612 ee('sys.stdout.attr = None') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2613 cb.append(">> OutputWrite") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2614 ee('assert sys.stdout.writable()==True') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2615 ee('assert sys.stdout.readable()==False') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2616 ee('assert sys.stderr.writable()==True') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2617 ee('assert sys.stderr.readable()==False') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2618 ee('assert sys.stdout.closed()==False') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2619 ee('assert sys.stderr.closed()==False') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2620 ee('assert sys.stdout.errors=="strict"') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2621 ee('assert sys.stderr.errors=="strict"') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2622 ee('assert sys.stdout.encoding==sys.stderr.encoding') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2623 ee('sys.stdout.write(None)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2624 cb.append(">> OutputWriteLines") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2625 ee('sys.stdout.writelines(None)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2626 ee('sys.stdout.writelines([1])') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2627 iter_test('sys.stdout.writelines(%s)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2628 cb.append("> VimCommand") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2629 stringtochars_test('vim.command(%s)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2630 ee('vim.command("", 2)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2631 #! Not checked: vim->python exceptions translating: checked later |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2632 cb.append("> VimToPython") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2633 #! Not checked: everything: needs errors in internal python functions |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2634 cb.append("> VimEval") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2635 stringtochars_test('vim.eval(%s)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2636 ee('vim.eval("", FailingTrue())') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2637 #! Not checked: everything: needs errors in internal python functions |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2638 cb.append("> VimEvalPy") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2639 stringtochars_test('vim.bindeval(%s)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2640 ee('vim.eval("", 2)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2641 #! Not checked: vim->python exceptions translating: checked later |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2642 cb.append("> VimStrwidth") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2643 stringtochars_test('vim.strwidth(%s)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2644 cb.append("> VimForeachRTP") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2645 ee('vim.foreach_rtp(None)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2646 ee('vim.foreach_rtp(NoArgsCall())') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2647 ee('vim.foreach_rtp(FailingCall())') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2648 ee('vim.foreach_rtp(int, 2)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2649 cb.append('> import') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2650 old_rtp = vim.options['rtp'] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2651 vim.options['rtp'] = os.getcwd().replace('\\', '\\\\').replace(',', '\\,') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2652 ee('import xxx_no_such_module_xxx') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2653 ee('import failing_import') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2654 ee('import failing') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2655 vim.options['rtp'] = old_rtp |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2656 del old_rtp |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2657 cb.append("> Options") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2658 cb.append(">> OptionsItem") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2659 ee('vim.options["abcQ"]') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2660 ee('vim.options[""]') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2661 stringtochars_test('vim.options[%s]') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2662 cb.append(">> OptionsContains") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2663 stringtochars_test('%s in vim.options') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2664 cb.append("> Dictionary") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2665 cb.append(">> DictionaryConstructor") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2666 ee('vim.Dictionary("abcI")') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2667 ##! Not checked: py_dict_alloc failure |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2668 cb.append(">> DictionarySetattr") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2669 ee('del d.locked') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2670 ee('d.locked = FailingTrue()') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2671 ee('vim.vvars.locked = False') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2672 ee('d.scope = True') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2673 ee('d.xxx = True') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2674 cb.append(">> _DictionaryItem") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2675 ee('d.get("a", 2, 3)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2676 stringtochars_test('d.get(%s)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2677 ee('d.pop("a")') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2678 ee('dl.pop("a")') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2679 cb.append(">> DictionaryContains") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2680 ee('"" in d') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2681 ee('0 in d') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2682 cb.append(">> DictionaryIterNext") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2683 ee('for i in ned: ned["a"] = 1') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2684 del i |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2685 cb.append(">> DictionaryAssItem") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2686 ee('dl["b"] = 1') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2687 stringtochars_test('d[%s] = 1') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2688 convertfrompyobject_test('d["a"] = %s') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2689 cb.append(">> DictionaryUpdate") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2690 cb.append(">>> kwargs") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2691 cb.append(">>> iter") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2692 ee('d.update(FailingMapping())') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2693 ee('d.update([FailingIterNext()])') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2694 ee('d.update([FailingIterNextN(1)])') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2695 iter_test('d.update(%s)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2696 convertfrompyobject_test('d.update(%s)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2697 stringtochars_test('d.update(((%s, 0),))') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2698 convertfrompyobject_test('d.update((("a", %s),))') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2699 cb.append(">> DictionaryPopItem") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2700 ee('d.popitem(1, 2)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2701 cb.append(">> DictionaryHasKey") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2702 ee('d.has_key()') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2703 cb.append("> List") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2704 cb.append(">> ListConstructor") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2705 ee('vim.List(1, 2)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2706 ee('vim.List(a=1)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2707 iter_test('vim.List(%s)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2708 convertfrompyobject_test('vim.List([%s])') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2709 cb.append(">> ListItem") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2710 ee('l[1000]') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2711 cb.append(">> ListAssItem") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2712 ee('ll[1] = 2') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2713 ee('l[1000] = 3') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2714 cb.append(">> ListAssSlice") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2715 ee('ll[1:100] = "abcJ"') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2716 iter_test('l[:] = %s') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2717 ee('nel[1:10:2] = "abcK"') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2718 cb.append(repr(tuple(nel))) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2719 ee('nel[1:10:2] = "a"') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2720 cb.append(repr(tuple(nel))) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2721 ee('nel[1:1:-1] = "a"') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2722 cb.append(repr(tuple(nel))) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2723 ee('nel[:] = FailingIterNextN(2)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2724 cb.append(repr(tuple(nel))) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2725 convertfrompyobject_test('l[:] = [%s]') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2726 cb.append(">> ListConcatInPlace") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2727 iter_test('l.extend(%s)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2728 convertfrompyobject_test('l.extend([%s])') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2729 cb.append(">> ListSetattr") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2730 ee('del l.locked') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2731 ee('l.locked = FailingTrue()') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2732 ee('l.xxx = True') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2733 cb.append("> Function") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2734 cb.append(">> FunctionConstructor") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2735 cb.append(">>> FunctionConstructor") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2736 ee('vim.Function("123")') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2737 ee('vim.Function("xxx_non_existent_function_xxx")') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2738 ee('vim.Function("xxx#non#existent#function#xxx")') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2739 ee('vim.Function("xxx_non_existent_function_xxx2", args=[])') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2740 ee('vim.Function("xxx_non_existent_function_xxx3", self={})') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2741 ee('vim.Function("xxx_non_existent_function_xxx4", args=[], self={})') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2742 cb.append(">>> FunctionNew") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2743 ee('vim.Function("tr", self="abcFuncSelf")') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2744 ee('vim.Function("tr", args=427423)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2745 ee('vim.Function("tr", self="abcFuncSelf2", args="abcFuncArgs2")') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2746 ee('vim.Function(self="abcFuncSelf2", args="abcFuncArgs2")') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2747 ee('vim.Function("tr", "", self="abcFuncSelf2", args="abcFuncArgs2")') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2748 ee('vim.Function("tr", "")') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2749 cb.append(">> FunctionCall") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2750 convertfrompyobject_test('f(%s)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2751 convertfrompymapping_test('fd(self=%s)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2752 cb.append("> TabPage") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2753 cb.append(">> TabPageAttr") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2754 ee('vim.current.tabpage.xxx') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2755 cb.append("> TabList") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2756 cb.append(">> TabListItem") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2757 ee('vim.tabpages[1000]') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2758 cb.append("> Window") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2759 cb.append(">> WindowAttr") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2760 ee('vim.current.window.xxx') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2761 cb.append(">> WindowSetattr") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2762 ee('vim.current.window.buffer = 0') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2763 ee('vim.current.window.cursor = (100000000, 100000000)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2764 ee('vim.current.window.cursor = True') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2765 number_test('vim.current.window.height = %s', unsigned=True) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2766 number_test('vim.current.window.width = %s', unsigned=True) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2767 ee('vim.current.window.xxxxxx = True') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2768 cb.append("> WinList") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2769 cb.append(">> WinListItem") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2770 ee('vim.windows[1000]') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2771 cb.append("> Buffer") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2772 cb.append(">> StringToLine (indirect)") |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
2773 ee('vim.current.buffer[0] = "\\na"') |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2774 ee('vim.current.buffer[0] = u"\\na"') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2775 cb.append(">> SetBufferLine (indirect)") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2776 ee('vim.current.buffer[0] = True') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2777 cb.append(">> SetBufferLineList (indirect)") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2778 ee('vim.current.buffer[:] = True') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2779 ee('vim.current.buffer[:] = ["\\na", "bc"]') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2780 cb.append(">> InsertBufferLines (indirect)") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2781 ee('vim.current.buffer.append(None)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2782 ee('vim.current.buffer.append(["\\na", "bc"])') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2783 ee('vim.current.buffer.append("\\nbc")') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2784 cb.append(">> RBItem") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2785 ee('vim.current.buffer[100000000]') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2786 cb.append(">> RBAsItem") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2787 ee('vim.current.buffer[100000000] = ""') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2788 cb.append(">> BufferAttr") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2789 ee('vim.current.buffer.xxx') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2790 cb.append(">> BufferSetattr") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2791 ee('vim.current.buffer.name = True') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2792 ee('vim.current.buffer.xxx = True') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2793 cb.append(">> BufferMark") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2794 ee('vim.current.buffer.mark(0)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2795 ee('vim.current.buffer.mark("abcM")') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2796 ee('vim.current.buffer.mark("!")') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2797 cb.append(">> BufferRange") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2798 ee('vim.current.buffer.range(1, 2, 3)') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2799 cb.append("> BufMap") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2800 cb.append(">> BufMapItem") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2801 ee('vim.buffers[100000000]') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2802 number_test('vim.buffers[%s]', natural=True) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2803 cb.append("> Current") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2804 cb.append(">> CurrentGetattr") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2805 ee('vim.current.xxx') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2806 cb.append(">> CurrentSetattr") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2807 ee('vim.current.line = True') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2808 ee('vim.current.buffer = True') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2809 ee('vim.current.window = True') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2810 ee('vim.current.tabpage = True') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2811 ee('vim.current.xxx = True') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2812 del d |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2813 del ned |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2814 del dl |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2815 del l |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2816 del ll |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2817 del nel |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2818 del f |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2819 del fd |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2820 del fdel |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2821 del subexpr_test |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2822 del stringtochars_test |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2823 del Mapping |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2824 del convertfrompyobject_test |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2825 del convertfrompymapping_test |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2826 del iter_test |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2827 del number_test |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2828 del FailingTrue |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2829 del FailingIter |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2830 del FailingIterNext |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2831 del FailingIterNextN |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2832 del FailingMapping |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2833 del FailingMappingKey |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2834 del FailingList |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2835 del NoArgsCall |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2836 del FailingCall |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2837 del FailingNumber |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2838 EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2839 delfunction F |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2840 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2841 let expected =<< trim END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2842 > Output |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2843 >> OutputSetattr |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2844 del sys.stdout.softspace:AttributeError:('cannot delete OutputObject attributes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2845 >>> Testing NumberToLong using sys.stdout.softspace = %s |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2846 sys.stdout.softspace = []:TypeError:('expected int(), long() or something supporting coercing to long(), but got list',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2847 sys.stdout.softspace = None:TypeError:('expected int(), long() or something supporting coercing to long(), but got NoneType',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2848 sys.stdout.softspace = -1:ValueError:('number must be greater or equal to zero',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2849 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2850 >>> Testing NumberToLong using sys.stderr.softspace = %s |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2851 sys.stderr.softspace = []:TypeError:('expected int(), long() or something supporting coercing to long(), but got list',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2852 sys.stderr.softspace = None:TypeError:('expected int(), long() or something supporting coercing to long(), but got NoneType',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2853 sys.stderr.softspace = -1:ValueError:('number must be greater or equal to zero',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2854 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2855 assert sys.stdout.isatty()==False:NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2856 assert sys.stdout.seekable()==False:NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2857 sys.stdout.close():NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2858 sys.stdout.flush():NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2859 assert sys.stderr.isatty()==False:NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2860 assert sys.stderr.seekable()==False:NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2861 sys.stderr.close():NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2862 sys.stderr.flush():NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2863 sys.stdout.attr = None:AttributeError:('invalid attribute: attr',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2864 >> OutputWrite |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2865 assert sys.stdout.writable()==True:NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2866 assert sys.stdout.readable()==False:NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2867 assert sys.stderr.writable()==True:NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2868 assert sys.stderr.readable()==False:NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2869 assert sys.stdout.closed()==False:NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2870 assert sys.stderr.closed()==False:NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2871 assert sys.stdout.errors=="strict":NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2872 assert sys.stderr.errors=="strict":NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2873 assert sys.stdout.encoding==sys.stderr.encoding:NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2874 sys.stdout.write(None):TypeError:('coercing to Unicode: need string or buffer, NoneType found',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2875 >> OutputWriteLines |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2876 sys.stdout.writelines(None):TypeError:("'NoneType' object is not iterable",) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2877 sys.stdout.writelines([1]):TypeError:('coercing to Unicode: need string or buffer, int found',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2878 >>> Testing *Iter* using sys.stdout.writelines(%s) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2879 sys.stdout.writelines(FailingIter()):NotImplementedError:('iter',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2880 sys.stdout.writelines(FailingIterNext()):NotImplementedError:('next',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2881 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2882 > VimCommand |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2883 >>> Testing StringToChars using vim.command(%s) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2884 vim.command(1):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2885 vim.command(u"\0"):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2886 vim.command("\0"):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2887 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2888 vim.command("", 2):TypeError:('command() takes exactly one argument (2 given)',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2889 > VimToPython |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2890 > VimEval |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2891 >>> Testing StringToChars using vim.eval(%s) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2892 vim.eval(1):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2893 vim.eval(u"\0"):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2894 vim.eval("\0"):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2895 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2896 vim.eval("", FailingTrue()):TypeError:('function takes exactly 1 argument (2 given)',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2897 > VimEvalPy |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2898 >>> Testing StringToChars using vim.bindeval(%s) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2899 vim.bindeval(1):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2900 vim.bindeval(u"\0"):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2901 vim.bindeval("\0"):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2902 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2903 vim.eval("", 2):TypeError:('function takes exactly 1 argument (2 given)',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2904 > VimStrwidth |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2905 >>> Testing StringToChars using vim.strwidth(%s) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2906 vim.strwidth(1):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2907 vim.strwidth(u"\0"):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2908 vim.strwidth("\0"):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2909 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2910 > VimForeachRTP |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2911 vim.foreach_rtp(None):TypeError:("'NoneType' object is not callable",) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2912 vim.foreach_rtp(NoArgsCall()):TypeError:('__call__() takes exactly 1 argument (2 given)',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2913 vim.foreach_rtp(FailingCall()):NotImplementedError:('call',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2914 vim.foreach_rtp(int, 2):TypeError:('foreach_rtp() takes exactly one argument (2 given)',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2915 > import |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2916 import xxx_no_such_module_xxx:ImportError:('No module named xxx_no_such_module_xxx',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2917 import failing_import:ImportError:() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2918 import failing:NotImplementedError:() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2919 > Options |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2920 >> OptionsItem |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2921 vim.options["abcQ"]:KeyError:('abcQ',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2922 vim.options[""]:ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2923 >>> Testing StringToChars using vim.options[%s] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2924 vim.options[1]:TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2925 vim.options[u"\0"]:TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2926 vim.options["\0"]:TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2927 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2928 >> OptionsContains |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2929 >>> Testing StringToChars using %s in vim.options |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2930 1 in vim.options:TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2931 u"\0" in vim.options:TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2932 "\0" in vim.options:TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2933 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2934 > Dictionary |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2935 >> DictionaryConstructor |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2936 vim.Dictionary("abcI"):ValueError:('expected sequence element of size 2, but got sequence of size 1',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2937 >> DictionarySetattr |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2938 del d.locked:AttributeError:('cannot delete vim.Dictionary attributes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2939 d.locked = FailingTrue():NotImplementedError:('bool',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2940 vim.vvars.locked = False:TypeError:('cannot modify fixed dictionary',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2941 d.scope = True:AttributeError:('cannot set attribute scope',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2942 d.xxx = True:AttributeError:('cannot set attribute xxx',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2943 >> _DictionaryItem |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2944 d.get("a", 2, 3):TypeError:('function takes at most 2 arguments (3 given)',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2945 >>> Testing StringToChars using d.get(%s) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2946 d.get(1):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2947 d.get(u"\0"):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2948 d.get("\0"):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2949 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2950 d.pop("a"):KeyError:('a',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2951 dl.pop("a"):error:('dictionary is locked',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2952 >> DictionaryContains |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2953 "" in d:ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2954 0 in d:TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2955 >> DictionaryIterNext |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2956 for i in ned: ned["a"] = 1:RuntimeError:('hashtab changed during iteration',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2957 >> DictionaryAssItem |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2958 dl["b"] = 1:error:('dictionary is locked',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2959 >>> Testing StringToChars using d[%s] = 1 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2960 d[1] = 1:TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2961 d[u"\0"] = 1:TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2962 d["\0"] = 1:TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2963 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2964 >>> Testing StringToChars using d["a"] = {%s : 1} |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2965 d["a"] = {1 : 1}:TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2966 d["a"] = {u"\0" : 1}:TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2967 d["a"] = {"\0" : 1}:TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2968 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2969 >>> Testing StringToChars using d["a"] = {"abcF" : {%s : 1}} |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2970 d["a"] = {"abcF" : {1 : 1}}:TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2971 d["a"] = {"abcF" : {u"\0" : 1}}:TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2972 d["a"] = {"abcF" : {"\0" : 1}}:TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2973 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2974 >>> Testing StringToChars using d["a"] = {"abcF" : Mapping({%s : 1})} |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2975 d["a"] = {"abcF" : Mapping({1 : 1})}:TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2976 d["a"] = {"abcF" : Mapping({u"\0" : 1})}:TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2977 d["a"] = {"abcF" : Mapping({"\0" : 1})}:TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2978 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2979 >>> Testing *Iter* using d["a"] = {"abcF" : %s} |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2980 d["a"] = {"abcF" : FailingIter()}:TypeError:('unable to convert FailingIter to a Vim structure',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2981 d["a"] = {"abcF" : FailingIterNext()}:NotImplementedError:('next',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2982 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2983 >>> Testing ConvertFromPyObject using d["a"] = {"abcF" : %s} |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2984 d["a"] = {"abcF" : None}:NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2985 d["a"] = {"abcF" : {"": 1}}:ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2986 d["a"] = {"abcF" : {u"": 1}}:ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2987 d["a"] = {"abcF" : FailingMapping()}:NotImplementedError:('keys',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2988 d["a"] = {"abcF" : FailingMappingKey()}:NotImplementedError:('getitem:mappingkey',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2989 d["a"] = {"abcF" : FailingNumber()}:TypeError:('long() argument must be a string or a number',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2990 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2991 >>> Testing StringToChars using d["a"] = Mapping({%s : 1}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2992 d["a"] = Mapping({1 : 1}):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2993 d["a"] = Mapping({u"\0" : 1}):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2994 d["a"] = Mapping({"\0" : 1}):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2995 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2996 >>> Testing StringToChars using d["a"] = Mapping({"abcG" : {%s : 1}}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2997 d["a"] = Mapping({"abcG" : {1 : 1}}):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2998 d["a"] = Mapping({"abcG" : {u"\0" : 1}}):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
2999 d["a"] = Mapping({"abcG" : {"\0" : 1}}):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3000 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3001 >>> Testing StringToChars using d["a"] = Mapping({"abcG" : Mapping({%s : 1})}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3002 d["a"] = Mapping({"abcG" : Mapping({1 : 1})}):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3003 d["a"] = Mapping({"abcG" : Mapping({u"\0" : 1})}):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3004 d["a"] = Mapping({"abcG" : Mapping({"\0" : 1})}):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3005 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3006 >>> Testing *Iter* using d["a"] = Mapping({"abcG" : %s}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3007 d["a"] = Mapping({"abcG" : FailingIter()}):TypeError:('unable to convert FailingIter to a Vim structure',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3008 d["a"] = Mapping({"abcG" : FailingIterNext()}):NotImplementedError:('next',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3009 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3010 >>> Testing ConvertFromPyObject using d["a"] = Mapping({"abcG" : %s}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3011 d["a"] = Mapping({"abcG" : None}):NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3012 d["a"] = Mapping({"abcG" : {"": 1}}):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3013 d["a"] = Mapping({"abcG" : {u"": 1}}):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3014 d["a"] = Mapping({"abcG" : FailingMapping()}):NotImplementedError:('keys',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3015 d["a"] = Mapping({"abcG" : FailingMappingKey()}):NotImplementedError:('getitem:mappingkey',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3016 d["a"] = Mapping({"abcG" : FailingNumber()}):TypeError:('long() argument must be a string or a number',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3017 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3018 >>> Testing *Iter* using d["a"] = %s |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3019 d["a"] = FailingIter():TypeError:('unable to convert FailingIter to a Vim structure',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3020 d["a"] = FailingIterNext():NotImplementedError:('next',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3021 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3022 >>> Testing ConvertFromPyObject using d["a"] = %s |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3023 d["a"] = None:NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3024 d["a"] = {"": 1}:ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3025 d["a"] = {u"": 1}:ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3026 d["a"] = FailingMapping():NotImplementedError:('keys',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3027 d["a"] = FailingMappingKey():NotImplementedError:('getitem:mappingkey',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3028 d["a"] = FailingNumber():TypeError:('long() argument must be a string or a number',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3029 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3030 >> DictionaryUpdate |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3031 >>> kwargs |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3032 >>> iter |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3033 d.update(FailingMapping()):NotImplementedError:('keys',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3034 d.update([FailingIterNext()]):NotImplementedError:('next',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3035 d.update([FailingIterNextN(1)]):NotImplementedError:('next N',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3036 >>> Testing *Iter* using d.update(%s) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3037 d.update(FailingIter()):NotImplementedError:('iter',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3038 d.update(FailingIterNext()):NotImplementedError:('next',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3039 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3040 >>> Testing StringToChars using d.update({%s : 1}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3041 d.update({1 : 1}):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3042 d.update({u"\0" : 1}):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3043 d.update({"\0" : 1}):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3044 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3045 >>> Testing StringToChars using d.update({"abcF" : {%s : 1}}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3046 d.update({"abcF" : {1 : 1}}):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3047 d.update({"abcF" : {u"\0" : 1}}):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3048 d.update({"abcF" : {"\0" : 1}}):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3049 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3050 >>> Testing StringToChars using d.update({"abcF" : Mapping({%s : 1})}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3051 d.update({"abcF" : Mapping({1 : 1})}):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3052 d.update({"abcF" : Mapping({u"\0" : 1})}):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3053 d.update({"abcF" : Mapping({"\0" : 1})}):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3054 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3055 >>> Testing *Iter* using d.update({"abcF" : %s}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3056 d.update({"abcF" : FailingIter()}):TypeError:('unable to convert FailingIter to a Vim structure',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3057 d.update({"abcF" : FailingIterNext()}):NotImplementedError:('next',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3058 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3059 >>> Testing ConvertFromPyObject using d.update({"abcF" : %s}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3060 d.update({"abcF" : None}):NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3061 d.update({"abcF" : {"": 1}}):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3062 d.update({"abcF" : {u"": 1}}):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3063 d.update({"abcF" : FailingMapping()}):NotImplementedError:('keys',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3064 d.update({"abcF" : FailingMappingKey()}):NotImplementedError:('getitem:mappingkey',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3065 d.update({"abcF" : FailingNumber()}):TypeError:('long() argument must be a string or a number',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3066 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3067 >>> Testing StringToChars using d.update(Mapping({%s : 1})) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3068 d.update(Mapping({1 : 1})):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3069 d.update(Mapping({u"\0" : 1})):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3070 d.update(Mapping({"\0" : 1})):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3071 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3072 >>> Testing StringToChars using d.update(Mapping({"abcG" : {%s : 1}})) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3073 d.update(Mapping({"abcG" : {1 : 1}})):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3074 d.update(Mapping({"abcG" : {u"\0" : 1}})):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3075 d.update(Mapping({"abcG" : {"\0" : 1}})):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3076 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3077 >>> Testing StringToChars using d.update(Mapping({"abcG" : Mapping({%s : 1})})) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3078 d.update(Mapping({"abcG" : Mapping({1 : 1})})):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3079 d.update(Mapping({"abcG" : Mapping({u"\0" : 1})})):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3080 d.update(Mapping({"abcG" : Mapping({"\0" : 1})})):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3081 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3082 >>> Testing *Iter* using d.update(Mapping({"abcG" : %s})) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3083 d.update(Mapping({"abcG" : FailingIter()})):TypeError:('unable to convert FailingIter to a Vim structure',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3084 d.update(Mapping({"abcG" : FailingIterNext()})):NotImplementedError:('next',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3085 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3086 >>> Testing ConvertFromPyObject using d.update(Mapping({"abcG" : %s})) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3087 d.update(Mapping({"abcG" : None})):NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3088 d.update(Mapping({"abcG" : {"": 1}})):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3089 d.update(Mapping({"abcG" : {u"": 1}})):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3090 d.update(Mapping({"abcG" : FailingMapping()})):NotImplementedError:('keys',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3091 d.update(Mapping({"abcG" : FailingMappingKey()})):NotImplementedError:('getitem:mappingkey',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3092 d.update(Mapping({"abcG" : FailingNumber()})):TypeError:('long() argument must be a string or a number',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3093 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3094 >>> Testing *Iter* using d.update(%s) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3095 d.update(FailingIter()):NotImplementedError:('iter',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3096 d.update(FailingIterNext()):NotImplementedError:('next',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3097 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3098 >>> Testing ConvertFromPyObject using d.update(%s) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3099 d.update(None):TypeError:("'NoneType' object is not iterable",) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3100 d.update({"": 1}):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3101 d.update({u"": 1}):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3102 d.update(FailingMapping()):NotImplementedError:('keys',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3103 d.update(FailingMappingKey()):NotImplementedError:('getitem:mappingkey',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3104 d.update(FailingNumber()):TypeError:("'FailingNumber' object is not iterable",) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3105 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3106 >>> Testing StringToChars using d.update(((%s, 0),)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3107 d.update(((1, 0),)):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3108 d.update(((u"\0", 0),)):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3109 d.update((("\0", 0),)):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3110 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3111 >>> Testing StringToChars using d.update((("a", {%s : 1}),)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3112 d.update((("a", {1 : 1}),)):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3113 d.update((("a", {u"\0" : 1}),)):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3114 d.update((("a", {"\0" : 1}),)):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3115 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3116 >>> Testing StringToChars using d.update((("a", {"abcF" : {%s : 1}}),)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3117 d.update((("a", {"abcF" : {1 : 1}}),)):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3118 d.update((("a", {"abcF" : {u"\0" : 1}}),)):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3119 d.update((("a", {"abcF" : {"\0" : 1}}),)):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3120 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3121 >>> Testing StringToChars using d.update((("a", {"abcF" : Mapping({%s : 1})}),)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3122 d.update((("a", {"abcF" : Mapping({1 : 1})}),)):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3123 d.update((("a", {"abcF" : Mapping({u"\0" : 1})}),)):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3124 d.update((("a", {"abcF" : Mapping({"\0" : 1})}),)):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3125 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3126 >>> Testing *Iter* using d.update((("a", {"abcF" : %s}),)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3127 d.update((("a", {"abcF" : FailingIter()}),)):TypeError:('unable to convert FailingIter to a Vim structure',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3128 d.update((("a", {"abcF" : FailingIterNext()}),)):NotImplementedError:('next',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3129 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3130 >>> Testing ConvertFromPyObject using d.update((("a", {"abcF" : %s}),)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3131 d.update((("a", {"abcF" : None}),)):error:("failed to add key 'a' to dictionary",) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3132 d.update((("a", {"abcF" : {"": 1}}),)):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3133 d.update((("a", {"abcF" : {u"": 1}}),)):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3134 d.update((("a", {"abcF" : FailingMapping()}),)):NotImplementedError:('keys',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3135 d.update((("a", {"abcF" : FailingMappingKey()}),)):NotImplementedError:('getitem:mappingkey',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3136 d.update((("a", {"abcF" : FailingNumber()}),)):TypeError:('long() argument must be a string or a number',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3137 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3138 >>> Testing StringToChars using d.update((("a", Mapping({%s : 1})),)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3139 d.update((("a", Mapping({1 : 1})),)):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3140 d.update((("a", Mapping({u"\0" : 1})),)):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3141 d.update((("a", Mapping({"\0" : 1})),)):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3142 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3143 >>> Testing StringToChars using d.update((("a", Mapping({"abcG" : {%s : 1}})),)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3144 d.update((("a", Mapping({"abcG" : {1 : 1}})),)):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3145 d.update((("a", Mapping({"abcG" : {u"\0" : 1}})),)):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3146 d.update((("a", Mapping({"abcG" : {"\0" : 1}})),)):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3147 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3148 >>> Testing StringToChars using d.update((("a", Mapping({"abcG" : Mapping({%s : 1})})),)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3149 d.update((("a", Mapping({"abcG" : Mapping({1 : 1})})),)):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3150 d.update((("a", Mapping({"abcG" : Mapping({u"\0" : 1})})),)):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3151 d.update((("a", Mapping({"abcG" : Mapping({"\0" : 1})})),)):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3152 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3153 >>> Testing *Iter* using d.update((("a", Mapping({"abcG" : %s})),)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3154 d.update((("a", Mapping({"abcG" : FailingIter()})),)):TypeError:('unable to convert FailingIter to a Vim structure',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3155 d.update((("a", Mapping({"abcG" : FailingIterNext()})),)):NotImplementedError:('next',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3156 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3157 >>> Testing ConvertFromPyObject using d.update((("a", Mapping({"abcG" : %s})),)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3158 d.update((("a", Mapping({"abcG" : None})),)):error:("failed to add key 'a' to dictionary",) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3159 d.update((("a", Mapping({"abcG" : {"": 1}})),)):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3160 d.update((("a", Mapping({"abcG" : {u"": 1}})),)):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3161 d.update((("a", Mapping({"abcG" : FailingMapping()})),)):NotImplementedError:('keys',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3162 d.update((("a", Mapping({"abcG" : FailingMappingKey()})),)):NotImplementedError:('getitem:mappingkey',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3163 d.update((("a", Mapping({"abcG" : FailingNumber()})),)):TypeError:('long() argument must be a string or a number',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3164 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3165 >>> Testing *Iter* using d.update((("a", %s),)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3166 d.update((("a", FailingIter()),)):TypeError:('unable to convert FailingIter to a Vim structure',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3167 d.update((("a", FailingIterNext()),)):NotImplementedError:('next',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3168 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3169 >>> Testing ConvertFromPyObject using d.update((("a", %s),)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3170 d.update((("a", None),)):error:("failed to add key 'a' to dictionary",) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3171 d.update((("a", {"": 1}),)):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3172 d.update((("a", {u"": 1}),)):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3173 d.update((("a", FailingMapping()),)):NotImplementedError:('keys',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3174 d.update((("a", FailingMappingKey()),)):NotImplementedError:('getitem:mappingkey',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3175 d.update((("a", FailingNumber()),)):TypeError:('long() argument must be a string or a number',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3176 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3177 >> DictionaryPopItem |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3178 d.popitem(1, 2):TypeError:('popitem() takes no arguments (2 given)',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3179 >> DictionaryHasKey |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3180 d.has_key():TypeError:('has_key() takes exactly one argument (0 given)',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3181 > List |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3182 >> ListConstructor |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3183 vim.List(1, 2):TypeError:('function takes at most 1 argument (2 given)',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3184 vim.List(a=1):TypeError:('list constructor does not accept keyword arguments',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3185 >>> Testing *Iter* using vim.List(%s) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3186 vim.List(FailingIter()):NotImplementedError:('iter',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3187 vim.List(FailingIterNext()):NotImplementedError:('next',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3188 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3189 >>> Testing StringToChars using vim.List([{%s : 1}]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3190 vim.List([{1 : 1}]):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3191 vim.List([{u"\0" : 1}]):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3192 vim.List([{"\0" : 1}]):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3193 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3194 >>> Testing StringToChars using vim.List([{"abcF" : {%s : 1}}]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3195 vim.List([{"abcF" : {1 : 1}}]):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3196 vim.List([{"abcF" : {u"\0" : 1}}]):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3197 vim.List([{"abcF" : {"\0" : 1}}]):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3198 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3199 >>> Testing StringToChars using vim.List([{"abcF" : Mapping({%s : 1})}]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3200 vim.List([{"abcF" : Mapping({1 : 1})}]):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3201 vim.List([{"abcF" : Mapping({u"\0" : 1})}]):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3202 vim.List([{"abcF" : Mapping({"\0" : 1})}]):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3203 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3204 >>> Testing *Iter* using vim.List([{"abcF" : %s}]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3205 vim.List([{"abcF" : FailingIter()}]):TypeError:('unable to convert FailingIter to a Vim structure',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3206 vim.List([{"abcF" : FailingIterNext()}]):NotImplementedError:('next',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3207 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3208 >>> Testing ConvertFromPyObject using vim.List([{"abcF" : %s}]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3209 vim.List([{"abcF" : None}]):NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3210 vim.List([{"abcF" : {"": 1}}]):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3211 vim.List([{"abcF" : {u"": 1}}]):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3212 vim.List([{"abcF" : FailingMapping()}]):NotImplementedError:('keys',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3213 vim.List([{"abcF" : FailingMappingKey()}]):NotImplementedError:('getitem:mappingkey',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3214 vim.List([{"abcF" : FailingNumber()}]):TypeError:('long() argument must be a string or a number',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3215 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3216 >>> Testing StringToChars using vim.List([Mapping({%s : 1})]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3217 vim.List([Mapping({1 : 1})]):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3218 vim.List([Mapping({u"\0" : 1})]):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3219 vim.List([Mapping({"\0" : 1})]):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3220 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3221 >>> Testing StringToChars using vim.List([Mapping({"abcG" : {%s : 1}})]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3222 vim.List([Mapping({"abcG" : {1 : 1}})]):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3223 vim.List([Mapping({"abcG" : {u"\0" : 1}})]):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3224 vim.List([Mapping({"abcG" : {"\0" : 1}})]):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3225 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3226 >>> Testing StringToChars using vim.List([Mapping({"abcG" : Mapping({%s : 1})})]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3227 vim.List([Mapping({"abcG" : Mapping({1 : 1})})]):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3228 vim.List([Mapping({"abcG" : Mapping({u"\0" : 1})})]):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3229 vim.List([Mapping({"abcG" : Mapping({"\0" : 1})})]):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3230 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3231 >>> Testing *Iter* using vim.List([Mapping({"abcG" : %s})]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3232 vim.List([Mapping({"abcG" : FailingIter()})]):TypeError:('unable to convert FailingIter to a Vim structure',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3233 vim.List([Mapping({"abcG" : FailingIterNext()})]):NotImplementedError:('next',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3234 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3235 >>> Testing ConvertFromPyObject using vim.List([Mapping({"abcG" : %s})]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3236 vim.List([Mapping({"abcG" : None})]):NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3237 vim.List([Mapping({"abcG" : {"": 1}})]):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3238 vim.List([Mapping({"abcG" : {u"": 1}})]):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3239 vim.List([Mapping({"abcG" : FailingMapping()})]):NotImplementedError:('keys',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3240 vim.List([Mapping({"abcG" : FailingMappingKey()})]):NotImplementedError:('getitem:mappingkey',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3241 vim.List([Mapping({"abcG" : FailingNumber()})]):TypeError:('long() argument must be a string or a number',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3242 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3243 >>> Testing *Iter* using vim.List([%s]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3244 vim.List([FailingIter()]):TypeError:('unable to convert FailingIter to a Vim structure',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3245 vim.List([FailingIterNext()]):NotImplementedError:('next',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3246 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3247 >>> Testing ConvertFromPyObject using vim.List([%s]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3248 vim.List([None]):NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3249 vim.List([{"": 1}]):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3250 vim.List([{u"": 1}]):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3251 vim.List([FailingMapping()]):NotImplementedError:('keys',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3252 vim.List([FailingMappingKey()]):NotImplementedError:('getitem:mappingkey',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3253 vim.List([FailingNumber()]):TypeError:('long() argument must be a string or a number',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3254 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3255 >> ListItem |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3256 l[1000]:IndexError:('list index out of range',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3257 >> ListAssItem |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3258 ll[1] = 2:error:('list is locked',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3259 l[1000] = 3:IndexError:('list index out of range',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3260 >> ListAssSlice |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3261 ll[1:100] = "abcJ":error:('list is locked',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3262 >>> Testing *Iter* using l[:] = %s |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3263 l[:] = FailingIter():NotImplementedError:('iter',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3264 l[:] = FailingIterNext():NotImplementedError:('next',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3265 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3266 nel[1:10:2] = "abcK":ValueError:('attempt to assign sequence of size greater than 2 to extended slice',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3267 ('a', 'b', 'c', 'O') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3268 nel[1:10:2] = "a":ValueError:('attempt to assign sequence of size 1 to extended slice of size 2',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3269 ('a', 'b', 'c', 'O') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3270 nel[1:1:-1] = "a":ValueError:('attempt to assign sequence of size greater than 0 to extended slice',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3271 ('a', 'b', 'c', 'O') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3272 nel[:] = FailingIterNextN(2):NotImplementedError:('next N',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3273 ('a', 'b', 'c', 'O') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3274 >>> Testing StringToChars using l[:] = [{%s : 1}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3275 l[:] = [{1 : 1}]:TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3276 l[:] = [{u"\0" : 1}]:TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3277 l[:] = [{"\0" : 1}]:TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3278 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3279 >>> Testing StringToChars using l[:] = [{"abcF" : {%s : 1}}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3280 l[:] = [{"abcF" : {1 : 1}}]:TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3281 l[:] = [{"abcF" : {u"\0" : 1}}]:TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3282 l[:] = [{"abcF" : {"\0" : 1}}]:TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3283 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3284 >>> Testing StringToChars using l[:] = [{"abcF" : Mapping({%s : 1})}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3285 l[:] = [{"abcF" : Mapping({1 : 1})}]:TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3286 l[:] = [{"abcF" : Mapping({u"\0" : 1})}]:TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3287 l[:] = [{"abcF" : Mapping({"\0" : 1})}]:TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3288 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3289 >>> Testing *Iter* using l[:] = [{"abcF" : %s}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3290 l[:] = [{"abcF" : FailingIter()}]:TypeError:('unable to convert FailingIter to a Vim structure',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3291 l[:] = [{"abcF" : FailingIterNext()}]:NotImplementedError:('next',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3292 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3293 >>> Testing ConvertFromPyObject using l[:] = [{"abcF" : %s}] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3294 l[:] = [{"abcF" : None}]:NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3295 l[:] = [{"abcF" : {"": 1}}]:ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3296 l[:] = [{"abcF" : {u"": 1}}]:ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3297 l[:] = [{"abcF" : FailingMapping()}]:NotImplementedError:('keys',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3298 l[:] = [{"abcF" : FailingMappingKey()}]:NotImplementedError:('getitem:mappingkey',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3299 l[:] = [{"abcF" : FailingNumber()}]:TypeError:('long() argument must be a string or a number',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3300 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3301 >>> Testing StringToChars using l[:] = [Mapping({%s : 1})] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3302 l[:] = [Mapping({1 : 1})]:TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3303 l[:] = [Mapping({u"\0" : 1})]:TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3304 l[:] = [Mapping({"\0" : 1})]:TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3305 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3306 >>> Testing StringToChars using l[:] = [Mapping({"abcG" : {%s : 1}})] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3307 l[:] = [Mapping({"abcG" : {1 : 1}})]:TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3308 l[:] = [Mapping({"abcG" : {u"\0" : 1}})]:TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3309 l[:] = [Mapping({"abcG" : {"\0" : 1}})]:TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3310 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3311 >>> Testing StringToChars using l[:] = [Mapping({"abcG" : Mapping({%s : 1})})] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3312 l[:] = [Mapping({"abcG" : Mapping({1 : 1})})]:TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3313 l[:] = [Mapping({"abcG" : Mapping({u"\0" : 1})})]:TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3314 l[:] = [Mapping({"abcG" : Mapping({"\0" : 1})})]:TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3315 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3316 >>> Testing *Iter* using l[:] = [Mapping({"abcG" : %s})] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3317 l[:] = [Mapping({"abcG" : FailingIter()})]:TypeError:('unable to convert FailingIter to a Vim structure',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3318 l[:] = [Mapping({"abcG" : FailingIterNext()})]:NotImplementedError:('next',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3319 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3320 >>> Testing ConvertFromPyObject using l[:] = [Mapping({"abcG" : %s})] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3321 l[:] = [Mapping({"abcG" : None})]:NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3322 l[:] = [Mapping({"abcG" : {"": 1}})]:ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3323 l[:] = [Mapping({"abcG" : {u"": 1}})]:ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3324 l[:] = [Mapping({"abcG" : FailingMapping()})]:NotImplementedError:('keys',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3325 l[:] = [Mapping({"abcG" : FailingMappingKey()})]:NotImplementedError:('getitem:mappingkey',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3326 l[:] = [Mapping({"abcG" : FailingNumber()})]:TypeError:('long() argument must be a string or a number',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3327 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3328 >>> Testing *Iter* using l[:] = [%s] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3329 l[:] = [FailingIter()]:TypeError:('unable to convert FailingIter to a Vim structure',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3330 l[:] = [FailingIterNext()]:NotImplementedError:('next',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3331 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3332 >>> Testing ConvertFromPyObject using l[:] = [%s] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3333 l[:] = [None]:NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3334 l[:] = [{"": 1}]:ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3335 l[:] = [{u"": 1}]:ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3336 l[:] = [FailingMapping()]:NotImplementedError:('keys',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3337 l[:] = [FailingMappingKey()]:NotImplementedError:('getitem:mappingkey',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3338 l[:] = [FailingNumber()]:TypeError:('long() argument must be a string or a number',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3339 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3340 >> ListConcatInPlace |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3341 >>> Testing *Iter* using l.extend(%s) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3342 l.extend(FailingIter()):NotImplementedError:('iter',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3343 l.extend(FailingIterNext()):NotImplementedError:('next',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3344 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3345 >>> Testing StringToChars using l.extend([{%s : 1}]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3346 l.extend([{1 : 1}]):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3347 l.extend([{u"\0" : 1}]):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3348 l.extend([{"\0" : 1}]):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3349 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3350 >>> Testing StringToChars using l.extend([{"abcF" : {%s : 1}}]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3351 l.extend([{"abcF" : {1 : 1}}]):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3352 l.extend([{"abcF" : {u"\0" : 1}}]):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3353 l.extend([{"abcF" : {"\0" : 1}}]):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3354 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3355 >>> Testing StringToChars using l.extend([{"abcF" : Mapping({%s : 1})}]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3356 l.extend([{"abcF" : Mapping({1 : 1})}]):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3357 l.extend([{"abcF" : Mapping({u"\0" : 1})}]):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3358 l.extend([{"abcF" : Mapping({"\0" : 1})}]):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3359 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3360 >>> Testing *Iter* using l.extend([{"abcF" : %s}]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3361 l.extend([{"abcF" : FailingIter()}]):TypeError:('unable to convert FailingIter to a Vim structure',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3362 l.extend([{"abcF" : FailingIterNext()}]):NotImplementedError:('next',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3363 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3364 >>> Testing ConvertFromPyObject using l.extend([{"abcF" : %s}]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3365 l.extend([{"abcF" : None}]):NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3366 l.extend([{"abcF" : {"": 1}}]):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3367 l.extend([{"abcF" : {u"": 1}}]):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3368 l.extend([{"abcF" : FailingMapping()}]):NotImplementedError:('keys',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3369 l.extend([{"abcF" : FailingMappingKey()}]):NotImplementedError:('getitem:mappingkey',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3370 l.extend([{"abcF" : FailingNumber()}]):TypeError:('long() argument must be a string or a number',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3371 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3372 >>> Testing StringToChars using l.extend([Mapping({%s : 1})]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3373 l.extend([Mapping({1 : 1})]):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3374 l.extend([Mapping({u"\0" : 1})]):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3375 l.extend([Mapping({"\0" : 1})]):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3376 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3377 >>> Testing StringToChars using l.extend([Mapping({"abcG" : {%s : 1}})]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3378 l.extend([Mapping({"abcG" : {1 : 1}})]):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3379 l.extend([Mapping({"abcG" : {u"\0" : 1}})]):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3380 l.extend([Mapping({"abcG" : {"\0" : 1}})]):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3381 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3382 >>> Testing StringToChars using l.extend([Mapping({"abcG" : Mapping({%s : 1})})]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3383 l.extend([Mapping({"abcG" : Mapping({1 : 1})})]):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3384 l.extend([Mapping({"abcG" : Mapping({u"\0" : 1})})]):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3385 l.extend([Mapping({"abcG" : Mapping({"\0" : 1})})]):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3386 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3387 >>> Testing *Iter* using l.extend([Mapping({"abcG" : %s})]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3388 l.extend([Mapping({"abcG" : FailingIter()})]):TypeError:('unable to convert FailingIter to a Vim structure',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3389 l.extend([Mapping({"abcG" : FailingIterNext()})]):NotImplementedError:('next',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3390 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3391 >>> Testing ConvertFromPyObject using l.extend([Mapping({"abcG" : %s})]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3392 l.extend([Mapping({"abcG" : None})]):NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3393 l.extend([Mapping({"abcG" : {"": 1}})]):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3394 l.extend([Mapping({"abcG" : {u"": 1}})]):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3395 l.extend([Mapping({"abcG" : FailingMapping()})]):NotImplementedError:('keys',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3396 l.extend([Mapping({"abcG" : FailingMappingKey()})]):NotImplementedError:('getitem:mappingkey',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3397 l.extend([Mapping({"abcG" : FailingNumber()})]):TypeError:('long() argument must be a string or a number',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3398 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3399 >>> Testing *Iter* using l.extend([%s]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3400 l.extend([FailingIter()]):TypeError:('unable to convert FailingIter to a Vim structure',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3401 l.extend([FailingIterNext()]):NotImplementedError:('next',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3402 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3403 >>> Testing ConvertFromPyObject using l.extend([%s]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3404 l.extend([None]):NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3405 l.extend([{"": 1}]):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3406 l.extend([{u"": 1}]):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3407 l.extend([FailingMapping()]):NotImplementedError:('keys',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3408 l.extend([FailingMappingKey()]):NotImplementedError:('getitem:mappingkey',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3409 l.extend([FailingNumber()]):TypeError:('long() argument must be a string or a number',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3410 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3411 >> ListSetattr |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3412 del l.locked:AttributeError:('cannot delete vim.List attributes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3413 l.locked = FailingTrue():NotImplementedError:('bool',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3414 l.xxx = True:AttributeError:('cannot set attribute xxx',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3415 > Function |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3416 >> FunctionConstructor |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3417 >>> FunctionConstructor |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3418 vim.Function("123"):ValueError:('unnamed function 123 does not exist',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3419 vim.Function("xxx_non_existent_function_xxx"):ValueError:('function xxx_non_existent_function_xxx does not exist',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3420 vim.Function("xxx#non#existent#function#xxx"):NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3421 vim.Function("xxx_non_existent_function_xxx2", args=[]):ValueError:('function xxx_non_existent_function_xxx2 does not exist',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3422 vim.Function("xxx_non_existent_function_xxx3", self={}):ValueError:('function xxx_non_existent_function_xxx3 does not exist',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3423 vim.Function("xxx_non_existent_function_xxx4", args=[], self={}):ValueError:('function xxx_non_existent_function_xxx4 does not exist',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3424 >>> FunctionNew |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3425 vim.Function("tr", self="abcFuncSelf"):TypeError:('unable to convert str to a Vim dictionary',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3426 vim.Function("tr", args=427423):TypeError:('unable to convert int to a Vim list',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3427 vim.Function("tr", self="abcFuncSelf2", args="abcFuncArgs2"):TypeError:('unable to convert str to a Vim dictionary',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3428 vim.Function(self="abcFuncSelf2", args="abcFuncArgs2"):TypeError:('unable to convert str to a Vim dictionary',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3429 vim.Function("tr", "", self="abcFuncSelf2", args="abcFuncArgs2"):TypeError:('unable to convert str to a Vim dictionary',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3430 vim.Function("tr", ""):TypeError:('function takes exactly 1 argument (2 given)',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3431 >> FunctionCall |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3432 >>> Testing StringToChars using f({%s : 1}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3433 f({1 : 1}):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3434 f({u"\0" : 1}):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3435 f({"\0" : 1}):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3436 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3437 >>> Testing StringToChars using f({"abcF" : {%s : 1}}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3438 f({"abcF" : {1 : 1}}):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3439 f({"abcF" : {u"\0" : 1}}):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3440 f({"abcF" : {"\0" : 1}}):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3441 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3442 >>> Testing StringToChars using f({"abcF" : Mapping({%s : 1})}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3443 f({"abcF" : Mapping({1 : 1})}):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3444 f({"abcF" : Mapping({u"\0" : 1})}):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3445 f({"abcF" : Mapping({"\0" : 1})}):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3446 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3447 >>> Testing *Iter* using f({"abcF" : %s}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3448 f({"abcF" : FailingIter()}):TypeError:('unable to convert FailingIter to a Vim structure',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3449 f({"abcF" : FailingIterNext()}):NotImplementedError:('next',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3450 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3451 >>> Testing ConvertFromPyObject using f({"abcF" : %s}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3452 f({"abcF" : None}):NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3453 f({"abcF" : {"": 1}}):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3454 f({"abcF" : {u"": 1}}):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3455 f({"abcF" : FailingMapping()}):NotImplementedError:('keys',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3456 f({"abcF" : FailingMappingKey()}):NotImplementedError:('getitem:mappingkey',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3457 f({"abcF" : FailingNumber()}):TypeError:('long() argument must be a string or a number',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3458 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3459 >>> Testing StringToChars using f(Mapping({%s : 1})) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3460 f(Mapping({1 : 1})):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3461 f(Mapping({u"\0" : 1})):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3462 f(Mapping({"\0" : 1})):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3463 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3464 >>> Testing StringToChars using f(Mapping({"abcG" : {%s : 1}})) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3465 f(Mapping({"abcG" : {1 : 1}})):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3466 f(Mapping({"abcG" : {u"\0" : 1}})):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3467 f(Mapping({"abcG" : {"\0" : 1}})):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3468 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3469 >>> Testing StringToChars using f(Mapping({"abcG" : Mapping({%s : 1})})) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3470 f(Mapping({"abcG" : Mapping({1 : 1})})):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3471 f(Mapping({"abcG" : Mapping({u"\0" : 1})})):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3472 f(Mapping({"abcG" : Mapping({"\0" : 1})})):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3473 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3474 >>> Testing *Iter* using f(Mapping({"abcG" : %s})) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3475 f(Mapping({"abcG" : FailingIter()})):TypeError:('unable to convert FailingIter to a Vim structure',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3476 f(Mapping({"abcG" : FailingIterNext()})):NotImplementedError:('next',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3477 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3478 >>> Testing ConvertFromPyObject using f(Mapping({"abcG" : %s})) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3479 f(Mapping({"abcG" : None})):NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3480 f(Mapping({"abcG" : {"": 1}})):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3481 f(Mapping({"abcG" : {u"": 1}})):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3482 f(Mapping({"abcG" : FailingMapping()})):NotImplementedError:('keys',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3483 f(Mapping({"abcG" : FailingMappingKey()})):NotImplementedError:('getitem:mappingkey',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3484 f(Mapping({"abcG" : FailingNumber()})):TypeError:('long() argument must be a string or a number',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3485 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3486 >>> Testing *Iter* using f(%s) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3487 f(FailingIter()):TypeError:('unable to convert FailingIter to a Vim structure',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3488 f(FailingIterNext()):NotImplementedError:('next',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3489 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3490 >>> Testing ConvertFromPyObject using f(%s) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3491 f(None):NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3492 f({"": 1}):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3493 f({u"": 1}):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3494 f(FailingMapping()):NotImplementedError:('keys',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3495 f(FailingMappingKey()):NotImplementedError:('getitem:mappingkey',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3496 f(FailingNumber()):TypeError:('long() argument must be a string or a number',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3497 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3498 >>> Testing StringToChars using fd(self={%s : 1}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3499 fd(self={1 : 1}):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3500 fd(self={u"\0" : 1}):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3501 fd(self={"\0" : 1}):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3502 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3503 >>> Testing StringToChars using fd(self={"abcF" : {%s : 1}}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3504 fd(self={"abcF" : {1 : 1}}):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3505 fd(self={"abcF" : {u"\0" : 1}}):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3506 fd(self={"abcF" : {"\0" : 1}}):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3507 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3508 >>> Testing StringToChars using fd(self={"abcF" : Mapping({%s : 1})}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3509 fd(self={"abcF" : Mapping({1 : 1})}):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3510 fd(self={"abcF" : Mapping({u"\0" : 1})}):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3511 fd(self={"abcF" : Mapping({"\0" : 1})}):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3512 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3513 >>> Testing *Iter* using fd(self={"abcF" : %s}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3514 fd(self={"abcF" : FailingIter()}):TypeError:('unable to convert FailingIter to a Vim structure',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3515 fd(self={"abcF" : FailingIterNext()}):NotImplementedError:('next',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3516 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3517 >>> Testing ConvertFromPyObject using fd(self={"abcF" : %s}) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3518 fd(self={"abcF" : None}):NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3519 fd(self={"abcF" : {"": 1}}):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3520 fd(self={"abcF" : {u"": 1}}):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3521 fd(self={"abcF" : FailingMapping()}):NotImplementedError:('keys',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3522 fd(self={"abcF" : FailingMappingKey()}):NotImplementedError:('getitem:mappingkey',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3523 fd(self={"abcF" : FailingNumber()}):TypeError:('long() argument must be a string or a number',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3524 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3525 >>> Testing StringToChars using fd(self=Mapping({%s : 1})) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3526 fd(self=Mapping({1 : 1})):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3527 fd(self=Mapping({u"\0" : 1})):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3528 fd(self=Mapping({"\0" : 1})):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3529 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3530 >>> Testing StringToChars using fd(self=Mapping({"abcG" : {%s : 1}})) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3531 fd(self=Mapping({"abcG" : {1 : 1}})):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3532 fd(self=Mapping({"abcG" : {u"\0" : 1}})):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3533 fd(self=Mapping({"abcG" : {"\0" : 1}})):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3534 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3535 >>> Testing StringToChars using fd(self=Mapping({"abcG" : Mapping({%s : 1})})) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3536 fd(self=Mapping({"abcG" : Mapping({1 : 1})})):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3537 fd(self=Mapping({"abcG" : Mapping({u"\0" : 1})})):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3538 fd(self=Mapping({"abcG" : Mapping({"\0" : 1})})):TypeError:('expected string without null bytes',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3539 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3540 >>> Testing *Iter* using fd(self=Mapping({"abcG" : %s})) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3541 fd(self=Mapping({"abcG" : FailingIter()})):TypeError:('unable to convert FailingIter to a Vim structure',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3542 fd(self=Mapping({"abcG" : FailingIterNext()})):NotImplementedError:('next',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3543 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3544 >>> Testing ConvertFromPyObject using fd(self=Mapping({"abcG" : %s})) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3545 fd(self=Mapping({"abcG" : None})):NOT FAILED |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3546 fd(self=Mapping({"abcG" : {"": 1}})):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3547 fd(self=Mapping({"abcG" : {u"": 1}})):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3548 fd(self=Mapping({"abcG" : FailingMapping()})):NotImplementedError:('keys',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3549 fd(self=Mapping({"abcG" : FailingMappingKey()})):NotImplementedError:('getitem:mappingkey',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3550 fd(self=Mapping({"abcG" : FailingNumber()})):TypeError:('long() argument must be a string or a number',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3551 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3552 >>> Testing *Iter* using fd(self=%s) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3553 fd(self=FailingIter()):TypeError:('unable to convert FailingIter to a Vim dictionary',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3554 fd(self=FailingIterNext()):TypeError:('unable to convert FailingIterNext to a Vim dictionary',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3555 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3556 >>> Testing ConvertFromPyObject using fd(self=%s) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3557 fd(self=None):TypeError:('unable to convert NoneType to a Vim dictionary',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3558 fd(self={"": 1}):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3559 fd(self={u"": 1}):ValueError:('empty keys are not allowed',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3560 fd(self=FailingMapping()):NotImplementedError:('keys',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3561 fd(self=FailingMappingKey()):NotImplementedError:('getitem:mappingkey',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3562 fd(self=FailingNumber()):TypeError:('unable to convert FailingNumber to a Vim dictionary',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3563 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3564 >>> Testing ConvertFromPyMapping using fd(self=%s) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3565 fd(self=[]):TypeError:('unable to convert list to a Vim dictionary',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3566 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3567 > TabPage |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3568 >> TabPageAttr |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3569 vim.current.tabpage.xxx:AttributeError:('xxx',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3570 > TabList |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3571 >> TabListItem |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3572 vim.tabpages[1000]:IndexError:('no such tab page',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3573 > Window |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3574 >> WindowAttr |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3575 vim.current.window.xxx:AttributeError:('xxx',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3576 >> WindowSetattr |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3577 vim.current.window.buffer = 0:TypeError:('readonly attribute: buffer',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3578 vim.current.window.cursor = (100000000, 100000000):error:('cursor position outside buffer',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3579 vim.current.window.cursor = True:TypeError:('argument must be 2-item sequence, not bool',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3580 >>> Testing NumberToLong using vim.current.window.height = %s |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3581 vim.current.window.height = []:TypeError:('expected int(), long() or something supporting coercing to long(), but got list',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3582 vim.current.window.height = None:TypeError:('expected int(), long() or something supporting coercing to long(), but got NoneType',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3583 vim.current.window.height = -1:ValueError:('number must be greater or equal to zero',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3584 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3585 >>> Testing NumberToLong using vim.current.window.width = %s |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3586 vim.current.window.width = []:TypeError:('expected int(), long() or something supporting coercing to long(), but got list',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3587 vim.current.window.width = None:TypeError:('expected int(), long() or something supporting coercing to long(), but got NoneType',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3588 vim.current.window.width = -1:ValueError:('number must be greater or equal to zero',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3589 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3590 vim.current.window.xxxxxx = True:AttributeError:('xxxxxx',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3591 > WinList |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3592 >> WinListItem |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3593 vim.windows[1000]:IndexError:('no such window',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3594 > Buffer |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3595 >> StringToLine (indirect) |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
3596 vim.current.buffer[0] = "\na":error:('string cannot contain newlines',) |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3597 vim.current.buffer[0] = u"\na":error:('string cannot contain newlines',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3598 >> SetBufferLine (indirect) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3599 vim.current.buffer[0] = True:TypeError:('bad argument type for built-in operation',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3600 >> SetBufferLineList (indirect) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3601 vim.current.buffer[:] = True:TypeError:('bad argument type for built-in operation',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3602 vim.current.buffer[:] = ["\na", "bc"]:error:('string cannot contain newlines',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3603 >> InsertBufferLines (indirect) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3604 vim.current.buffer.append(None):TypeError:('bad argument type for built-in operation',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3605 vim.current.buffer.append(["\na", "bc"]):error:('string cannot contain newlines',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3606 vim.current.buffer.append("\nbc"):error:('string cannot contain newlines',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3607 >> RBItem |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3608 vim.current.buffer[100000000]:IndexError:('line number out of range',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3609 >> RBAsItem |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3610 vim.current.buffer[100000000] = "":IndexError:('line number out of range',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3611 >> BufferAttr |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3612 vim.current.buffer.xxx:AttributeError:('xxx',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3613 >> BufferSetattr |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3614 vim.current.buffer.name = True:TypeError:('expected str() or unicode() instance, but got bool',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3615 vim.current.buffer.xxx = True:AttributeError:('xxx',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3616 >> BufferMark |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3617 vim.current.buffer.mark(0):TypeError:('expected str() or unicode() instance, but got int',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3618 vim.current.buffer.mark("abcM"):ValueError:('mark name must be a single character',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3619 vim.current.buffer.mark("!"):error:('invalid mark name',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3620 >> BufferRange |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3621 vim.current.buffer.range(1, 2, 3):TypeError:('function takes exactly 2 arguments (3 given)',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3622 > BufMap |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3623 >> BufMapItem |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3624 vim.buffers[100000000]:KeyError:(100000000,) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3625 >>> Testing NumberToLong using vim.buffers[%s] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3626 vim.buffers[[]]:TypeError:('expected int(), long() or something supporting coercing to long(), but got list',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3627 vim.buffers[None]:TypeError:('expected int(), long() or something supporting coercing to long(), but got NoneType',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3628 vim.buffers[-1]:ValueError:('number must be greater than zero',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3629 vim.buffers[0]:ValueError:('number must be greater than zero',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3630 <<< Finished |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3631 > Current |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3632 >> CurrentGetattr |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3633 vim.current.xxx:AttributeError:('xxx',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3634 >> CurrentSetattr |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3635 vim.current.line = True:TypeError:('bad argument type for built-in operation',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3636 vim.current.buffer = True:TypeError:('expected vim.Buffer object, but got bool',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3637 vim.current.window = True:TypeError:('expected vim.Window object, but got bool',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3638 vim.current.tabpage = True:TypeError:('expected vim.TabPage object, but got bool',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3639 vim.current.xxx = True:AttributeError:('xxx',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3640 END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3641 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3642 call assert_equal(expected, getline(2, '$')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3643 close! |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3644 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3645 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3646 " Test import |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3647 func Test_python_import() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3648 new |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3649 py cb = vim.current.buffer |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3650 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3651 py << trim EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3652 sys.path.insert(0, os.path.join(os.getcwd(), 'python_before')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3653 sys.path.append(os.path.join(os.getcwd(), 'python_after')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3654 vim.options['rtp'] = os.getcwd().replace(',', '\\,').replace('\\', '\\\\') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3655 l = [] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3656 def callback(path): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3657 l.append(path[-len('/testdir'):].replace(os.path.sep, '/')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3658 vim.foreach_rtp(callback) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3659 cb.append(repr(l)) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3660 del l |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3661 def callback(path): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3662 return path[-len('/testdir'):].replace(os.path.sep, '/') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3663 cb.append(repr(vim.foreach_rtp(callback))) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3664 del callback |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3665 from module import dir as d |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3666 from modulex import ddir |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3667 cb.append(d + ',' + ddir) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3668 import before |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3669 cb.append(before.dir) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3670 import after |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3671 cb.append(after.dir) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3672 import topmodule as tm |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3673 import topmodule.submodule as tms |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3674 import topmodule.submodule.subsubmodule.subsubsubmodule as tmsss |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3675 cb.append(tm.__file__.replace('.pyc', '.py').replace(os.path.sep, '/')[-len('modulex/topmodule/__init__.py'):]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3676 cb.append(tms.__file__.replace('.pyc', '.py').replace(os.path.sep, '/')[-len('modulex/topmodule/submodule/__init__.py'):]) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3677 cb.append(tmsss.__file__.replace('.pyc', '.py').replace(os.path.sep, '/')[-len('modulex/topmodule/submodule/subsubmodule/subsubsubmodule.py'):]) |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
3678 |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3679 del before |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3680 del after |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3681 del d |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3682 del ddir |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3683 del tm |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3684 del tms |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3685 del tmsss |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3686 EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3687 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3688 let expected =<< trim END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3689 ['/testdir'] |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3690 '/testdir' |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3691 2,xx |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3692 before |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3693 after |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3694 pythonx/topmodule/__init__.py |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3695 pythonx/topmodule/submodule/__init__.py |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3696 pythonx/topmodule/submodule/subsubmodule/subsubsubmodule.py |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3697 END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3698 call assert_equal(expected, getline(2, '$')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3699 close! |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
3700 |
23229
b545334ae654
patch 8.2.2160: various typos
Bram Moolenaar <Bram@vim.org>
parents:
22806
diff
changeset
|
3701 " Try to import a non-existing module with a dot (.) |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
3702 call AssertException(['py import a.b.c'], 'ImportError:') |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3703 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3704 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3705 " Test exceptions |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3706 func Test_python_exception() |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
3707 func Exe(e) |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3708 execute a:e |
21190
10eb6c38938c
patch 8.2.1146: not enough testing for Python
Bram Moolenaar <Bram@vim.org>
parents:
21144
diff
changeset
|
3709 endfunc |
21138
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3710 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3711 new |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3712 py cb = vim.current.buffer |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3713 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3714 py << trim EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3715 Exe = vim.bindeval('function("Exe")') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3716 ee('vim.command("throw \'abcN\'")') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3717 ee('Exe("throw \'def\'")') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3718 ee('vim.eval("Exe(\'throw \'\'ghi\'\'\')")') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3719 ee('vim.eval("Exe(\'echoerr \'\'jkl\'\'\')")') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3720 ee('vim.eval("Exe(\'xxx_non_existent_command_xxx\')")') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3721 ee('vim.eval("xxx_unknown_function_xxx()")') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3722 ee('vim.bindeval("Exe(\'xxx_non_existent_command_xxx\')")') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3723 del Exe |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3724 EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3725 delfunction Exe |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3726 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3727 let expected =<< trim END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3728 vim.command("throw 'abcN'"):error:('abcN',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3729 Exe("throw 'def'"):error:('def',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3730 vim.eval("Exe('throw ''ghi''')"):error:('ghi',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3731 vim.eval("Exe('echoerr ''jkl''')"):error:('Vim(echoerr):jkl',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3732 vim.eval("Exe('xxx_non_existent_command_xxx')"):error:('Vim:E492: Not an editor command: xxx_non_existent_command_xxx',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3733 vim.eval("xxx_unknown_function_xxx()"):error:('Vim:E117: Unknown function: xxx_unknown_function_xxx',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3734 vim.bindeval("Exe('xxx_non_existent_command_xxx')"):error:('Vim:E492: Not an editor command: xxx_non_existent_command_xxx',) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3735 END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3736 call assert_equal(expected, getline(2, '$')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3737 close! |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3738 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3739 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3740 " Regression: interrupting vim.command propagates to next vim.command |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3741 func Test_python_keyboard_interrupt() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3742 new |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3743 py cb = vim.current.buffer |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3744 py << trim EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3745 def test_keyboard_interrupt(): |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3746 try: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3747 vim.command('while 1 | endwhile') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3748 except KeyboardInterrupt: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3749 cb.append('Caught KeyboardInterrupt') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3750 except Exception: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3751 cb.append('!!!!!!!! Caught exception: ' + emsg(sys.exc_info())) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3752 else: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3753 cb.append('!!!!!!!! No exception') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3754 try: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3755 vim.command('$ put =\'Running :put\'') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3756 except KeyboardInterrupt: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3757 cb.append('!!!!!!!! Caught KeyboardInterrupt') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3758 except Exception: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3759 cb.append('!!!!!!!! Caught exception: ' + emsg(sys.exc_info())) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3760 else: |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3761 cb.append('No exception') |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3762 EOF |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3763 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3764 debuggreedy |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3765 call inputsave() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3766 call feedkeys("s\ns\ns\ns\nq\n") |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3767 redir => output |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3768 debug silent! py test_keyboard_interrupt() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3769 redir END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3770 0 debuggreedy |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3771 call inputrestore() |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3772 py del test_keyboard_interrupt |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3773 |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3774 let expected =<< trim END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3775 Caught KeyboardInterrupt |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3776 Running :put |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3777 No exception |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3778 END |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3779 call assert_equal(expected, getline(2, '$')) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3780 call assert_equal('', output) |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3781 close! |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3782 endfunc |
c2cbe6cc7620
patch 8.2.1120: Python code not tested properly
Bram Moolenaar <Bram@vim.org>
parents:
20233
diff
changeset
|
3783 |
23264
f9526a3c9bbf
patch 8.2.2178: Python 3: non-utf8 character cannot be handled
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
3784 func Test_python_non_utf8_string() |
f9526a3c9bbf
patch 8.2.2178: Python 3: non-utf8 character cannot be handled
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
3785 smap <Esc>@ <A-@> |
f9526a3c9bbf
patch 8.2.2178: Python 3: non-utf8 character cannot be handled
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
3786 python vim.command('redir => _tmp_smaps | smap | redir END') |
f9526a3c9bbf
patch 8.2.2178: Python 3: non-utf8 character cannot be handled
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
3787 python vim.eval('_tmp_smaps').splitlines() |
f9526a3c9bbf
patch 8.2.2178: Python 3: non-utf8 character cannot be handled
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
3788 sunmap <Esc>@ |
f9526a3c9bbf
patch 8.2.2178: Python 3: non-utf8 character cannot be handled
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
3789 endfunc |
f9526a3c9bbf
patch 8.2.2178: Python 3: non-utf8 character cannot be handled
Bram Moolenaar <Bram@vim.org>
parents:
23229
diff
changeset
|
3790 |
20045
04ef2ccf2519
patch 8.2.0578: heredoc for interfaces does not support "trim"
Bram Moolenaar <Bram@vim.org>
parents:
18870
diff
changeset
|
3791 " vim: shiftwidth=2 sts=2 expandtab |