2018-12-13 22:09:42 +00:00
|
|
|
/*
|
|
|
|
Unless explicitly stated otherwise all files in this repository are licensed
|
2021-08-05 10:47:52 +00:00
|
|
|
under the MIT License.
|
2018-12-13 22:09:42 +00:00
|
|
|
This product includes software developed at Datadog (https://www.datadoghq.com/).
|
|
|
|
Copyright 2018 Datadog, Inc.
|
|
|
|
*/
|
|
|
|
|
2018-12-06 17:28:15 +00:00
|
|
|
package python3
|
|
|
|
|
|
|
|
/*
|
|
|
|
#include "Python.h"
|
|
|
|
#include "macro.h"
|
|
|
|
*/
|
|
|
|
import "C"
|
2018-12-20 22:59:29 +00:00
|
|
|
import "unsafe"
|
2018-12-06 17:28:15 +00:00
|
|
|
|
|
|
|
//Type : https://docs.python.org/3/c-api/type.html#c.PyType_Type
|
2018-12-20 22:59:29 +00:00
|
|
|
var Type = togo((*C.PyObject)(unsafe.Pointer(&C.PyType_Type)))
|
2018-12-06 17:28:15 +00:00
|
|
|
|
|
|
|
//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
|
|
|
|
}
|