3#ifndef __NUITKA_HELPER_COMPLEX_H__
4#define __NUITKA_HELPER_COMPLEX_H__
6NUITKA_MAY_BE_UNUSED
static PyObject *BUILTIN_COMPLEX1(PyThreadState *tstate, PyObject *real) {
12 return CALL_FUNCTION_WITH_SINGLE_ARG(tstate, (PyObject *)&PyComplex_Type, real);
15NUITKA_MAY_BE_UNUSED
static PyObject *BUILTIN_COMPLEX2(PyThreadState *tstate, PyObject *real, PyObject *imag) {
27 PyObject *args[] = {real, imag};
28 return CALL_FUNCTION_WITH_ARGS2(tstate, (PyObject *)&PyComplex_Type, args);