diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-08-06 17:06:24 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-08-06 17:06:24 +0200 |
commit | 02113ed4dfa585b4553a7c630b4d7eed0002aebd (patch) | |
tree | 9b6f90ba84fd33af726738b844c68936941417e1 /src/testdir/if_ver-2.vim | |
parent | bae5a17a738d1a3b5c51d9aa5d99e228d3911955 (diff) | |
download | vim-git-02113ed4dfa585b4553a7c630b4d7eed0002aebd.tar.gz |
patch 8.0.0880: Travis uses an old Ubuntu versionv8.0.0880
Problem: Travis uses an old Ubuntu version.
Solution: Switch from precise to trusty. (Ken Takata, closes #1897)
Diffstat (limited to 'src/testdir/if_ver-2.vim')
-rw-r--r-- | src/testdir/if_ver-2.vim | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/testdir/if_ver-2.vim b/src/testdir/if_ver-2.vim new file mode 100644 index 000000000..a6fedb569 --- /dev/null +++ b/src/testdir/if_ver-2.vim @@ -0,0 +1,10 @@ +" 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 |