(
obj: PyObjectLike, buffer: PointerLike, length: PointerLike
)
| 313 | # PyBytes_AsStringAndSize |
| 314 | @staticmethod |
| 315 | def as_string_and_size( |
| 316 | obj: PyObjectLike, buffer: PointerLike, length: PointerLike |
| 317 | ) -> int: |
| 318 | return api_binding_base( |
| 319 | API_FUNCS["PyBytes_AsStringAndSize"], _deref_maybe(obj), buffer, length |
| 320 | ) |
| 321 | |
| 322 | # PyBytes_Concat |
| 323 | @staticmethod |
nothing calls this directly
no test coverage detected