From: Bram Moolenaar Date: Thu, 2 Jan 2020 15:38:07 +0000 (+0100) Subject: patch 8.2.0079: Python 3 unicode test still fails on MS-Windows X-Git-Tag: v8.2.0079 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7fc4785ea19306b7e94beb61f226cf40c32b1aba;p=thirdparty%2Fvim.git 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 index 4cb5094567..aec7721af3 100644 --- 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') - endif - set encoding=euc-tw - py3 print('hello') + set encoding=euc-tw + py3 print('hello') + endif set encoding=utf8 endfunc diff --git a/src/version.c b/src/version.c index 4516eb71bc..052b6341e1 100644 --- a/src/version.c +++ b/src/version.c @@ -742,6 +742,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 79, /**/ 78, /**/