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

Function _validate_args

src/pointers/bindings.py:315–323  ·  view source on GitHub ↗
(
    args: Iterable[Any],
    fn: "ctypes._NamedFuncPointer",
    struct_map: StructMap,
)

Source from the content-addressed store, hash-verified

313
314
315def _validate_args(
316 args: Iterable[Any],
317 fn: "ctypes._NamedFuncPointer",
318 struct_map: StructMap,
319) -> None:
320 if not fn.argtypes:
321 return
322
323 _process_args(args, fn.argtypes, fn.__name__, struct_map)
324
325
326def _solve_func(

Callers 1

binding_baseFunction · 0.85

Calls 1

_process_argsFunction · 0.85

Tested by

no test coverage detected