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

Method from_string_and_size

src/pointers/api_bindings.py:355–358  ·  view source on GitHub ↗
(v: StringLike, len: int)

Source from the content-addressed store, hash-verified

353 # PyBytes_FromStringAndSize
354 @staticmethod
355 def from_string_and_size(v: StringLike, len: int) -> PyObjectLike:
356 return api_binding_base(
357 API_FUNCS["PyBytes_FromStringAndSize"], make_string(v), len
358 )
359
360 # PyBytes_Size
361 @staticmethod

Callers

nothing calls this directly

Calls 2

api_binding_baseFunction · 0.85
make_stringFunction · 0.85

Tested by

no test coverage detected