Surbhi123's picture
Upload folder using huggingface_hub
64772a4 verified
raw
history blame contribute delete
241 Bytes
from cpython.buffer cimport Py_buffer
cdef class ByteSource:
cdef object owner
cdef bint has_view
cdef Py_buffer view
cdef unsigned char *ptr
cdef size_t length
cdef ByteSource bytesource(object, bint allow_none=*)