diff src/evalfunc.c @ 13123:aaead5b4d77d v8.0.1436

patch 8.0.1436: not enough information about what Python version may work commit https://github.com/vim/vim/commit/84b242c369a22b581c43de9de0152f0baedd71ab Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 28 17:45:49 2018 +0100 patch 8.0.1436: not enough information about what Python version may work Problem: Not enough information about what Python version may work. Solution: Add "python_compiled", "python3_compiled", "python_dynamic" and "python3_dynamic" values for has().
author Christian Brabandt <cb@256bit.org>
date Sun, 28 Jan 2018 18:00:06 +0100
parents 9b3f8029a326
children a80490493c6b
line wrap: on
line diff
--- a/src/evalfunc.c
+++ b/src/evalfunc.c
@@ -5916,13 +5916,23 @@ f_has(typval_T *argvars, typval_T *rettv
 #ifdef FEAT_PERSISTENT_UNDO
 	"persistent_undo",
 #endif
-#if defined(FEAT_PYTHON) && !defined(DYNAMIC_PYTHON)
+#if defined(FEAT_PYTHON)
+	"python_compiled",
+# if defined(DYNAMIC_PYTHON)
+	"python_dynamic",
+# else
 	"python",
 	"pythonx",
-#endif
-#if defined(FEAT_PYTHON3) && !defined(DYNAMIC_PYTHON3)
+# endif
+#endif
+#if defined(FEAT_PYTHON3)
+	"python3_compiled",
+# if defined(DYNAMIC_PYTHON3)
+	"python3_dynamic",
+# else
 	"python3",
 	"pythonx",
+# endif
 #endif
 #ifdef FEAT_POSTSCRIPT
 	"postscript",