changeset 19031:9cad3d0c34b3 v8.2.0076

patch 8.2.0076: Python 3 unicode test fails on MS-Windows Commit: https://github.com/vim/vim/commit/955f4e6f36ea009b90803d12a62108c94f446778 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jan 1 17:44:56 2020 +0100 patch 8.2.0076: Python 3 unicode test fails on MS-Windows Problem: Python 3 unicode test fails on MS-Windows. Solution: Do not set 'encoding' to "debug" on MS-Windows.
author Bram Moolenaar <Bram@vim.org>
date Wed, 01 Jan 2020 18:00:04 +0100
parents c413e5c05588
children 02dcaab77547
files src/testdir/test_python3.vim src/version.c
diffstat 2 files changed, 6 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/test_python3.vim
+++ b/src/testdir/test_python3.vim
@@ -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')
--- 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 */
 /**/
+    76,
+/**/
     75,
 /**/
     74,