(op: *mut PyObject)
| 55 | #[inline(always)] |
| 56 | #[cfg(not(Py_LIMITED_API))] |
| 57 | pub unsafe fn PyTuple_GET_SIZE(op: *mut PyObject) -> Py_ssize_t { |
| 58 | debug_assert!(PyTuple_Check(op) != 0); |
| 59 | Py_SIZE(op) |
| 60 | } |
| 61 | |
| 62 | /// Macro, *only* to be used to fill in brand new tuples |
| 63 | #[inline(always)] |
no test coverage detected