]> granicus.if.org Git - vim/commitdiff
patch 8.2.0076: Python 3 unicode test fails on MS-Windows v8.2.0076
authorBram Moolenaar <Bram@vim.org>
Wed, 1 Jan 2020 16:44:56 +0000 (17:44 +0100)
committerBram Moolenaar <Bram@vim.org>
Wed, 1 Jan 2020 16:44:56 +0000 (17:44 +0100)
Problem:    Python 3 unicode test fails on MS-Windows.
Solution:   Do not set 'encoding' to "debug" on MS-Windows.

src/testdir/test_python3.vim
src/version.c

index f722edca55e04f5e5d2e8be3f17c3a65fa4c60b5..4cb50945678dda9734f2f463c6de5911ae667d4d 100644 (file)
@@ -177,8 +177,10 @@ func Test_unicode()
   set encoding=utf32
   py3 print('hello')
 
-  set encoding=debug
-  py3 print('hello')
+  if !has('win32')
+    set encoding=debug
+    py3 print('hello')
+  endif
 
   set encoding=euc-tw
   py3 print('hello')
index 16544f7ea9b9857d32b91dfe367458a9195cecac..263ffb012580d6c0b9d0d14a7d47aa4b812749cf 100644 (file)
@@ -742,6 +742,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    76,
 /**/
     75,
 /**/