(string: StringLike, len: int)
| 285 | # PyByteArray_FromStringAndSize |
| 286 | @staticmethod |
| 287 | def from_string_and_size(string: StringLike, len: int) -> PyObjectLike: |
| 288 | return api_binding_base( |
| 289 | API_FUNCS["PyByteArray_FromStringAndSize"], make_string(string), len |
| 290 | ) |
| 291 | |
| 292 | # PyByteArray_Resize |
| 293 | @staticmethod |
nothing calls this directly
no test coverage detected