Bram Moolenaar | 02113ed | 2017-08-06 17:06:24 +0200 | [diff] [blame] | 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 |