source: python/trunk/Doc/c-api/number.rst

Last change on this file was 391, checked in by dmik, 11 years ago

python: Merge vendor 2.7.6 to trunk.

  • Property svn:eol-style set to native
File size: 11.6 KB
RevLine 
[2]1.. highlightlang:: c
2
3.. _number:
4
5Number Protocol
6===============
7
8
[391]9.. c:function:: int PyNumber_Check(PyObject *o)
[2]10
11 Returns ``1`` if the object *o* provides numeric protocols, and false otherwise.
12 This function always succeeds.
13
14
[391]15.. c:function:: PyObject* PyNumber_Add(PyObject *o1, PyObject *o2)
[2]16
17 Returns the result of adding *o1* and *o2*, or *NULL* on failure. This is the
18 equivalent of the Python expression ``o1 + o2``.
19
20
[391]21.. c:function:: PyObject* PyNumber_Subtract(PyObject *o1, PyObject *o2)
[2]22
23 Returns the result of subtracting *o2* from *o1*, or *NULL* on failure. This is
24 the equivalent of the Python expression ``o1 - o2``.
25
26
[391]27.. c:function:: PyObject* PyNumber_Multiply(PyObject *o1, PyObject *o2)
[2]28
29 Returns the result of multiplying *o1* and *o2*, or *NULL* on failure. This is
30 the equivalent of the Python expression ``o1 * o2``.
31
32
[391]33.. c:function:: PyObject* PyNumber_Divide(PyObject *o1, PyObject *o2)
[2]34
35 Returns the result of dividing *o1* by *o2*, or *NULL* on failure. This is the
36 equivalent of the Python expression ``o1 / o2``.
37
38
[391]39.. c:function:: PyObject* PyNumber_FloorDivide(PyObject *o1, PyObject *o2)
[2]40
41 Return the floor of *o1* divided by *o2*, or *NULL* on failure. This is
42 equivalent to the "classic" division of integers.
43
44 .. versionadded:: 2.2
45
46
[391]47.. c:function:: PyObject* PyNumber_TrueDivide(PyObject *o1, PyObject *o2)
[2]48
49 Return a reasonable approximation for the mathematical value of *o1* divided by
50 *o2*, or *NULL* on failure. The return value is "approximate" because binary
51 floating point numbers are approximate; it is not possible to represent all real
52 numbers in base two. This function can return a floating point value when
53 passed two integers.
54
55 .. versionadded:: 2.2
56
57
[391]58.. c:function:: PyObject* PyNumber_Remainder(PyObject *o1, PyObject *o2)
[2]59
60 Returns the remainder of dividing *o1* by *o2*, or *NULL* on failure. This is
61 the equivalent of the Python expression ``o1 % o2``.
62
63
[391]64.. c:function:: PyObject* PyNumber_Divmod(PyObject *o1, PyObject *o2)
[2]65
66 .. index:: builtin: divmod
67
68 See the built-in function :func:`divmod`. Returns *NULL* on failure. This is
69 the equivalent of the Python expression ``divmod(o1, o2)``.
70
71
[391]72.. c:function:: PyObject* PyNumber_Power(PyObject *o1, PyObject *o2, PyObject *o3)
[2]73
74 .. index:: builtin: pow
75
76 See the built-in function :func:`pow`. Returns *NULL* on failure. This is the
77 equivalent of the Python expression ``pow(o1, o2, o3)``, where *o3* is optional.
[391]78 If *o3* is to be ignored, pass :c:data:`Py_None` in its place (passing *NULL* for
[2]79 *o3* would cause an illegal memory access).
80
81
[391]82.. c:function:: PyObject* PyNumber_Negative(PyObject *o)
[2]83
84 Returns the negation of *o* on success, or *NULL* on failure. This is the
85 equivalent of the Python expression ``-o``.
86
87
[391]88.. c:function:: PyObject* PyNumber_Positive(PyObject *o)
[2]89
90 Returns *o* on success, or *NULL* on failure. This is the equivalent of the
91 Python expression ``+o``.
92
93
[391]94.. c:function:: PyObject* PyNumber_Absolute(PyObject *o)
[2]95
96 .. index:: builtin: abs
97
98 Returns the absolute value of *o*, or *NULL* on failure. This is the equivalent
99 of the Python expression ``abs(o)``.
100
101
[391]102.. c:function:: PyObject* PyNumber_Invert(PyObject *o)
[2]103
104 Returns the bitwise negation of *o* on success, or *NULL* on failure. This is
105 the equivalent of the Python expression ``~o``.
106
107
[391]108.. c:function:: PyObject* PyNumber_Lshift(PyObject *o1, PyObject *o2)
[2]109
110 Returns the result of left shifting *o1* by *o2* on success, or *NULL* on
111 failure. This is the equivalent of the Python expression ``o1 << o2``.
112
113
[391]114.. c:function:: PyObject* PyNumber_Rshift(PyObject *o1, PyObject *o2)
[2]115
116 Returns the result of right shifting *o1* by *o2* on success, or *NULL* on
117 failure. This is the equivalent of the Python expression ``o1 >> o2``.
118
119
[391]120.. c:function:: PyObject* PyNumber_And(PyObject *o1, PyObject *o2)
[2]121
122 Returns the "bitwise and" of *o1* and *o2* on success and *NULL* on failure.
123 This is the equivalent of the Python expression ``o1 & o2``.
124
125
[391]126.. c:function:: PyObject* PyNumber_Xor(PyObject *o1, PyObject *o2)
[2]127
128 Returns the "bitwise exclusive or" of *o1* by *o2* on success, or *NULL* on
129 failure. This is the equivalent of the Python expression ``o1 ^ o2``.
130
131
[391]132.. c:function:: PyObject* PyNumber_Or(PyObject *o1, PyObject *o2)
[2]133
134 Returns the "bitwise or" of *o1* and *o2* on success, or *NULL* on failure.
135 This is the equivalent of the Python expression ``o1 | o2``.
136
137
[391]138.. c:function:: PyObject* PyNumber_InPlaceAdd(PyObject *o1, PyObject *o2)
[2]139
140 Returns the result of adding *o1* and *o2*, or *NULL* on failure. The operation
141 is done *in-place* when *o1* supports it. This is the equivalent of the Python
142 statement ``o1 += o2``.
143
144
[391]145.. c:function:: PyObject* PyNumber_InPlaceSubtract(PyObject *o1, PyObject *o2)
[2]146
147 Returns the result of subtracting *o2* from *o1*, or *NULL* on failure. The
148 operation is done *in-place* when *o1* supports it. This is the equivalent of
149 the Python statement ``o1 -= o2``.
150
151
[391]152.. c:function:: PyObject* PyNumber_InPlaceMultiply(PyObject *o1, PyObject *o2)
[2]153
154 Returns the result of multiplying *o1* and *o2*, or *NULL* on failure. The
155 operation is done *in-place* when *o1* supports it. This is the equivalent of
156 the Python statement ``o1 *= o2``.
157
158
[391]159.. c:function:: PyObject* PyNumber_InPlaceDivide(PyObject *o1, PyObject *o2)
[2]160
161 Returns the result of dividing *o1* by *o2*, or *NULL* on failure. The
162 operation is done *in-place* when *o1* supports it. This is the equivalent of
163 the Python statement ``o1 /= o2``.
164
165
[391]166.. c:function:: PyObject* PyNumber_InPlaceFloorDivide(PyObject *o1, PyObject *o2)
[2]167
168 Returns the mathematical floor of dividing *o1* by *o2*, or *NULL* on failure.
169 The operation is done *in-place* when *o1* supports it. This is the equivalent
170 of the Python statement ``o1 //= o2``.
171
172 .. versionadded:: 2.2
173
174
[391]175.. c:function:: PyObject* PyNumber_InPlaceTrueDivide(PyObject *o1, PyObject *o2)
[2]176
177 Return a reasonable approximation for the mathematical value of *o1* divided by
178 *o2*, or *NULL* on failure. The return value is "approximate" because binary
179 floating point numbers are approximate; it is not possible to represent all real
180 numbers in base two. This function can return a floating point value when
181 passed two integers. The operation is done *in-place* when *o1* supports it.
182
183 .. versionadded:: 2.2
184
185
[391]186.. c:function:: PyObject* PyNumber_InPlaceRemainder(PyObject *o1, PyObject *o2)
[2]187
188 Returns the remainder of dividing *o1* by *o2*, or *NULL* on failure. The
189 operation is done *in-place* when *o1* supports it. This is the equivalent of
190 the Python statement ``o1 %= o2``.
191
192
[391]193.. c:function:: PyObject* PyNumber_InPlacePower(PyObject *o1, PyObject *o2, PyObject *o3)
[2]194
195 .. index:: builtin: pow
196
197 See the built-in function :func:`pow`. Returns *NULL* on failure. The operation
198 is done *in-place* when *o1* supports it. This is the equivalent of the Python
[391]199 statement ``o1 **= o2`` when o3 is :c:data:`Py_None`, or an in-place variant of
200 ``pow(o1, o2, o3)`` otherwise. If *o3* is to be ignored, pass :c:data:`Py_None`
[2]201 in its place (passing *NULL* for *o3* would cause an illegal memory access).
202
203
[391]204.. c:function:: PyObject* PyNumber_InPlaceLshift(PyObject *o1, PyObject *o2)
[2]205
206 Returns the result of left shifting *o1* by *o2* on success, or *NULL* on
207 failure. The operation is done *in-place* when *o1* supports it. This is the
208 equivalent of the Python statement ``o1 <<= o2``.
209
210
[391]211.. c:function:: PyObject* PyNumber_InPlaceRshift(PyObject *o1, PyObject *o2)
[2]212
213 Returns the result of right shifting *o1* by *o2* on success, or *NULL* on
214 failure. The operation is done *in-place* when *o1* supports it. This is the
215 equivalent of the Python statement ``o1 >>= o2``.
216
217
[391]218.. c:function:: PyObject* PyNumber_InPlaceAnd(PyObject *o1, PyObject *o2)
[2]219
220 Returns the "bitwise and" of *o1* and *o2* on success and *NULL* on failure. The
221 operation is done *in-place* when *o1* supports it. This is the equivalent of
222 the Python statement ``o1 &= o2``.
223
224
[391]225.. c:function:: PyObject* PyNumber_InPlaceXor(PyObject *o1, PyObject *o2)
[2]226
227 Returns the "bitwise exclusive or" of *o1* by *o2* on success, or *NULL* on
228 failure. The operation is done *in-place* when *o1* supports it. This is the
229 equivalent of the Python statement ``o1 ^= o2``.
230
231
[391]232.. c:function:: PyObject* PyNumber_InPlaceOr(PyObject *o1, PyObject *o2)
[2]233
234 Returns the "bitwise or" of *o1* and *o2* on success, or *NULL* on failure. The
235 operation is done *in-place* when *o1* supports it. This is the equivalent of
236 the Python statement ``o1 |= o2``.
237
238
[391]239.. c:function:: int PyNumber_Coerce(PyObject **p1, PyObject **p2)
[2]240
241 .. index:: builtin: coerce
242
[391]243 This function takes the addresses of two variables of type :c:type:`PyObject\*`.
[2]244 If the objects pointed to by ``*p1`` and ``*p2`` have the same type, increment
245 their reference count and return ``0`` (success). If the objects can be
246 converted to a common numeric type, replace ``*p1`` and ``*p2`` by their
247 converted value (with 'new' reference counts), and return ``0``. If no
248 conversion is possible, or if some other error occurs, return ``-1`` (failure)
249 and don't increment the reference counts. The call ``PyNumber_Coerce(&o1,
250 &o2)`` is equivalent to the Python statement ``o1, o2 = coerce(o1, o2)``.
251
252
[391]253.. c:function:: int PyNumber_CoerceEx(PyObject **p1, PyObject **p2)
[2]254
[391]255 This function is similar to :c:func:`PyNumber_Coerce`, except that it returns
[2]256 ``1`` when the conversion is not possible and when no error is raised.
257 Reference counts are still not increased in this case.
258
259
[391]260.. c:function:: PyObject* PyNumber_Int(PyObject *o)
[2]261
262 .. index:: builtin: int
263
264 Returns the *o* converted to an integer object on success, or *NULL* on failure.
265 If the argument is outside the integer range a long object will be returned
266 instead. This is the equivalent of the Python expression ``int(o)``.
267
268
[391]269.. c:function:: PyObject* PyNumber_Long(PyObject *o)
[2]270
271 .. index:: builtin: long
272
273 Returns the *o* converted to a long integer object on success, or *NULL* on
274 failure. This is the equivalent of the Python expression ``long(o)``.
275
276
[391]277.. c:function:: PyObject* PyNumber_Float(PyObject *o)
[2]278
279 .. index:: builtin: float
280
281 Returns the *o* converted to a float object on success, or *NULL* on failure.
282 This is the equivalent of the Python expression ``float(o)``.
283
284
[391]285.. c:function:: PyObject* PyNumber_Index(PyObject *o)
[2]286
287 Returns the *o* converted to a Python int or long on success or *NULL* with a
288 :exc:`TypeError` exception raised on failure.
289
290 .. versionadded:: 2.5
291
292
[391]293.. c:function:: PyObject* PyNumber_ToBase(PyObject *n, int base)
[2]294
295 Returns the integer *n* converted to *base* as a string with a base
296 marker of ``'0b'``, ``'0o'``, or ``'0x'`` if applicable. When
297 *base* is not 2, 8, 10, or 16, the format is ``'x#num'`` where x is the
298 base. If *n* is not an int object, it is converted with
[391]299 :c:func:`PyNumber_Index` first.
[2]300
301 .. versionadded:: 2.6
302
303
[391]304.. c:function:: Py_ssize_t PyNumber_AsSsize_t(PyObject *o, PyObject *exc)
[2]305
306 Returns *o* converted to a Py_ssize_t value if *o* can be interpreted as an
307 integer. If *o* can be converted to a Python int or long but the attempt to
308 convert to a Py_ssize_t value would raise an :exc:`OverflowError`, then the
309 *exc* argument is the type of exception that will be raised (usually
310 :exc:`IndexError` or :exc:`OverflowError`). If *exc* is *NULL*, then the
311 exception is cleared and the value is clipped to *PY_SSIZE_T_MIN* for a negative
312 integer or *PY_SSIZE_T_MAX* for a positive integer.
313
314 .. versionadded:: 2.5
315
316
[391]317.. c:function:: int PyIndex_Check(PyObject *o)
[2]318
319 Returns True if *o* is an index integer (has the nb_index slot of the
320 tp_as_number structure filled in).
321
322 .. versionadded:: 2.5
Note: See TracBrowser for help on using the repository browser.