Mercurial > vim
view src/testdir/if_ver-2.vim @ 15603:639b8318472c v8.1.0809
patch 8.1.0809: too many #ifdefs
commit https://github.com/vim/vim/commit/a12a161b8ce09d024ed71c2134149fa323f8ee8e
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Jan 24 16:39:02 2019 +0100
patch 8.1.0809: too many #ifdefs
Problem: Too many #ifdefs.
Solution: Graduate FEAT_MBYTE, part 3.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 24 Jan 2019 16:45:06 +0100 |
parents | 94e37fd22556 |
children |
line wrap: on
line source
" Print py3 interface version and write the result into if_ver.txt. " For Ubuntu. Part 2. redir! >> if_ver.txt if 1 echo "\nPython 3:" python3 import sys; print(sys.version) echo "\n" endif redir END