# HG changeset patch # User Bram Moolenaar # Date 1644961503 -3600 # Node ID 2bd27d5ffbef495ad6bcf10a77be7c4069e6b020 # Parent 0c41599193bff5589667d3ccf48efa24e9303d07 patch 8.2.4396: Python3 test fails Commit: https://github.com/vim/vim/commit/f5288c589500de0677444af4a428cfbccfccb8ce Author: Bram Moolenaar Date: Tue Feb 15 21:33:29 2022 +0000 patch 8.2.4396: Python3 test fails Problem: Python3 test fails. Solution: Remove "let". diff --git a/src/testdir/test_vim9_func.vim b/src/testdir/test_vim9_func.vim --- a/src/testdir/test_vim9_func.vim +++ b/src/testdir/test_vim9_func.vim @@ -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 diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 4396, +/**/ 4395, /**/ 4394,