view src/testdir/if_ver-2.vim @ 17222:7fcb78851cde

Added tag v8.1.1610 for changeset a8fc7d97b54dc1a93bd17082d522e5e759b4b7a8
author Bram Moolenaar <Bram@vim.org>
date Sun, 30 Jun 2019 20:30:06 +0200
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