view src/testdir/if_ver-2.vim @ 17684:e2bfdd281578 v8.1.1839

patch 8.1.1839: insufficient info when test fails because of screen size commit https://github.com/vim/vim/commit/0b5dc644465c549ac54fe3c4ad232dd692000d26 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 11 22:56:15 2019 +0200 patch 8.1.1839: insufficient info when test fails because of screen size Problem: Insufficient info when test fails because of screen size. Solution: Report the detected screen size.
author Bram Moolenaar <Bram@vim.org>
date Sun, 11 Aug 2019 23:00:09 +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