view src/testdir/if_ver-2.vim @ 13881:a0cf2482b430

Added tag v8.0.1811 for changeset 60e80884994d22b5cc2ff51af6299dd9f69301d8
author Christian Brabandt <cb@256bit.org>
date Thu, 10 May 2018 18: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