MCPcopy Index your code
hub / github.com/ZeroIntensity/pointers.py / fill_info

Method fill_info

src/pointers/api_bindings.py:202–218  ·  view source on GitHub ↗
(
        view: StructPointer[Buffer],
        exporter: PyObjectLike,
        buf: PointerLike,
        len: int,
        readonly: int,
        flags: int,
    )

Source from the content-addressed store, hash-verified

200 # PyBuffer_FillInfo
201 @staticmethod
202 def fill_info(
203 view: StructPointer[Buffer],
204 exporter: PyObjectLike,
205 buf: PointerLike,
206 len: int,
207 readonly: int,
208 flags: int,
209 ) -> int:
210 return api_binding_base(
211 API_FUNCS["PyBuffer_FillInfo"],
212 view,
213 _deref_maybe(exporter),
214 buf,
215 len,
216 readonly,
217 flags,
218 )
219
220 # PyBuffer_FromContiguous
221 @staticmethod

Callers

nothing calls this directly

Calls 2

api_binding_baseFunction · 0.85
_deref_maybeFunction · 0.85

Tested by

no test coverage detected