| 575 | // exposed as Py_ssize_t for compatilbity with standard python sequences |
| 576 | Py_ssize_t len() const { return _length; } |
| 577 | size_t stride() const { return _stride; } |
| 578 | bool writable() const { return _writable; } |
| 579 | |
| 580 | // This method is mainly here for use in confidence tests, but there may |
no outgoing calls
no test coverage detected