view src/testdir/if_ver-2.vim @ 15754:e16dc16dc927 v8.1.0884

patch 8.1.0884: double check for bsd systems commit https://github.com/vim/vim/commit/af630d4f7f8daa7edbda0b607d32d39a5feae9d9 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Feb 8 23:09:48 2019 +0100 patch 8.1.0884: double check for bsd systems Problem: Double check for bsd systems. Solution: Delete the old line.
author Bram Moolenaar <Bram@vim.org>
date Fri, 08 Feb 2019 23:15:08 +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