Skip to content

Commit 955f4e6

Browse files
committed
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.
1 parent 2466aea commit 955f4e6

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

src/testdir/test_python3.vim

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,10 @@ func Test_unicode()
177177
set encoding=utf32
178178
py3 print('hello')
179179

180-
set encoding=debug
181-
py3 print('hello')
180+
if !has('win32')
181+
set encoding=debug
182+
py3 print('hello')
183+
endif
182184

183185
set encoding=euc-tw
184186
py3 print('hello')

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -742,6 +742,8 @@ static char *(features[]) =
742742

743743
static int included_patches[] =
744744
{ /* Add new patch number below this line */
745+
/**/
746+
76,
745747
/**/
746748
75,
747749
/**/

0 commit comments

Comments
 (0)