fromRawOb builds a new Python object from the raw pointer.
(ob *C.PyObject)
| 205 | |
| 206 | // fromRawOb builds a new Python object from the raw pointer. |
| 207 | func fromRawOb(ob *C.PyObject) *PyObject { return &PyObject{rawptr: ob} } |
| 208 | |
| 209 | // DecRef decrements the reference count for object o. If the object is NULL, nothing happens. If the reference count |
| 210 | // reaches zero, the object’s type’s deallocation function (which must not be NULL) is invoked. |
no outgoing calls
no test coverage detected