mirror of
https://github.com/python/cpython.git
synced 2026-03-31 17:11:13 +00:00
gh-128813: soft-deprecate _Py_c_*() functions (GH-137261)
This commit is contained in:
parent
2a87af062b
commit
9ced5c4ace
4 changed files with 39 additions and 1 deletions
|
|
@ -7,7 +7,8 @@ typedef struct {
|
|||
double imag;
|
||||
} Py_complex;
|
||||
|
||||
// Operations on complex numbers.
|
||||
/* Operations on complex numbers (soft deprecated
|
||||
since Python 3.15). */
|
||||
PyAPI_FUNC(Py_complex) _Py_c_sum(Py_complex, Py_complex);
|
||||
PyAPI_FUNC(Py_complex) _Py_c_diff(Py_complex, Py_complex);
|
||||
PyAPI_FUNC(Py_complex) _Py_c_neg(Py_complex);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue