| 892 | } |
| 893 | |
| 894 | inline void delattr(handle obj, handle name) { |
| 895 | if (PyObject_DelAttr(obj.ptr(), name.ptr()) != 0) { |
| 896 | throw error_already_set(); |
| 897 | } |
| 898 | } |
| 899 | |
| 900 | inline void delattr(handle obj, const char *name) { |
| 901 | if (PyObject_DelAttrString(obj.ptr(), name) != 0) { |