Searched refs:PyNumber_Power (Results 1 – 13 of 13) sorted by relevance
/third_party/python/Include/ |
D | abstract.h | 467 PyAPI_FUNC(PyObject *) PyNumber_Power(PyObject *o1, PyObject *o2,
|
/third_party/python/Doc/data/ |
D | refcounts.dat | 1528 PyNumber_Power:PyObject*::+1: 1529 PyNumber_Power:PyObject*:o1:0: 1530 PyNumber_Power:PyObject*:o2:0: 1531 PyNumber_Power:PyObject*:o3:0:
|
D | stable_abi.dat | 437 function,PyNumber_Power,3.2,
|
/third_party/python/Objects/ |
D | weakrefobject.c | 539 WRAP_TERNARY(proxy_pow, PyNumber_Power) in WRAP_BINARY()
|
D | abstract.c | 1150 PyNumber_Power(PyObject *v, PyObject *w, PyObject *z) in PyNumber_Power() function
|
/third_party/python/Doc/c-api/ |
D | number.rst | 73 .. c:function:: PyObject* PyNumber_Power(PyObject *o1, PyObject *o2, PyObject *o3)
|
/third_party/python/PC/ |
D | python3dll.c | 413 EXPORT_FUNC(PyNumber_Power)
|
/third_party/python/Python/ |
D | ast_opt.c | 197 return PyNumber_Power(v, w, Py_None); in safe_power()
|
D | bltinmodule.c | 1940 return PyNumber_Power(base, exp, mod); in builtin_pow_impl()
|
D | ceval.c | 1991 PyObject *res = PyNumber_Power(base, exp, Py_None); in _PyEval_EvalFrameDefault()
|
/third_party/python/Modules/ |
D | _operator.c | 665 return PyNumber_Power(a, b, Py_None); in _operator_pow_impl()
|
/third_party/python/Misc/ |
D | stable_abi.txt | 990 function PyNumber_Power
|
D | HISTORY | 28236 - In PyNumber_Power(), remove unneeded and even harmful test for float 29644 - Fixed a bug in PyNumber_Power() that caused numeric arrays to fail
|