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

Method from_string_and_size

src/pointers/api_bindings.py:287–290  ·  view source on GitHub ↗
(string: StringLike, len: int)

Source from the content-addressed store, hash-verified

285 # PyByteArray_FromStringAndSize
286 @staticmethod
287 def from_string_and_size(string: StringLike, len: int) -> PyObjectLike:
288 return api_binding_base(
289 API_FUNCS["PyByteArray_FromStringAndSize"], make_string(string), len
290 )
291
292 # PyByteArray_Resize
293 @staticmethod

Callers

nothing calls this directly

Calls 2

api_binding_baseFunction · 0.85
make_stringFunction · 0.85

Tested by

no test coverage detected