(a: PyObjectLike, b: PyObjectLike)
| 273 | # PyByteArray_Concat |
| 274 | @staticmethod |
| 275 | def concat(a: PyObjectLike, b: PyObjectLike) -> PyObjectLike: |
| 276 | return api_binding_base( |
| 277 | API_FUNCS["PyByteArray_Concat"], _deref_maybe(a), _deref_maybe(b) |
| 278 | ) |
| 279 | |
| 280 | # PyByteArray_FromObject |
| 281 | @staticmethod |
nothing calls this directly
no test coverage detected