(args: PyObjectLike, format: StringLike, vargs: PointerLike)
| 144 | # PyArg_VaParse |
| 145 | @staticmethod |
| 146 | def va_parse(args: PyObjectLike, format: StringLike, vargs: PointerLike) -> int: |
| 147 | return api_binding_base( |
| 148 | API_FUNCS["PyArg_VaParse"], _deref_maybe(args), make_string(format), vargs |
| 149 | ) |
| 150 | |
| 151 | # PyArg_VaParseTupleAndKeywords |
| 152 | @staticmethod |
nothing calls this directly
no test coverage detected