Home
last modified time | relevance | path

Searched refs:y_obj (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Modules/clinic/
Dcmathmodule.c.h647 cmath_log_impl(PyObject *module, Py_complex x, PyObject *y_obj);
654 PyObject *y_obj = NULL; in cmath_log() local
657 &x, &y_obj)) { in cmath_log()
660 return_value = cmath_log_impl(module, x, y_obj); in cmath_log()
/external/python/cpython3/Modules/
Dcmathmodule.c957 cmath_log_impl(PyObject *module, Py_complex x, PyObject *y_obj) in cmath_log_impl() argument
965 if (y_obj != NULL) { in cmath_log_impl()
966 y = PyComplex_AsCComplex(y_obj); in cmath_log_impl()