(o: PyObjectLike)
| 280 | # PyByteArray_FromObject |
| 281 | @staticmethod |
| 282 | def from_object(o: PyObjectLike) -> PyObjectLike: |
| 283 | return api_binding_base(API_FUNCS["PyByteArray_FromObject"], _deref_maybe(o)) |
| 284 | |
| 285 | # PyByteArray_FromStringAndSize |
| 286 | @staticmethod |
nothing calls this directly
no test coverage detected