-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtype.go
29 lines (25 loc) · 1023 Bytes
/
type.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package cpy
/*
#include "Python.h"
#include "macro.h"
*/
import "C"
import "unsafe"
// Type is the type object for type objects; it is the same object as type in the Python layer.
//
// Reference: https://docs.python.org/3/c-api/type.html#c.PyType_Type
var Type = togo((*C.PyObject)(unsafe.Pointer(&C.PyType_Type)))
// PyType_Check returns non-zero if the object o is a type object, including instances of types derived from the
// standard type object. Return 0 in all other cases. This function always succeeds.
//
// Reference: https://docs.python.org/3/c-api/type.html#c.PyType_Check
func PyType_Check(o *PyObject) bool {
return C._go_PyType_Check(toc(o)) != 0
}
// PyType_CheckExact returns non-zero if the object o is a type object, but not a subtype of the standard type object.
// Return 0 in all other cases. This function always succeeds.
//
// Reference: https://docs.python.org/3/c-api/type.html#c.PyType_CheckExact
func PyType_CheckExact(o *PyObject) bool {
return C._go_PyType_CheckExact(toc(o)) != 0
}