diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-05-21 22:23:56 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-05-21 22:23:56 +0200 |
commit | 2a0f3d3fb2a7e26d47810098894f8e615571afe3 (patch) | |
tree | e402ca98134661b2a3f133083adf18bdc66151b6 /src/if_python3.c | |
parent | 0b9aecc3a5020a3f3714bf4e58046321b46632fb (diff) | |
download | vim-git-2a0f3d3fb2a7e26d47810098894f8e615571afe3.tar.gz |
updated for version 7.3.1003v7.3.1003
Problem: Python interface does not compile with Python 2.2
Solution: Fix thread issues and True/False. (ZyX)
Diffstat (limited to 'src/if_python3.c')
-rw-r--r-- | src/if_python3.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/if_python3.c b/src/if_python3.c index b6507bb77..2ae876ecf 100644 --- a/src/if_python3.c +++ b/src/if_python3.c @@ -693,6 +693,8 @@ static PyObject *FunctionGetattro(PyObject *, PyObject *); static struct PyModuleDef vimmodule; +#define PY_CAN_RECURSE + /* * Include the code shared with if_python.c */ |