| 2578 | } |
| 2579 | |
| 2580 | inline iterator iter(handle obj) { |
| 2581 | PyObject *result = PyObject_GetIter(obj.ptr()); |
| 2582 | if (!result) { |
| 2583 | throw error_already_set(); |
| 2584 | } |
| 2585 | return reinterpret_steal<iterator>(result); |
| 2586 | } |
| 2587 | /// @} python_builtins |
| 2588 | |
| 2589 | PYBIND11_NAMESPACE_BEGIN(detail) |