(format: StringLike, vargs: PointerLike)
| 336 | # PyBytes_FromFormatV |
| 337 | @staticmethod |
| 338 | def from_format_v(format: StringLike, vargs: PointerLike) -> PyObjectLike: |
| 339 | return api_binding_base( |
| 340 | API_FUNCS["PyBytes_FromFormatV"], make_string(format), vargs |
| 341 | ) |
| 342 | |
| 343 | # PyBytes_FromObject |
| 344 | @staticmethod |
nothing calls this directly
no test coverage detected