Home
last modified time | relevance | path

Searched defs:decref_guard (Results 1 – 1 of 1) sorted by relevance

/third_party/boost/boost/python/detail/
Ddecref_guard.hpp10 struct decref_guard struct
12 decref_guard(PyObject* o) : obj(o) {} in decref_guard() function
13 ~decref_guard() { Py_XDECREF(obj); } in ~decref_guard()
14 void cancel() { obj = 0; } in cancel()
16 PyObject* obj;