view src/testdir/if_ver-2.vim @ 18562:ecbe15ce5918 v8.1.2275

patch 8.1.2275: using "seesion" looks like a mistake Commit: https://github.com/vim/vim/commit/1e15e61188e14ba67060c09d4c74e9b587016230 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Nov 9 17:18:52 2019 +0100 patch 8.1.2275: using "seesion" looks like a mistake Problem: Using "seesion" looks like a mistake. Solution: Use an underscore to make the function sort first.
author Bram Moolenaar <Bram@vim.org>
date Sat, 09 Nov 2019 17:30:04 +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