comparison src/if_python.c @ 4385:da71e66dc1d4 v7.3.941

updated for version 7.3.941 Problem: Stuff in if_py_both.h is ordered badly. Solution: Reorder by type. (ZyX)
author Bram Moolenaar <bram@vim.org>
date Sun, 12 May 2013 19:45:35 +0200
parents 8ec7323f417d
children 358c10968c7f
comparison
equal deleted inserted replaced
4384:1e7c1e5ad3bd 4385:da71e66dc1d4
1017 * -------------------------------------- 1017 * --------------------------------------
1018 */ 1018 */
1019 1019
1020 #define BufferType_Check(obj) ((obj)->ob_type == &BufferType) 1020 #define BufferType_Check(obj) ((obj)->ob_type == &BufferType)
1021 1021
1022 static PyInt BufferLength(PyObject *);
1023 static PyObject *BufferItem(PyObject *, PyInt);
1024 static PyObject *BufferSlice(PyObject *, PyInt, PyInt);
1025 static PyInt BufferAssItem(PyObject *, PyInt, PyObject *); 1022 static PyInt BufferAssItem(PyObject *, PyInt, PyObject *);
1026 static PyInt BufferAssSlice(PyObject *, PyInt, PyInt, PyObject *); 1023 static PyInt BufferAssSlice(PyObject *, PyInt, PyInt, PyObject *);
1027 1024
1028 /* Line range type - Implementation functions 1025 /* Line range type - Implementation functions
1029 * -------------------------------------- 1026 * --------------------------------------