(bytearray: PyObjectLike)
| 299 | # PyByteArray_Size |
| 300 | @staticmethod |
| 301 | def size(bytearray: PyObjectLike) -> int: |
| 302 | return api_binding_base(API_FUNCS["PyByteArray_Size"], _deref_maybe(bytearray)) |
| 303 | |
| 304 | |
| 305 | class PyBytes(_CallBase): |
nothing calls this directly
no test coverage detected