Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
80 lines (67 sloc)
1.72 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "Python.h" | |
static struct PyModuleDef module = { | |
PyModuleDef_HEAD_INIT, | |
"str08", | |
NULL, | |
-1, | |
NULL, | |
NULL, | |
NULL, | |
NULL, | |
NULL | |
}; | |
typedef struct { | |
PyObject_HEAD | |
PyObject *iters; | |
PyObject *func; | |
} mapobject; | |
static PyObject * | |
map_next(mapobject *lz) | |
{ | |
PyObject *small_stack[_PY_FASTCALL_SMALL_STACK]; | |
PyObject **stack; | |
Py_ssize_t niters, nargs, i; | |
PyObject *result = NULL; | |
stack = small_stack; | |
nargs = 0; | |
PyObject *it = PyTuple_GET_ITEM(lz->iters, 0); | |
PyObject *val = Py_TYPE(it)->tp_iternext(it); | |
if (val == NULL) { | |
goto exit; | |
} | |
stack[0] = val; | |
nargs++; | |
result = _PyObject_FastCall(lz->func, stack, nargs); | |
exit: | |
for (i=0; i < nargs; i++) { | |
Py_DECREF(stack[i]); | |
} | |
return result; | |
} | |
PyMODINIT_FUNC PyInit_str08(void) { | |
for (int i = 0; i < 20; i++) { | |
PyObject* a = PyTuple_Pack(1, PyLong_FromLong(1000000)); | |
PyObject* r = PyObject_Call((PyObject*)&PyRange_Type, a, NULL); | |
Py_DECREF(a); | |
a = PyTuple_Pack(2, (PyObject*)&PyUnicode_Type, r); | |
Py_DECREF(r); | |
PyObject* m = PyObject_Call((PyObject*)&PyMap_Type, a, NULL); | |
Py_DECREF(a); | |
mapobject* iter = (mapobject*)m; | |
for (;;) { | |
PyObject *item = map_next(iter); | |
if (item == NULL) { | |
if (PyErr_Occurred()) { | |
if (PyErr_ExceptionMatches(PyExc_StopIteration)) | |
PyErr_Clear(); | |
else | |
abort(); | |
} | |
break; | |
} | |
Py_DECREF(item); | |
} | |
} | |
PyObject* m = PyModule_Create(&module); | |
return m; | |
} |