Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
allendowney
GitHub Repository: allendowney/cpython
Path: blob/main/Include/internal/pycore_memoryobject.h
12 views
1
#ifndef Py_INTERNAL_MEMORYOBJECT_H
2
#define Py_INTERNAL_MEMORYOBJECT_H
3
#ifdef __cplusplus
4
extern "C" {
5
#endif
6
7
#ifndef Py_BUILD_CORE
8
# error "this header requires Py_BUILD_CORE define"
9
#endif
10
11
PyObject *
12
_PyMemoryView_FromBufferProc(PyObject *v, int flags,
13
getbufferproc bufferproc);
14
15
#ifdef __cplusplus
16
}
17
#endif
18
#endif /* !Py_INTERNAL_MEMORYOBJECT_H */
19
20