comparison src/testdir/if_ver-2.vim @ 11999:94e37fd22556 v8.0.0880

patch 8.0.0880: Travis uses an old Ubuntu version commit https://github.com/vim/vim/commit/02113ed4dfa585b4553a7c630b4d7eed0002aebd Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 6 17:06:24 2017 +0200 patch 8.0.0880: Travis uses an old Ubuntu version Problem: Travis uses an old Ubuntu version. Solution: Switch from precise to trusty. (Ken Takata, closes https://github.com/vim/vim/issues/1897)
author Christian Brabandt <cb@256bit.org>
date Sun, 06 Aug 2017 17:15:04 +0200
parents
children
comparison
equal deleted inserted replaced
11998:e2b3a7cf5504 11999:94e37fd22556
1 " Print py3 interface version and write the result into if_ver.txt.
2 " For Ubuntu. Part 2.
3
4 redir! >> if_ver.txt
5 if 1
6 echo "\nPython 3:"
7 python3 import sys; print(sys.version)
8 echo "\n"
9 endif
10 redir END