(v: StringLike)
| 348 | # PyBytes_FromString |
| 349 | @staticmethod |
| 350 | def from_string(v: StringLike) -> PyObjectLike: |
| 351 | return api_binding_base(API_FUNCS["PyBytes_FromString"], make_string(v)) |
| 352 | |
| 353 | # PyBytes_FromStringAndSize |
| 354 | @staticmethod |
nothing calls this directly
no test coverage detected