Buckets:
| /* Cell object interface */ | |
| extern "C" { | |
| typedef struct { | |
| PyObject_HEAD | |
| /* Content of the cell or NULL when empty */ | |
| PyObject *ob_ref; | |
| } PyCellObject; | |
| PyAPI_DATA(PyTypeObject) PyCell_Type; | |
| PyAPI_FUNC(PyObject *) PyCell_New(PyObject *); | |
| PyAPI_FUNC(PyObject *) PyCell_Get(PyObject *); | |
| PyAPI_FUNC(int) PyCell_Set(PyObject *, PyObject *); | |
| static inline PyObject* PyCell_GET(PyObject *op) { | |
| PyCellObject *cell; | |
| assert(PyCell_Check(op)); | |
| cell = _Py_CAST(PyCellObject*, op); | |
| return cell->ob_ref; | |
| } | |
| static inline void PyCell_SET(PyObject *op, PyObject *value) { | |
| PyCellObject *cell; | |
| assert(PyCell_Check(op)); | |
| cell = _Py_CAST(PyCellObject*, op); | |
| cell->ob_ref = value; | |
| } | |
| } | |
Xet Storage Details
- Size:
- 1.08 kB
- Xet hash:
- 8c266c5f59aaf0ecabec5d88868ea01fc8507e00a27bd84cc6da8ff73a12b217
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.