vim-patch:8.2.0079: test still fails on MS-Windows #11663

Problem:    Python 3 unicode test still fails on MS-Windows.
Solution:   Do not set 'encoding' to "euc-tw" on MS-Windows.
7fc4785ea1
This commit is contained in:
Jan Edmund Lazo 2020-01-03 07:13:45 -05:00 committed by Justin M. Keyes
parent 77b61cb0df
commit 94cc8a20b4

View File

@ -185,10 +185,10 @@ func Test_unicode()
if !has('win32')
set encoding=debug
py3 print('hello')
endif
set encoding=euc-tw
py3 print('hello')
set encoding=euc-tw
py3 print('hello')
endif
set encoding=utf8
endfunc