(bytearray: PyObjectLike, len: int)
| 292 | # PyByteArray_Resize |
| 293 | @staticmethod |
| 294 | def resize(bytearray: PyObjectLike, len: int) -> int: |
| 295 | return api_binding_base( |
| 296 | API_FUNCS["PyByteArray_Resize"], _deref_maybe(bytearray), len |
| 297 | ) |
| 298 | |
| 299 | # PyByteArray_Size |
| 300 | @staticmethod |
nothing calls this directly
no test coverage detected