view src/testdir/if_ver-2.vim @ 18211:a493ab8e57ab v8.1.2100

patch 8.1.2100: :mksession is not sufficiently tested Commit: https://github.com/vim/vim/commit/ee1a2b5a2a44dde9b4e9b34141b4d1c7b0e0513f Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 29 14:23:39 2019 +0200 patch 8.1.2100: :mksession is not sufficiently tested Problem: :mksession is not sufficiently tested. Solution: Add more test cases. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/4993)
author Bram Moolenaar <Bram@vim.org>
date Sun, 29 Sep 2019 14:30:04 +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