mirror of
https://github.com/neovim/neovim.git
synced 2025-10-06 18:06:30 +00:00
vim-patch:8.2.0074: Python 3 unicode test someitmes fails
Problem: Python 3 unicode test someitmes fails.
Solution: Make 'termencoding' empty. Correct number of error message.
4b7cdca230
This commit is contained in:
@@ -174,13 +174,20 @@ func Test_Catch_Exception_Message()
|
||||
endfunc
|
||||
|
||||
func Test_unicode()
|
||||
throw 'skipped: Nvim only supports "utf-8" for "encoding" option'
|
||||
throw 'skipped: Nvim does not support "termencoding" option and only supports "utf-8" for "encoding" option'
|
||||
" this crashed Vim once
|
||||
let save_tenc = &tenc
|
||||
set tenc=
|
||||
|
||||
set encoding=utf32
|
||||
py3 print('hello')
|
||||
|
||||
set encoding=debug
|
||||
py3 print('hello')
|
||||
|
||||
set encoding=euc-tw
|
||||
py3 print('hello')
|
||||
|
||||
set encoding=utf8
|
||||
let &tenc = save_tenc
|
||||
endfunc
|
||||
|
Reference in New Issue
Block a user