MCPcopy Create free account
hub / github.com/ZeroIntensity/pointers.py / va_parse_tuple_and_keywords

Method va_parse_tuple_and_keywords

src/pointers/api_bindings.py:153–167  ·  view source on GitHub ↗
(
        args: PyObjectLike,
        kw: PyObjectLike,
        format: StringLike,
        keywords: PointerLike,
        vargs: PointerLike,
    )

Source from the content-addressed store, hash-verified

151 # PyArg_VaParseTupleAndKeywords
152 @staticmethod
153 def va_parse_tuple_and_keywords(
154 args: PyObjectLike,
155 kw: PyObjectLike,
156 format: StringLike,
157 keywords: PointerLike,
158 vargs: PointerLike,
159 ) -> int:
160 return api_binding_base(
161 API_FUNCS["PyArg_VaParseTupleAndKeywords"],
162 _deref_maybe(args),
163 _deref_maybe(kw),
164 make_string(format),
165 keywords,
166 vargs,
167 )
168
169
170class PyBool(_CallBase):

Callers

nothing calls this directly

Calls 3

api_binding_baseFunction · 0.85
_deref_maybeFunction · 0.85
make_stringFunction · 0.85

Tested by

no test coverage detected