Skip to content

Commit

Permalink
patch 8.2.4396: Python3 test fails
Browse files Browse the repository at this point in the history
Problem:    Python3 test fails.
Solution:   Remove "let".
  • Loading branch information
brammool committed Feb 15, 2022
1 parent 8b716f5 commit f5288c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/testdir/test_vim9_func.vim
Expand Up @@ -3766,7 +3766,7 @@ enddef
if has('python3')
def Test_python3_command()
py3 import vim
py3 vim.command("let g:done = 'yes'")
py3 vim.command("g:done = 'yes'")
assert_equal('yes', g:done)
unlet g:done
enddef
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -750,6 +750,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
4396,
/**/
4395,
/**/
Expand Down

0 comments on commit f5288c5

Please sign in to comment.