summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-01-01 17:44:56 +0100
committerBram Moolenaar <Bram@vim.org>2020-01-01 17:44:56 +0100
commit955f4e6f36ea009b90803d12a62108c94f446778 (patch)
treeaea97898f67658c0ccaddc4978558f010b8ce956
parent2466aea508f22d44099d54ed6d15c0a1d90f8d6e (diff)
patch 8.2.0076: Python 3 unicode test fails on MS-Windowsv8.2.0076
Problem: Python 3 unicode test fails on MS-Windows. Solution: Do not set 'encoding' to "debug" on MS-Windows.
-rw-r--r--src/testdir/test_python3.vim6
-rw-r--r--src/version.c2
2 files changed, 6 insertions, 2 deletions
diff --git a/src/testdir/test_python3.vim b/src/testdir/test_python3.vim
index f722edca55..4cb5094567 100644
--- 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')
diff --git a/src/version.c b/src/version.c
index 16544f7ea9..263ffb0125 100644
--- 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,