(item: object, /)
| 262 | @cython.cfunc |
| 263 | @cython.inline |
| 264 | def _get_id(item: object, /) -> cython.ulonglong: |
| 265 | return cython.cast( |
| 266 | cython.ulonglong, |
| 267 | cython.cast(cython.pointer(cython.void), item), |
| 268 | ) |
| 269 | |
| 270 | else: |
| 271 | _get_id = id |
no test coverage detected