(bytearray: PyObjectLike)
| 266 | # PyByteArray_AsString |
| 267 | @staticmethod |
| 268 | def as_string(bytearray: PyObjectLike) -> StringLike: |
| 269 | return api_binding_base( |
| 270 | API_FUNCS["PyByteArray_AsString"], _deref_maybe(bytearray) |
| 271 | ) |
| 272 | |
| 273 | # PyByteArray_Concat |
| 274 | @staticmethod |
nothing calls this directly
no test coverage detected