(v: StringLike, len: int)
| 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 |
nothing calls this directly
no test coverage detected