示例#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;
 }
示例#2
0
 unsafe internal PyStr(CPython.PyObject *obj) : base(obj)
 {
 }
示例#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;
 }
示例#4
0
 unsafe internal PyModule(CPython.PyObject *obj) : base(obj)
 {
 }