File indexing completed on 2025-01-30 10:18:10
0001 #ifndef Py_INTERNAL_SLICEOBJECT_H
0002 #define Py_INTERNAL_SLICEOBJECT_H
0003 #ifdef __cplusplus
0004 extern "C" {
0005 #endif
0006
0007 #ifndef Py_BUILD_CORE
0008 # error "this header requires Py_BUILD_CORE define"
0009 #endif
0010
0011
0012
0013
0014 extern void _PySlice_Fini(PyInterpreterState *);
0015
0016 extern PyObject *
0017 _PyBuildSlice_ConsumeRefs(PyObject *start, PyObject *stop);
0018
0019 #ifdef __cplusplus
0020 }
0021 #endif
0022 #endif