Buckets:
| /* Generator object interface */ | |
| extern "C" { | |
| /* --- Generators --------------------------------------------------------- */ | |
| /* _PyGenObject_HEAD defines the initial segment of generator | |
| and coroutine objects. */ | |
| typedef struct { | |
| /* The gi_ prefix is intended to remind of generator-iterator. */ | |
| _PyGenObject_HEAD(gi) | |
| } PyGenObject; | |
| PyAPI_DATA(PyTypeObject) PyGen_Type; | |
| PyAPI_FUNC(PyObject *) PyGen_New(PyFrameObject *); | |
| PyAPI_FUNC(PyObject *) PyGen_NewWithQualName(PyFrameObject *, | |
| PyObject *name, PyObject *qualname); | |
| PyAPI_FUNC(PyCodeObject *) PyGen_GetCode(PyGenObject *gen); | |
| /* --- PyCoroObject ------------------------------------------------------- */ | |
| typedef struct { | |
| _PyGenObject_HEAD(cr) | |
| } PyCoroObject; | |
| PyAPI_DATA(PyTypeObject) PyCoro_Type; | |
| PyAPI_FUNC(PyObject *) PyCoro_New(PyFrameObject *, | |
| PyObject *name, PyObject *qualname); | |
| /* --- Asynchronous Generators -------------------------------------------- */ | |
| typedef struct { | |
| _PyGenObject_HEAD(ag) | |
| } PyAsyncGenObject; | |
| PyAPI_DATA(PyTypeObject) PyAsyncGen_Type; | |
| PyAPI_DATA(PyTypeObject) _PyAsyncGenASend_Type; | |
| PyAPI_FUNC(PyObject *) PyAsyncGen_New(PyFrameObject *, | |
| PyObject *name, PyObject *qualname); | |
| } | |
Xet Storage Details
- Size:
- 3 kB
- Xet hash:
- 56ca644cf343614d03a750ecbc7e104fe0e6eaa4390a2a3c474c359d07e529ab
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.