tmp
/
pip-install-ghxuqwgs
/numpy_78e94bf2b6094bf9a1f3d92042f9bf46
/numpy
/random
/mtrand
/mtrand_py_helper.h
static PyObject *empty_py_bytes(npy_intp length, void **bytes) | |
{ | |
PyObject *b; | |
b = PyBytes_FromStringAndSize(NULL, length); | |
if (b) { | |
*bytes = PyBytes_AS_STRING(b); | |
} | |
b = PyString_FromStringAndSize(NULL, length); | |
if (b) { | |
*bytes = PyString_AS_STRING(b); | |
} | |
return b; | |
} | |