@@ -44,36 +44,12 @@ pointers. This is consistent throughout the API.
44
44
representation.
45
45
46
46
47
- .. c:function:: Py_complex _Py_cr_sum(Py_complex left, double right)
48
-
49
- Return the sum of a complex number and a real number, using the C :c:type:`Py_complex`
50
- representation.
51
-
52
- .. versionadded:: 3.14
53
-
54
-
55
47
.. c:function:: Py_complex _Py_c_diff(Py_complex left, Py_complex right)
56
48
57
49
Return the difference between two complex numbers, using the C
58
50
:c:type:`Py_complex` representation.
59
51
60
52
61
- .. c:function:: Py_complex _Py_cr_diff(Py_complex left, double right)
62
-
63
- Return the difference between a complex number and a real number, using the C
64
- :c:type:`Py_complex` representation.
65
-
66
- .. versionadded:: 3.14
67
-
68
-
69
- .. c:function:: Py_complex _Py_rc_diff(double left, Py_complex right)
70
-
71
- Return the difference between a real number and a complex number, using the C
72
- :c:type:`Py_complex` representation.
73
-
74
- .. versionadded:: 3.14
75
-
76
-
77
53
.. c:function:: Py_complex _Py_c_neg(Py_complex num)
78
54
79
55
Return the negation of the complex number *num*, using the C
@@ -86,14 +62,6 @@ pointers. This is consistent throughout the API.
86
62
representation.
87
63
88
64
89
- .. c:function:: Py_complex _Py_cr_prod(Py_complex left, double right)
90
-
91
- Return the product of a complex number and a real number, using the C
92
- :c:type:`Py_complex` representation.
93
-
94
- .. versionadded:: 3.14
95
-
96
-
97
65
.. c:function:: Py_complex _Py_c_quot(Py_complex dividend, Py_complex divisor)
98
66
99
67
Return the quotient of two complex numbers, using the C :c:type:`Py_complex`
@@ -103,28 +71,6 @@ pointers. This is consistent throughout the API.
103
71
:c:data:`errno` to :c:macro:`!EDOM`.
104
72
105
73
106
- .. c:function:: Py_complex _Py_cr_quot(Py_complex dividend, double divisor)
107
-
108
- Return the quotient of a complex number and a real number, using the C
109
- :c:type:`Py_complex` representation.
110
-
111
- If *divisor* is zero, this method returns zero and sets
112
- :c:data:`errno` to :c:macro:`!EDOM`.
113
-
114
- .. versionadded:: 3.14
115
-
116
-
117
- .. c:function:: Py_complex _Py_rc_quot(double dividend, Py_complex divisor)
118
-
119
- Return the quotient of a real number and a complex number, using the C
120
- :c:type:`Py_complex` representation.
121
-
122
- If *divisor* is zero, this method returns zero and sets
123
- :c:data:`errno` to :c:macro:`!EDOM`.
124
-
125
- .. versionadded:: 3.14
126
-
127
-
128
74
.. c:function:: Py_complex _Py_c_pow(Py_complex num, Py_complex exp)
129
75
130
76
Return the exponentiation of *num* by *exp*, using the C :c:type:`Py_complex`
0 commit comments