diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-05-21 18:30:34 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-05-21 18:30:34 +0200 |
commit | d6e391862c58d7c7494b8c4cc65a4b745d7eafe1 (patch) | |
tree | 119591b06dd9f58ab03dee643459635649440202 /src/if_python.c | |
parent | b52f4c02e63a76b933b48026687b322ee2353f11 (diff) | |
download | vim-git-d6e391862c58d7c7494b8c4cc65a4b745d7eafe1.tar.gz |
updated for version 7.3.992v7.3.992
Problem: Python: Too many type casts.
Solution: Change argument types. (ZyX)
Diffstat (limited to 'src/if_python.c')
-rw-r--r-- | src/if_python.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/if_python.c b/src/if_python.c index a3431b252..7a4fa8ad9 100644 --- a/src/if_python.c +++ b/src/if_python.c @@ -56,8 +56,6 @@ # define PY_SSIZE_T_CLEAN #endif -static void init_structs(void); - #define PyBytes_FromString PyString_FromString #define PyBytes_Check PyString_Check @@ -659,16 +657,9 @@ static PyObject *FunctionGetattr(PyObject *, char *); * Internal function prototypes. */ -static void PythonIO_Flush(void); static int PythonIO_Init(void); static int PythonMod_Init(void); -/* Utility functions for the vim/python interface - * ---------------------------------------------- - */ - -static int SetBufferLineList(buf_T *, PyInt, PyInt, PyObject *, PyInt *); - /****************************************************** * 1. Python interpreter main program. @@ -1017,9 +1008,6 @@ PythonIO_Init(void) * 3. Implementation of the Vim module for Python */ -static PyObject *ConvertToPyObject(typval_T *); -static int ConvertFromPyObject(PyObject *, typval_T *); - /* Window type - Implementation functions * -------------------------------------- */ |