| 317 | } |
| 318 | |
| 319 | long str_base::rindex(object_cref sub) const |
| 320 | { |
| 321 | long result = _BOOST_PYTHON_ASLONG(this->attr("rindex")(sub).ptr()); |
| 322 | if (PyErr_Occurred()) |
| 323 | throw_error_already_set(); |
| 324 | return result; |
| 325 | } |
| 326 | |
| 327 | long str_base::rindex(object_cref sub, object_cref start) const |
| 328 | { |