Ejemplo n.º 1
0
 /// These should only be constructed by APIs in this assembly.
 unsafe internal PyObj(CPython.PyObject *obj)
 {
     CPython.Py_IncRef(obj);
     this.obj = obj;
 }
Ejemplo n.º 2
0
 unsafe internal PyStr(CPython.PyObject *obj) : base(obj)
 {
 }
Ejemplo n.º 3
0
 /// These should only be constructed by APIs in this assembly.
 internal unsafe PyObj(CPython.PyObject* obj)
 {
     CPython.Py_IncRef(obj);
     this.obj = obj;
 }
Ejemplo n.º 4
0
 unsafe internal PyModule(CPython.PyObject *obj) : base(obj)
 {
 }