0
0
mirror of https://github.com/vim/vim.git synced 2025-10-06 05:44:14 -04:00

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().
This commit is contained in:
Bram Moolenaar
2018-01-28 17:45:49 +01:00
parent 501383236d
commit 84b242c369
3 changed files with 20 additions and 4 deletions

View File

@@ -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
#endif
#if defined(FEAT_PYTHON3) && !defined(DYNAMIC_PYTHON3)
#if defined(FEAT_PYTHON3)
"python3_compiled",
# if defined(DYNAMIC_PYTHON3)
"python3_dynamic",
# else
"python3",
"pythonx",
# endif
#endif
#ifdef FEAT_POSTSCRIPT
"postscript",

View File

@@ -771,6 +771,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1436,
/**/
1435,
/**/