(bytes: PointerLike, newpart: PyObjectLike)
| 322 | # PyBytes_Concat |
| 323 | @staticmethod |
| 324 | def concat(bytes: PointerLike, newpart: PyObjectLike) -> None: |
| 325 | return api_binding_base( |
| 326 | API_FUNCS["PyBytes_Concat"], bytes, _deref_maybe(newpart) |
| 327 | ) |
| 328 | |
| 329 | # PyBytes_ConcatAndDel |
| 330 | @staticmethod |
nothing calls this directly
no test coverage detected