From 8f288698e4730f6cc91240fe899e93921aff9d71 Mon Sep 17 00:00:00 2001 From: David Jimenez Date: Wed, 2 Jan 2019 13:51:03 +0000 Subject: vim-patch:8.0.0251: not easy to select Python 2 or 3 (#9173) Problem: It is not so easy to write a script that works with both Python 2 and Python 3, even when the Python code works with both. Solution: Add 'pyxversion', :pyx, etc. (Marc Weber, Ken Takata) https://github.com/vim/vim/commit/f42dd3c3901ea0ba38e67a616aea9953cae81b8d --- src/nvim/testdir/pyxfile/py3_shebang.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/nvim/testdir/pyxfile/py3_shebang.py (limited to 'src/nvim/testdir/pyxfile/py3_shebang.py') diff --git a/src/nvim/testdir/pyxfile/py3_shebang.py b/src/nvim/testdir/pyxfile/py3_shebang.py new file mode 100644 index 0000000000..ec05808ca4 --- /dev/null +++ b/src/nvim/testdir/pyxfile/py3_shebang.py @@ -0,0 +1,4 @@ +#!/usr/bin/python3 + +import sys +print(sys.version) -- cgit