Get the length of a Python object.
| 2493 | |
| 2494 | /// Get the length of a Python object. |
| 2495 | inline size_t len(handle h) { |
| 2496 | ssize_t result = PyObject_Length(h.ptr()); |
| 2497 | if (result < 0) { |
| 2498 | throw error_already_set(); |
| 2499 | } |
| 2500 | return (size_t) result; |
| 2501 | } |
| 2502 | |
| 2503 | /// Get the length hint of a Python object. |
| 2504 | /// Returns 0 when this cannot be determined. |
no test coverage detected