python-2.7.6/include/memoryobject.h Source File
Go to the documentation of this file.
3 #ifndef Py_MEMORYOBJECT_H
4 #define Py_MEMORYOBJECT_H
11 #define PyMemoryView_Check(op) (Py_TYPE(op) == &PyMemoryView_Type)
14 #define PyMemoryView_GET_BUFFER(op) (&((PyMemoryViewObject *)(op))->view)
16 #define PyMemoryView_GET_BASE(op) (((PyMemoryViewObject *)(op))->view.obj)
PyAPI_FUNC(PyObject *) PyMemoryView_GetContiguous(PyObject *base
PyAPI_DATA(PyTypeObject) PyMemoryView_Type
PyObject_HEAD PyObject * base