29 lines
780 B
Go
29 lines
780 B
Go
/*
|
|
Unless explicitly stated otherwise all files in this repository are licensed
|
|
under the $license_for_repo License.
|
|
This product includes software developed at Datadog (https://www.datadoghq.com/).
|
|
Copyright 2018 Datadog, Inc.
|
|
*/
|
|
|
|
package python3
|
|
|
|
/*
|
|
#include "Python.h"
|
|
#include "macro.h"
|
|
*/
|
|
import "C"
|
|
import "unsafe"
|
|
|
|
//Type : https://docs.python.org/3/c-api/type.html#c.PyType_Type
|
|
var Type = togo((*C.PyObject)(unsafe.Pointer(&C.PyType_Type)))
|
|
|
|
//PyType_Check : 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 : 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
|
|
}
|