Searched refs:PyComplex_Type (Results 1 – 14 of 14) sorted by relevance
39 PyAPI_DATA(PyTypeObject) PyComplex_Type;41 #define PyComplex_Check(op) PyObject_TypeCheck(op, &PyComplex_Type)42 #define PyComplex_CheckExact(op) (Py_TYPE(op) == &PyComplex_Type)
45 PyAPI_DATA(PyTypeObject) PyComplex_Type;47 #define PyComplex_Check(op) PyObject_TypeCheck(op, &PyComplex_Type)48 #define PyComplex_CheckExact(op) (Py_TYPE(op) == &PyComplex_Type)
231 (void)PyObject_INIT(op, &PyComplex_Type); in PyComplex_FromCComplex()959 type == &PyComplex_Type) { in complex_new_impl()1116 PyTypeObject PyComplex_Type = { variable
757 return PyComplex_Type.tp_as_number->nb_power(v, w, z); in float_pow()
1822 if (PyType_Ready(&PyComplex_Type) < 0) in _Py_ReadyTypes()
242 (void)PyObject_INIT(op, &PyComplex_Type); in PyComplex_FromCComplex()1153 type == &PyComplex_Type) { in complex_new()1314 PyTypeObject PyComplex_Type = { variable
2136 if (PyType_Ready(&PyComplex_Type) < 0) in _Py_ReadyTypes()
13 PyComplex_Type
88 .. c:var:: PyTypeObject PyComplex_Type
82 PyComplex_Type=python37.PyComplex_Type DATA
253 "PyComplex_Type"
2835 SETBUILTIN("complex", &PyComplex_Type); in _PyBuiltin_Init()
2729 SETBUILTIN("complex", &PyComplex_Type); in _PyBuiltin_Init()