# HG changeset patch # User Bram Moolenaar # Date 1577979903 -3600 # Node ID 9bb2a4f6296af75ca833ecd3b66c6c20474d3774 # Parent dc1c53fdfb4eb19009206144c6976616c5c94e39 patch 8.2.0079: Python 3 unicode test still fails on MS-Windows Commit: https://github.com/vim/vim/commit/7fc4785ea19306b7e94beb61f226cf40c32b1aba Author: Bram Moolenaar Date: Thu Jan 2 16:38:07 2020 +0100 patch 8.2.0079: Python 3 unicode test still fails on MS-Windows Problem: Python 3 unicode test still fails on MS-Windows. Solution: Do not set 'encoding' to "euc-tw" on MS-Windows. diff --git a/src/testdir/test_python3.vim b/src/testdir/test_python3.vim --- a/src/testdir/test_python3.vim +++ b/src/testdir/test_python3.vim @@ -180,10 +180,10 @@ func Test_unicode() if !has('win32') set encoding=debug py3 print('hello') + + set encoding=euc-tw + py3 print('hello') endif - set encoding=euc-tw - py3 print('hello') - set encoding=utf8 endfunc diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -743,6 +743,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 79, +/**/ 78, /**/ 77,