| 2522 | } |
| 2523 | |
| 2524 | inline iterator iter(handle obj) { |
| 2525 | PyObject *result = PyObject_GetIter(obj.ptr()); |
| 2526 | if (!result) { |
| 2527 | throw error_already_set(); |
| 2528 | } |
| 2529 | return reinterpret_steal<iterator>(result); |
| 2530 | } |
| 2531 | /// @} python_builtins |
| 2532 | |
| 2533 | PYBIND11_NAMESPACE_BEGIN(detail) |