blob: 53c9dc7216851a03529bd17ca152eb74ee9b9488 [file] [log] [blame]
Guido van Rossuma8275371995-07-18 14:07:00 +00001#ifndef Py_ABSTRACTOBJECT_H
2#define Py_ABSTRACTOBJECT_H
3#ifdef __cplusplus
4extern "C" {
5#endif
6
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00007#ifdef PY_SSIZE_T_CLEAN
8#define PyObject_CallFunction _PyObject_CallFunction_SizeT
9#define PyObject_CallMethod _PyObject_CallMethod_SizeT
10#endif
11
Guido van Rossuma8275371995-07-18 14:07:00 +000012/* Abstract Object Interface (many thanks to Jim Fulton) */
13
14/*
15 PROPOSAL: A Generic Python Object Interface for Python C Modules
16
17Problem
18
19 Python modules written in C that must access Python objects must do
20 so through routines whose interfaces are described by a set of
21 include files. Unfortunately, these routines vary according to the
22 object accessed. To use these routines, the C programmer must check
23 the type of the object being used and must call a routine based on
24 the object type. For example, to access an element of a sequence,
25 the programmer must determine whether the sequence is a list or a
26 tuple:
27
28 if(is_tupleobject(o))
29 e=gettupleitem(o,i)
30 else if(is_listitem(o))
31 e=getlistitem(o,i)
32
33 If the programmer wants to get an item from another type of object
34 that provides sequence behavior, there is no clear way to do it
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000035 correctly.
Guido van Rossuma8275371995-07-18 14:07:00 +000036
37 The persistent programmer may peruse object.h and find that the
38 _typeobject structure provides a means of invoking up to (currently
39 about) 41 special operators. So, for example, a routine can get an
40 item from any object that provides sequence behavior. However, to
41 use this mechanism, the programmer must make their code dependent on
42 the current Python implementation.
43
44 Also, certain semantics, especially memory management semantics, may
45 differ by the type of object being used. Unfortunately, these
46 semantics are not clearly described in the current include files.
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000047 An abstract interface providing more consistent semantics is needed.
Guido van Rossuma8275371995-07-18 14:07:00 +000048
49Proposal
50
51 I propose the creation of a standard interface (with an associated
52 library of routines and/or macros) for generically obtaining the
53 services of Python objects. This proposal can be viewed as one
54 components of a Python C interface consisting of several components.
55
Raymond Hettingera72e2f92003-02-28 05:11:03 +000056 From the viewpoint of C access to Python services, we have (as
Guido van Rossuma8275371995-07-18 14:07:00 +000057 suggested by Guido in off-line discussions):
58
59 - "Very high level layer": two or three functions that let you exec or
60 eval arbitrary Python code given as a string in a module whose name is
61 given, passing C values in and getting C values out using
62 mkvalue/getargs style format strings. This does not require the user
63 to declare any variables of type "PyObject *". This should be enough
64 to write a simple application that gets Python code from the user,
65 execs it, and returns the output or errors. (Error handling must also
66 be part of this API.)
67
68 - "Abstract objects layer": which is the subject of this proposal.
69 It has many functions operating on objects, and lest you do many
70 things from C that you can also write in Python, without going
71 through the Python parser.
72
73 - "Concrete objects layer": This is the public type-dependent
74 interface provided by the standard built-in types, such as floats,
75 strings, and lists. This interface exists and is currently
Raymond Hettingera72e2f92003-02-28 05:11:03 +000076 documented by the collection of include files provided with the
Guido van Rossuma8275371995-07-18 14:07:00 +000077 Python distributions.
78
79 From the point of view of Python accessing services provided by C
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000080 modules:
Guido van Rossuma8275371995-07-18 14:07:00 +000081
82 - "Python module interface": this interface consist of the basic
83 routines used to define modules and their members. Most of the
84 current extensions-writing guide deals with this interface.
85
86 - "Built-in object interface": this is the interface that a new
87 built-in type must provide and the mechanisms and rules that a
88 developer of a new built-in type must use and follow.
89
90 This proposal is a "first-cut" that is intended to spur
91 discussion. See especially the lists of notes.
92
93 The Python C object interface will provide four protocols: object,
94 numeric, sequence, and mapping. Each protocol consists of a
95 collection of related operations. If an operation that is not
96 provided by a particular type is invoked, then a standard exception,
97 NotImplementedError is raised with a operation name as an argument.
98 In addition, for convenience this interface defines a set of
99 constructors for building objects of built-in types. This is needed
100 so new objects can be returned from C functions that otherwise treat
101 objects generically.
102
103Memory Management
104
105 For all of the functions described in this proposal, if a function
106 retains a reference to a Python object passed as an argument, then the
107 function will increase the reference count of the object. It is
108 unnecessary for the caller to increase the reference count of an
109 argument in anticipation of the object's retention.
110
111 All Python objects returned from functions should be treated as new
112 objects. Functions that return objects assume that the caller will
113 retain a reference and the reference count of the object has already
114 been incremented to account for this fact. A caller that does not
115 retain a reference to an object that is returned from a function
116 must decrement the reference count of the object (using
117 DECREF(object)) to prevent memory leaks.
118
119 Note that the behavior mentioned here is different from the current
120 behavior for some objects (e.g. lists and tuples) when certain
121 type-specific routines are called directly (e.g. setlistitem). The
122 proposed abstraction layer will provide a consistent memory
123 management interface, correcting for inconsistent behavior for some
124 built-in types.
125
126Protocols
127
128xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
129
130/* Object Protocol: */
131
132 /* Implemented elsewhere:
133
134 int PyObject_Print(PyObject *o, FILE *fp, int flags);
135
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000136 Print an object, o, on file, fp. Returns -1 on
137 error. The flags argument is used to enable certain printing
138 options. The only option currently supported is Py_Print_RAW.
Guido van Rossuma8275371995-07-18 14:07:00 +0000139
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000140 (What should be said about Py_Print_RAW?)
Guido van Rossuma8275371995-07-18 14:07:00 +0000141
142 */
143
144 /* Implemented elsewhere:
145
146 int PyObject_HasAttrString(PyObject *o, char *attr_name);
147
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000148 Returns 1 if o has the attribute attr_name, and 0 otherwise.
149 This is equivalent to the Python expression:
150 hasattr(o,attr_name).
Guido van Rossuma8275371995-07-18 14:07:00 +0000151
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000152 This function always succeeds.
Guido van Rossuma8275371995-07-18 14:07:00 +0000153
154 */
155
156 /* Implemented elsewhere:
157
158 PyObject* PyObject_GetAttrString(PyObject *o, char *attr_name);
159
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000160 Retrieve an attributed named attr_name form object o.
161 Returns the attribute value on success, or NULL on failure.
162 This is the equivalent of the Python expression: o.attr_name.
Guido van Rossuma8275371995-07-18 14:07:00 +0000163
164 */
165
166 /* Implemented elsewhere:
167
168 int PyObject_HasAttr(PyObject *o, PyObject *attr_name);
169
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000170 Returns 1 if o has the attribute attr_name, and 0 otherwise.
171 This is equivalent to the Python expression:
172 hasattr(o,attr_name).
Guido van Rossuma8275371995-07-18 14:07:00 +0000173
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000174 This function always succeeds.
Guido van Rossuma8275371995-07-18 14:07:00 +0000175
176 */
177
178 /* Implemented elsewhere:
179
180 PyObject* PyObject_GetAttr(PyObject *o, PyObject *attr_name);
181
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000182 Retrieve an attributed named attr_name form object o.
183 Returns the attribute value on success, or NULL on failure.
184 This is the equivalent of the Python expression: o.attr_name.
Guido van Rossuma8275371995-07-18 14:07:00 +0000185
186 */
187
188
189 /* Implemented elsewhere:
190
191 int PyObject_SetAttrString(PyObject *o, char *attr_name, PyObject *v);
192
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000193 Set the value of the attribute named attr_name, for object o,
194 to the value, v. Returns -1 on failure. This is
195 the equivalent of the Python statement: o.attr_name=v.
Guido van Rossuma8275371995-07-18 14:07:00 +0000196
197 */
198
199 /* Implemented elsewhere:
200
201 int PyObject_SetAttr(PyObject *o, PyObject *attr_name, PyObject *v);
202
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000203 Set the value of the attribute named attr_name, for object o,
204 to the value, v. Returns -1 on failure. This is
205 the equivalent of the Python statement: o.attr_name=v.
Guido van Rossuma8275371995-07-18 14:07:00 +0000206
207 */
208
209 /* implemented as a macro:
210
211 int PyObject_DelAttrString(PyObject *o, char *attr_name);
212
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000213 Delete attribute named attr_name, for object o. Returns
214 -1 on failure. This is the equivalent of the Python
215 statement: del o.attr_name.
Guido van Rossuma8275371995-07-18 14:07:00 +0000216
217 */
218#define PyObject_DelAttrString(O,A) PyObject_SetAttrString((O),(A),NULL)
219
220 /* implemented as a macro:
221
222 int PyObject_DelAttr(PyObject *o, PyObject *attr_name);
223
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000224 Delete attribute named attr_name, for object o. Returns -1
225 on failure. This is the equivalent of the Python
226 statement: del o.attr_name.
Guido van Rossuma8275371995-07-18 14:07:00 +0000227
228 */
229#define PyObject_DelAttr(O,A) PyObject_SetAttr((O),(A),NULL)
230
Guido van Rossuma8275371995-07-18 14:07:00 +0000231 /* Implemented elsewhere:
232
233 PyObject *PyObject_Repr(PyObject *o);
234
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000235 Compute the string representation of object, o. Returns the
236 string representation on success, NULL on failure. This is
237 the equivalent of the Python expression: repr(o).
Guido van Rossuma8275371995-07-18 14:07:00 +0000238
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000239 Called by the repr() built-in function.
Guido van Rossuma8275371995-07-18 14:07:00 +0000240
241 */
242
243 /* Implemented elsewhere:
244
245 PyObject *PyObject_Str(PyObject *o);
246
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000247 Compute the string representation of object, o. Returns the
248 string representation on success, NULL on failure. This is
249 the equivalent of the Python expression: str(o).)
Guido van Rossuma8275371995-07-18 14:07:00 +0000250
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000251 Called by the str() and print() built-in functions.
Marc-André Lemburgad7c98e2001-01-17 17:09:53 +0000252
253 */
254
Thomas Wouters89f507f2006-12-13 04:49:30 +0000255 /* Declared elsewhere
256
Mark Hammond91a681d2002-08-12 07:21:58 +0000257 PyAPI_FUNC(int) PyCallable_Check(PyObject *o);
Guido van Rossuma8275371995-07-18 14:07:00 +0000258
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000259 Determine if the object, o, is callable. Return 1 if the
260 object is callable and 0 otherwise.
Guido van Rossuma8275371995-07-18 14:07:00 +0000261
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000262 This function always succeeds.
Guido van Rossuma8275371995-07-18 14:07:00 +0000263 */
264
Mark Hammond91a681d2002-08-12 07:21:58 +0000265 PyAPI_FUNC(PyObject *) PyObject_Call(PyObject *callable_object,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000266 PyObject *args, PyObject *kw);
Tim Peters6d6c1a32001-08-02 04:15:00 +0000267
268 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000269 Call a callable Python object, callable_object, with
270 arguments and keywords arguments. The 'args' argument can not be
271 NULL, but the 'kw' argument can be NULL.
Tim Peters6d6c1a32001-08-02 04:15:00 +0000272 */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000273
Mark Hammond91a681d2002-08-12 07:21:58 +0000274 PyAPI_FUNC(PyObject *) PyObject_CallObject(PyObject *callable_object,
Neal Norwitzfe554642006-03-17 06:58:45 +0000275 PyObject *args);
Guido van Rossuma8275371995-07-18 14:07:00 +0000276
277 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000278 Call a callable Python object, callable_object, with
279 arguments given by the tuple, args. If no arguments are
280 needed, then args may be NULL. Returns the result of the
281 call on success, or NULL on failure. This is the equivalent
282 of the Python expression: o(*args).
Guido van Rossuma8275371995-07-18 14:07:00 +0000283 */
284
Mark Hammond91a681d2002-08-12 07:21:58 +0000285 PyAPI_FUNC(PyObject *) PyObject_CallFunction(PyObject *callable_object,
Neal Norwitzfe554642006-03-17 06:58:45 +0000286 char *format, ...);
Guido van Rossuma8275371995-07-18 14:07:00 +0000287
288 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000289 Call a callable Python object, callable_object, with a
290 variable number of C arguments. The C arguments are described
291 using a mkvalue-style format string. The format may be NULL,
292 indicating that no arguments are provided. Returns the
293 result of the call on success, or NULL on failure. This is
294 the equivalent of the Python expression: o(*args).
Guido van Rossuma8275371995-07-18 14:07:00 +0000295 */
296
297
Neal Norwitzfe554642006-03-17 06:58:45 +0000298 PyAPI_FUNC(PyObject *) PyObject_CallMethod(PyObject *o, char *method,
299 char *format, ...);
Guido van Rossuma8275371995-07-18 14:07:00 +0000300
301 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000302 Call the method named m of object o with a variable number of
303 C arguments. The C arguments are described by a mkvalue
304 format string. The format may be NULL, indicating that no
305 arguments are provided. Returns the result of the call on
306 success, or NULL on failure. This is the equivalent of the
307 Python expression: o.method(args).
Fred Drakeb421b8c2001-10-26 16:21:32 +0000308 */
Guido van Rossuma8275371995-07-18 14:07:00 +0000309
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000310 PyAPI_FUNC(PyObject *) _PyObject_CallFunction_SizeT(PyObject *callable,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000311 char *format, ...);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000312 PyAPI_FUNC(PyObject *) _PyObject_CallMethod_SizeT(PyObject *o,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000313 char *name,
314 char *format, ...);
Guido van Rossuma8275371995-07-18 14:07:00 +0000315
Mark Hammond91a681d2002-08-12 07:21:58 +0000316 PyAPI_FUNC(PyObject *) PyObject_CallFunctionObjArgs(PyObject *callable,
Neal Norwitzfe554642006-03-17 06:58:45 +0000317 ...);
Fred Drakeb421b8c2001-10-26 16:21:32 +0000318
319 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000320 Call a callable Python object, callable_object, with a
321 variable number of C arguments. The C arguments are provided
322 as PyObject * values, terminated by a NULL. Returns the
323 result of the call on success, or NULL on failure. This is
324 the equivalent of the Python expression: o(*args).
Fred Drakeb421b8c2001-10-26 16:21:32 +0000325 */
326
327
Mark Hammond91a681d2002-08-12 07:21:58 +0000328 PyAPI_FUNC(PyObject *) PyObject_CallMethodObjArgs(PyObject *o,
Neal Norwitzfe554642006-03-17 06:58:45 +0000329 PyObject *method, ...);
Fred Drakeb421b8c2001-10-26 16:21:32 +0000330
331 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000332 Call the method named m of object o with a variable number of
333 C arguments. The C arguments are provided as PyObject *
334 values, terminated by NULL. Returns the result of the call
335 on success, or NULL on failure. This is the equivalent of
336 the Python expression: o.method(args).
Guido van Rossuma8275371995-07-18 14:07:00 +0000337 */
338
339
340 /* Implemented elsewhere:
341
342 long PyObject_Hash(PyObject *o);
343
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000344 Compute and return the hash, hash_value, of an object, o. On
345 failure, return -1. This is the equivalent of the Python
346 expression: hash(o).
Guido van Rossuma8275371995-07-18 14:07:00 +0000347 */
348
349
350 /* Implemented elsewhere:
351
352 int PyObject_IsTrue(PyObject *o);
353
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000354 Returns 1 if the object, o, is considered to be true, 0 if o is
355 considered to be false and -1 on failure. This is equivalent to the
356 Python expression: not not o
Guido van Rossuma8275371995-07-18 14:07:00 +0000357 */
358
Guido van Rossumc3d3f961998-04-09 17:53:59 +0000359 /* Implemented elsewhere:
360
361 int PyObject_Not(PyObject *o);
362
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000363 Returns 0 if the object, o, is considered to be true, 1 if o is
364 considered to be false and -1 on failure. This is equivalent to the
365 Python expression: not o
Guido van Rossumc3d3f961998-04-09 17:53:59 +0000366 */
367
Mark Hammond91a681d2002-08-12 07:21:58 +0000368 PyAPI_FUNC(PyObject *) PyObject_Type(PyObject *o);
Guido van Rossuma8275371995-07-18 14:07:00 +0000369
370 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000371 On success, returns a type object corresponding to the object
372 type of object o. On failure, returns NULL. This is
373 equivalent to the Python expression: type(o).
Guido van Rossuma8275371995-07-18 14:07:00 +0000374 */
375
Martin v. Löwis18e16552006-02-15 17:27:45 +0000376 PyAPI_FUNC(Py_ssize_t) PyObject_Size(PyObject *o);
Jeremy Hylton6253f832000-07-12 12:56:19 +0000377
Guido van Rossuma8275371995-07-18 14:07:00 +0000378 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000379 Return the size of object o. If the object, o, provides
380 both sequence and mapping protocols, the sequence size is
381 returned. On error, -1 is returned. This is the equivalent
382 to the Python expression: len(o).
Guido van Rossuma8275371995-07-18 14:07:00 +0000383 */
384
Marc-André Lemburgcf5f3582000-07-17 09:22:55 +0000385 /* For DLL compatibility */
386#undef PyObject_Length
Martin v. Löwis18e16552006-02-15 17:27:45 +0000387 PyAPI_FUNC(Py_ssize_t) PyObject_Length(PyObject *o);
Marc-André Lemburgcf5f3582000-07-17 09:22:55 +0000388#define PyObject_Length PyObject_Size
389
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000390#ifndef Py_LIMITED_API
Christian Heimes255f53b2007-12-08 15:33:56 +0000391 PyAPI_FUNC(Py_ssize_t) _PyObject_LengthHint(PyObject *o, Py_ssize_t);
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000392#endif
Raymond Hettinger6b27cda2005-09-24 21:23:05 +0000393
394 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000395 Guess the size of object o using len(o) or o.__length_hint__().
396 If neither of those return a non-negative value, then return the
397 default value. If one of the calls fails, this function returns -1.
Raymond Hettinger6b27cda2005-09-24 21:23:05 +0000398 */
Marc-André Lemburgcf5f3582000-07-17 09:22:55 +0000399
Mark Hammond91a681d2002-08-12 07:21:58 +0000400 PyAPI_FUNC(PyObject *) PyObject_GetItem(PyObject *o, PyObject *key);
Guido van Rossuma8275371995-07-18 14:07:00 +0000401
402 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000403 Return element of o corresponding to the object, key, or NULL
404 on failure. This is the equivalent of the Python expression:
405 o[key].
Guido van Rossuma8275371995-07-18 14:07:00 +0000406 */
407
Mark Hammond91a681d2002-08-12 07:21:58 +0000408 PyAPI_FUNC(int) PyObject_SetItem(PyObject *o, PyObject *key, PyObject *v);
Guido van Rossuma8275371995-07-18 14:07:00 +0000409
410 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000411 Map the object, key, to the value, v. Returns
412 -1 on failure. This is the equivalent of the Python
413 statement: o[key]=v.
Guido van Rossuma8275371995-07-18 14:07:00 +0000414 */
415
Mark Hammond91a681d2002-08-12 07:21:58 +0000416 PyAPI_FUNC(int) PyObject_DelItemString(PyObject *o, char *key);
Martin v. Löwisb0d71d02002-01-05 10:50:30 +0000417
418 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000419 Remove the mapping for object, key, from the object *o.
420 Returns -1 on failure. This is equivalent to
421 the Python statement: del o[key].
Martin v. Löwisb0d71d02002-01-05 10:50:30 +0000422 */
423
Mark Hammond91a681d2002-08-12 07:21:58 +0000424 PyAPI_FUNC(int) PyObject_DelItem(PyObject *o, PyObject *key);
Guido van Rossum6cdc6f41996-08-21 17:41:54 +0000425
426 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000427 Delete the mapping for key from *o. Returns -1 on failure.
428 This is the equivalent of the Python statement: del o[key].
Guido van Rossum6cdc6f41996-08-21 17:41:54 +0000429 */
430
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000431 /* old buffer API
432 FIXME: usage of these should all be replaced in Python itself
433 but for backwards compatibility we will implement them.
434 Their usage without a corresponding "unlock" mechansim
435 may create issues (but they would already be there). */
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000436
Mark Hammond91a681d2002-08-12 07:21:58 +0000437 PyAPI_FUNC(int) PyObject_AsCharBuffer(PyObject *obj,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000438 const char **buffer,
439 Py_ssize_t *buffer_len);
Guido van Rossumfd9eed32000-03-10 22:35:06 +0000440
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000441 /*
442 Takes an arbitrary object which must support the (character,
443 single segment) buffer interface and returns a pointer to a
444 read-only memory location useable as character based input
445 for subsequent processing.
Guido van Rossumfd9eed32000-03-10 22:35:06 +0000446
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000447 0 is returned on success. buffer and buffer_len are only
448 set in case no error occurs. Otherwise, -1 is returned and
449 an exception set.
Guido van Rossumfd9eed32000-03-10 22:35:06 +0000450 */
451
Mark Hammond91a681d2002-08-12 07:21:58 +0000452 PyAPI_FUNC(int) PyObject_CheckReadBuffer(PyObject *obj);
Jeremy Hylton89c3a222001-11-09 21:59:42 +0000453
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000454 /*
455 Checks whether an arbitrary object supports the (character,
456 single segment) buffer interface. Returns 1 on success, 0
457 on failure.
Jeremy Hylton89c3a222001-11-09 21:59:42 +0000458 */
459
Mark Hammond91a681d2002-08-12 07:21:58 +0000460 PyAPI_FUNC(int) PyObject_AsReadBuffer(PyObject *obj,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000461 const void **buffer,
462 Py_ssize_t *buffer_len);
Guido van Rossumfd9eed32000-03-10 22:35:06 +0000463
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000464 /*
465 Same as PyObject_AsCharBuffer() except that this API expects
466 (readable, single segment) buffer interface and returns a
467 pointer to a read-only memory location which can contain
468 arbitrary data.
Guido van Rossumfd9eed32000-03-10 22:35:06 +0000469
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000470 0 is returned on success. buffer and buffer_len are only
471 set in case no error occurrs. Otherwise, -1 is returned and
472 an exception set.
Guido van Rossumfd9eed32000-03-10 22:35:06 +0000473 */
474
Mark Hammond91a681d2002-08-12 07:21:58 +0000475 PyAPI_FUNC(int) PyObject_AsWriteBuffer(PyObject *obj,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000476 void **buffer,
477 Py_ssize_t *buffer_len);
Guido van Rossumfd9eed32000-03-10 22:35:06 +0000478
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000479 /*
480 Takes an arbitrary object which must support the (writable,
481 single segment) buffer interface and returns a pointer to a
482 writable memory location in buffer of size buffer_len.
Guido van Rossumfd9eed32000-03-10 22:35:06 +0000483
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000484 0 is returned on success. buffer and buffer_len are only
485 set in case no error occurrs. Otherwise, -1 is returned and
486 an exception set.
Guido van Rossumfd9eed32000-03-10 22:35:06 +0000487 */
Guido van Rossuma8275371995-07-18 14:07:00 +0000488
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000489 /* new buffer API */
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000490
491#define PyObject_CheckBuffer(obj) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000492 (((obj)->ob_type->tp_as_buffer != NULL) && \
493 ((obj)->ob_type->tp_as_buffer->bf_getbuffer != NULL))
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000494
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000495 /* Return 1 if the getbuffer function is available, otherwise
496 return 0 */
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000497
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000498 PyAPI_FUNC(int) PyObject_GetBuffer(PyObject *obj, Py_buffer *view,
499 int flags);
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000500
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000501 /* This is a C-API version of the getbuffer function call. It checks
502 to make sure object has the required function pointer and issues the
503 call. Returns -1 and raises an error on failure and returns 0 on
504 success
505 */
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000506
507
Travis E. Oliphant8ae62b62007-09-23 02:00:13 +0000508 PyAPI_FUNC(void *) PyBuffer_GetPointer(Py_buffer *view, Py_ssize_t *indices);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000509
510 /* Get the memory area pointed to by the indices for the buffer given.
511 Note that view->ndim is the assumed size of indices
512 */
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000513
514 PyAPI_FUNC(int) PyBuffer_SizeFromFormat(const char *);
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000515
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000516 /* Return the implied itemsize of the data-format area from a
517 struct-style description */
518
519
520
Travis E. Oliphant8ae62b62007-09-23 02:00:13 +0000521 PyAPI_FUNC(int) PyBuffer_ToContiguous(void *buf, Py_buffer *view,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000522 Py_ssize_t len, char fort);
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000523
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000524 PyAPI_FUNC(int) PyBuffer_FromContiguous(Py_buffer *view, void *buf,
525 Py_ssize_t len, char fort);
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000526
527
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000528 /* Copy len bytes of data from the contiguous chunk of memory
529 pointed to by buf into the buffer exported by obj. Return
530 0 on success and return -1 and raise a PyBuffer_Error on
531 error (i.e. the object does not have a buffer interface or
532 it is not working).
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000533
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000534 If fort is 'F', then if the object is multi-dimensional,
535 then the data will be copied into the array in
536 Fortran-style (first dimension varies the fastest). If
537 fort is 'C', then the data will be copied into the array
538 in C-style (last dimension varies the fastest). If fort
539 is 'A', then it does not matter and the copy will be made
540 in whatever way is more efficient.
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000541
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000542 */
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000543
544 PyAPI_FUNC(int) PyObject_CopyData(PyObject *dest, PyObject *src);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000545
546 /* Copy the data from the src buffer to the buffer of destination
547 */
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000548
Christian Heimesc36625b2008-01-04 13:33:00 +0000549 PyAPI_FUNC(int) PyBuffer_IsContiguous(Py_buffer *view, char fort);
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000550
551
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000552 PyAPI_FUNC(void) PyBuffer_FillContiguousStrides(int ndims,
553 Py_ssize_t *shape,
554 Py_ssize_t *strides,
555 int itemsize,
556 char fort);
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000557
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000558 /* Fill the strides array with byte-strides of a contiguous
559 (Fortran-style if fort is 'F' or C-style otherwise)
560 array of the given shape with the given number of bytes
561 per element.
562 */
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000563
Martin v. Löwis423be952008-08-13 15:53:07 +0000564 PyAPI_FUNC(int) PyBuffer_FillInfo(Py_buffer *view, PyObject *o, void *buf,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000565 Py_ssize_t len, int readonly,
566 int flags);
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000567
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000568 /* Fills in a buffer-info structure correctly for an exporter
569 that can only share a contiguous chunk of memory of
570 "unsigned bytes" of the given length. Returns 0 on success
571 and -1 (with raising an error) on error.
572 */
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000573
Martin v. Löwis423be952008-08-13 15:53:07 +0000574 PyAPI_FUNC(void) PyBuffer_Release(Py_buffer *view);
575
576 /* Releases a Py_buffer obtained from getbuffer ParseTuple's s*.
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000577 */
Travis E. Oliphantb99f7622007-08-18 11:21:56 +0000578
Eric Smith8fd3eba2008-02-17 19:48:00 +0000579 PyAPI_FUNC(PyObject *) PyObject_Format(PyObject* obj,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000580 PyObject *format_spec);
Eric Smith8fd3eba2008-02-17 19:48:00 +0000581 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000582 Takes an arbitrary object and returns the result of
583 calling obj.__format__(format_spec).
Eric Smith8fd3eba2008-02-17 19:48:00 +0000584 */
585
Guido van Rossum213c7a62001-04-23 14:08:49 +0000586/* Iterators */
587
Mark Hammond91a681d2002-08-12 07:21:58 +0000588 PyAPI_FUNC(PyObject *) PyObject_GetIter(PyObject *);
Guido van Rossum59d1d2b2001-04-20 19:13:02 +0000589 /* Takes an object and returns an iterator for it.
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000590 This is typically a new iterator but if the argument
591 is an iterator, this returns itself. */
Guido van Rossum59d1d2b2001-04-20 19:13:02 +0000592
Guido van Rossum213c7a62001-04-23 14:08:49 +0000593#define PyIter_Check(obj) \
Amaury Forgeot d'Arcf343e012009-01-12 23:58:21 +0000594 ((obj)->ob_type->tp_iternext != NULL && \
595 (obj)->ob_type->tp_iternext != &_PyObject_NextNotImplemented)
Guido van Rossum213c7a62001-04-23 14:08:49 +0000596
Mark Hammond91a681d2002-08-12 07:21:58 +0000597 PyAPI_FUNC(PyObject *) PyIter_Next(PyObject *);
Guido van Rossum213c7a62001-04-23 14:08:49 +0000598 /* Takes an iterator object and calls its tp_iternext slot,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000599 returning the next value. If the iterator is exhausted,
600 this returns NULL without setting an exception.
601 NULL with an exception means an error occurred. */
Guido van Rossum213c7a62001-04-23 14:08:49 +0000602
Guido van Rossuma8275371995-07-18 14:07:00 +0000603/* Number Protocol:*/
604
Mark Hammond91a681d2002-08-12 07:21:58 +0000605 PyAPI_FUNC(int) PyNumber_Check(PyObject *o);
Guido van Rossuma8275371995-07-18 14:07:00 +0000606
607 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000608 Returns 1 if the object, o, provides numeric protocols, and
609 false otherwise.
Guido van Rossuma8275371995-07-18 14:07:00 +0000610
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000611 This function always succeeds.
Guido van Rossuma8275371995-07-18 14:07:00 +0000612 */
613
Mark Hammond91a681d2002-08-12 07:21:58 +0000614 PyAPI_FUNC(PyObject *) PyNumber_Add(PyObject *o1, PyObject *o2);
Guido van Rossuma8275371995-07-18 14:07:00 +0000615
616 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000617 Returns the result of adding o1 and o2, or null on failure.
618 This is the equivalent of the Python expression: o1+o2.
Guido van Rossuma8275371995-07-18 14:07:00 +0000619 */
620
Mark Hammond91a681d2002-08-12 07:21:58 +0000621 PyAPI_FUNC(PyObject *) PyNumber_Subtract(PyObject *o1, PyObject *o2);
Guido van Rossuma8275371995-07-18 14:07:00 +0000622
623 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000624 Returns the result of subtracting o2 from o1, or null on
625 failure. This is the equivalent of the Python expression:
626 o1-o2.
Guido van Rossuma8275371995-07-18 14:07:00 +0000627 */
628
Mark Hammond91a681d2002-08-12 07:21:58 +0000629 PyAPI_FUNC(PyObject *) PyNumber_Multiply(PyObject *o1, PyObject *o2);
Guido van Rossuma8275371995-07-18 14:07:00 +0000630
631 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000632 Returns the result of multiplying o1 and o2, or null on
633 failure. This is the equivalent of the Python expression:
634 o1*o2.
Guido van Rossuma8275371995-07-18 14:07:00 +0000635 */
636
Mark Hammond91a681d2002-08-12 07:21:58 +0000637 PyAPI_FUNC(PyObject *) PyNumber_FloorDivide(PyObject *o1, PyObject *o2);
Guido van Rossum4668b002001-08-08 05:00:18 +0000638
639 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000640 Returns the result of dividing o1 by o2 giving an integral result,
641 or null on failure.
642 This is the equivalent of the Python expression: o1//o2.
Guido van Rossum4668b002001-08-08 05:00:18 +0000643 */
644
Mark Hammond91a681d2002-08-12 07:21:58 +0000645 PyAPI_FUNC(PyObject *) PyNumber_TrueDivide(PyObject *o1, PyObject *o2);
Guido van Rossum4668b002001-08-08 05:00:18 +0000646
647 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000648 Returns the result of dividing o1 by o2 giving a float result,
649 or null on failure.
650 This is the equivalent of the Python expression: o1/o2.
Guido van Rossum4668b002001-08-08 05:00:18 +0000651 */
652
Mark Hammond91a681d2002-08-12 07:21:58 +0000653 PyAPI_FUNC(PyObject *) PyNumber_Remainder(PyObject *o1, PyObject *o2);
Guido van Rossuma8275371995-07-18 14:07:00 +0000654
655 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000656 Returns the remainder of dividing o1 by o2, or null on
657 failure. This is the equivalent of the Python expression:
658 o1%o2.
Guido van Rossuma8275371995-07-18 14:07:00 +0000659 */
660
Mark Hammond91a681d2002-08-12 07:21:58 +0000661 PyAPI_FUNC(PyObject *) PyNumber_Divmod(PyObject *o1, PyObject *o2);
Guido van Rossuma8275371995-07-18 14:07:00 +0000662
663 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000664 See the built-in function divmod. Returns NULL on failure.
665 This is the equivalent of the Python expression:
666 divmod(o1,o2).
Guido van Rossuma8275371995-07-18 14:07:00 +0000667 */
668
Mark Hammond91a681d2002-08-12 07:21:58 +0000669 PyAPI_FUNC(PyObject *) PyNumber_Power(PyObject *o1, PyObject *o2,
Neal Norwitzfe554642006-03-17 06:58:45 +0000670 PyObject *o3);
Guido van Rossuma8275371995-07-18 14:07:00 +0000671
672 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000673 See the built-in function pow. Returns NULL on failure.
674 This is the equivalent of the Python expression:
675 pow(o1,o2,o3), where o3 is optional.
Guido van Rossuma8275371995-07-18 14:07:00 +0000676 */
677
Mark Hammond91a681d2002-08-12 07:21:58 +0000678 PyAPI_FUNC(PyObject *) PyNumber_Negative(PyObject *o);
Guido van Rossuma8275371995-07-18 14:07:00 +0000679
680 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000681 Returns the negation of o on success, or null on failure.
682 This is the equivalent of the Python expression: -o.
Guido van Rossuma8275371995-07-18 14:07:00 +0000683 */
684
Mark Hammond91a681d2002-08-12 07:21:58 +0000685 PyAPI_FUNC(PyObject *) PyNumber_Positive(PyObject *o);
Guido van Rossuma8275371995-07-18 14:07:00 +0000686
687 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000688 Returns the (what?) of o on success, or NULL on failure.
689 This is the equivalent of the Python expression: +o.
Guido van Rossuma8275371995-07-18 14:07:00 +0000690 */
691
Mark Hammond91a681d2002-08-12 07:21:58 +0000692 PyAPI_FUNC(PyObject *) PyNumber_Absolute(PyObject *o);
Guido van Rossuma8275371995-07-18 14:07:00 +0000693
694 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000695 Returns the absolute value of o, or null on failure. This is
696 the equivalent of the Python expression: abs(o).
Guido van Rossuma8275371995-07-18 14:07:00 +0000697 */
698
Mark Hammond91a681d2002-08-12 07:21:58 +0000699 PyAPI_FUNC(PyObject *) PyNumber_Invert(PyObject *o);
Guido van Rossuma8275371995-07-18 14:07:00 +0000700
701 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000702 Returns the bitwise negation of o on success, or NULL on
703 failure. This is the equivalent of the Python expression:
704 ~o.
Guido van Rossuma8275371995-07-18 14:07:00 +0000705 */
706
Mark Hammond91a681d2002-08-12 07:21:58 +0000707 PyAPI_FUNC(PyObject *) PyNumber_Lshift(PyObject *o1, PyObject *o2);
Guido van Rossuma8275371995-07-18 14:07:00 +0000708
709 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000710 Returns the result of left shifting o1 by o2 on success, or
711 NULL on failure. This is the equivalent of the Python
712 expression: o1 << o2.
Guido van Rossuma8275371995-07-18 14:07:00 +0000713 */
714
Mark Hammond91a681d2002-08-12 07:21:58 +0000715 PyAPI_FUNC(PyObject *) PyNumber_Rshift(PyObject *o1, PyObject *o2);
Guido van Rossuma8275371995-07-18 14:07:00 +0000716
717 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000718 Returns the result of right shifting o1 by o2 on success, or
719 NULL on failure. This is the equivalent of the Python
720 expression: o1 >> o2.
Guido van Rossuma8275371995-07-18 14:07:00 +0000721 */
722
Mark Hammond91a681d2002-08-12 07:21:58 +0000723 PyAPI_FUNC(PyObject *) PyNumber_And(PyObject *o1, PyObject *o2);
Guido van Rossuma8275371995-07-18 14:07:00 +0000724
725 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000726 Returns the result of bitwise and of o1 and o2 on success, or
727 NULL on failure. This is the equivalent of the Python
728 expression: o1&o2.
Guido van Rossuma8275371995-07-18 14:07:00 +0000729
Guido van Rossuma8275371995-07-18 14:07:00 +0000730 */
731
Mark Hammond91a681d2002-08-12 07:21:58 +0000732 PyAPI_FUNC(PyObject *) PyNumber_Xor(PyObject *o1, PyObject *o2);
Guido van Rossuma8275371995-07-18 14:07:00 +0000733
734 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000735 Returns the bitwise exclusive or of o1 by o2 on success, or
736 NULL on failure. This is the equivalent of the Python
737 expression: o1^o2.
Guido van Rossuma8275371995-07-18 14:07:00 +0000738 */
739
Mark Hammond91a681d2002-08-12 07:21:58 +0000740 PyAPI_FUNC(PyObject *) PyNumber_Or(PyObject *o1, PyObject *o2);
Guido van Rossuma8275371995-07-18 14:07:00 +0000741
742 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000743 Returns the result of bitwise or on o1 and o2 on success, or
744 NULL on failure. This is the equivalent of the Python
745 expression: o1|o2.
Guido van Rossuma8275371995-07-18 14:07:00 +0000746 */
747
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000748#define PyIndex_Check(obj) \
749 ((obj)->ob_type->tp_as_number != NULL && \
750 (obj)->ob_type->tp_as_number->nb_index != NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000751
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000752 PyAPI_FUNC(PyObject *) PyNumber_Index(PyObject *o);
Guido van Rossum38fff8c2006-03-07 18:50:55 +0000753
754 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000755 Returns the object converted to a Python long or int
756 or NULL with an error raised on failure.
Guido van Rossum38fff8c2006-03-07 18:50:55 +0000757 */
758
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000759 PyAPI_FUNC(Py_ssize_t) PyNumber_AsSsize_t(PyObject *o, PyObject *exc);
760
761 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000762 Returns the Integral instance converted to an int. The
763 instance is expected to be int or long or have an __int__
764 method. Steals integral's reference. error_format will be
765 used to create the TypeError if integral isn't actually an
766 Integral instance. error_format should be a format string
767 that can accept a char* naming integral's type.
Christian Heimes15ebc882008-02-04 18:48:49 +0000768 */
769
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000770#ifndef Py_LIMITED_API
Christian Heimes15ebc882008-02-04 18:48:49 +0000771 PyAPI_FUNC(PyObject *) _PyNumber_ConvertIntegralToInt(
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000772 PyObject *integral,
773 const char* error_format);
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000774#endif
Christian Heimes15ebc882008-02-04 18:48:49 +0000775
776 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000777 Returns the object converted to Py_ssize_t by going through
778 PyNumber_Index first. If an overflow error occurs while
779 converting the int-or-long to Py_ssize_t, then the second argument
780 is the error-type to return. If it is NULL, then the overflow error
781 is cleared and the value is clipped.
Thomas Wouters00ee7ba2006-08-21 19:07:27 +0000782 */
Guido van Rossum38fff8c2006-03-07 18:50:55 +0000783
Mark Dickinsond7467682009-01-10 22:14:33 +0000784 PyAPI_FUNC(PyObject *) PyNumber_Long(PyObject *o);
785
Guido van Rossuma8275371995-07-18 14:07:00 +0000786 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000787 Returns the o converted to an integer object on success, or
788 NULL on failure. This is the equivalent of the Python
789 expression: int(o).
Guido van Rossuma8275371995-07-18 14:07:00 +0000790 */
791
Mark Hammond91a681d2002-08-12 07:21:58 +0000792 PyAPI_FUNC(PyObject *) PyNumber_Float(PyObject *o);
Guido van Rossuma8275371995-07-18 14:07:00 +0000793
794 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000795 Returns the o converted to a float object on success, or NULL
796 on failure. This is the equivalent of the Python expression:
797 float(o).
Guido van Rossuma8275371995-07-18 14:07:00 +0000798 */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000799
Thomas Woutersdd8dbdb2000-08-24 20:09:45 +0000800/* In-place variants of (some of) the above number protocol functions */
801
Mark Hammond91a681d2002-08-12 07:21:58 +0000802 PyAPI_FUNC(PyObject *) PyNumber_InPlaceAdd(PyObject *o1, PyObject *o2);
Thomas Woutersdd8dbdb2000-08-24 20:09:45 +0000803
804 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000805 Returns the result of adding o2 to o1, possibly in-place, or null
806 on failure. This is the equivalent of the Python expression:
807 o1 += o2.
Thomas Woutersdd8dbdb2000-08-24 20:09:45 +0000808 */
809
Mark Hammond91a681d2002-08-12 07:21:58 +0000810 PyAPI_FUNC(PyObject *) PyNumber_InPlaceSubtract(PyObject *o1, PyObject *o2);
Thomas Woutersdd8dbdb2000-08-24 20:09:45 +0000811
812 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000813 Returns the result of subtracting o2 from o1, possibly in-place or
814 null on failure. This is the equivalent of the Python expression:
815 o1 -= o2.
Thomas Woutersdd8dbdb2000-08-24 20:09:45 +0000816 */
817
Mark Hammond91a681d2002-08-12 07:21:58 +0000818 PyAPI_FUNC(PyObject *) PyNumber_InPlaceMultiply(PyObject *o1, PyObject *o2);
Thomas Woutersdd8dbdb2000-08-24 20:09:45 +0000819
820 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000821 Returns the result of multiplying o1 by o2, possibly in-place, or
822 null on failure. This is the equivalent of the Python expression:
823 o1 *= o2.
Thomas Woutersdd8dbdb2000-08-24 20:09:45 +0000824 */
825
Mark Hammond91a681d2002-08-12 07:21:58 +0000826 PyAPI_FUNC(PyObject *) PyNumber_InPlaceFloorDivide(PyObject *o1,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000827 PyObject *o2);
Guido van Rossum4668b002001-08-08 05:00:18 +0000828
829 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000830 Returns the result of dividing o1 by o2 giving an integral result,
831 possibly in-place, or null on failure.
832 This is the equivalent of the Python expression:
833 o1 /= o2.
Guido van Rossum4668b002001-08-08 05:00:18 +0000834 */
835
Mark Hammond91a681d2002-08-12 07:21:58 +0000836 PyAPI_FUNC(PyObject *) PyNumber_InPlaceTrueDivide(PyObject *o1,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000837 PyObject *o2);
Guido van Rossum4668b002001-08-08 05:00:18 +0000838
839 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000840 Returns the result of dividing o1 by o2 giving a float result,
841 possibly in-place, or null on failure.
842 This is the equivalent of the Python expression:
843 o1 /= o2.
Guido van Rossum4668b002001-08-08 05:00:18 +0000844 */
845
Mark Hammond91a681d2002-08-12 07:21:58 +0000846 PyAPI_FUNC(PyObject *) PyNumber_InPlaceRemainder(PyObject *o1, PyObject *o2);
Thomas Woutersdd8dbdb2000-08-24 20:09:45 +0000847
848 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000849 Returns the remainder of dividing o1 by o2, possibly in-place, or
850 null on failure. This is the equivalent of the Python expression:
851 o1 %= o2.
Thomas Woutersdd8dbdb2000-08-24 20:09:45 +0000852 */
853
Mark Hammond91a681d2002-08-12 07:21:58 +0000854 PyAPI_FUNC(PyObject *) PyNumber_InPlacePower(PyObject *o1, PyObject *o2,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000855 PyObject *o3);
Thomas Woutersdd8dbdb2000-08-24 20:09:45 +0000856
857 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000858 Returns the result of raising o1 to the power of o2, possibly
859 in-place, or null on failure. This is the equivalent of the Python
860 expression: o1 **= o2, or pow(o1, o2, o3) if o3 is present.
Thomas Woutersdd8dbdb2000-08-24 20:09:45 +0000861 */
862
Mark Hammond91a681d2002-08-12 07:21:58 +0000863 PyAPI_FUNC(PyObject *) PyNumber_InPlaceLshift(PyObject *o1, PyObject *o2);
Thomas Woutersdd8dbdb2000-08-24 20:09:45 +0000864
865 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000866 Returns the result of left shifting o1 by o2, possibly in-place, or
867 null on failure. This is the equivalent of the Python expression:
868 o1 <<= o2.
Thomas Woutersdd8dbdb2000-08-24 20:09:45 +0000869 */
870
Mark Hammond91a681d2002-08-12 07:21:58 +0000871 PyAPI_FUNC(PyObject *) PyNumber_InPlaceRshift(PyObject *o1, PyObject *o2);
Thomas Woutersdd8dbdb2000-08-24 20:09:45 +0000872
873 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000874 Returns the result of right shifting o1 by o2, possibly in-place or
875 null on failure. This is the equivalent of the Python expression:
876 o1 >>= o2.
Thomas Woutersdd8dbdb2000-08-24 20:09:45 +0000877 */
878
Mark Hammond91a681d2002-08-12 07:21:58 +0000879 PyAPI_FUNC(PyObject *) PyNumber_InPlaceAnd(PyObject *o1, PyObject *o2);
Thomas Woutersdd8dbdb2000-08-24 20:09:45 +0000880
881 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000882 Returns the result of bitwise and of o1 and o2, possibly in-place,
883 or null on failure. This is the equivalent of the Python
884 expression: o1 &= o2.
Thomas Woutersdd8dbdb2000-08-24 20:09:45 +0000885 */
886
Mark Hammond91a681d2002-08-12 07:21:58 +0000887 PyAPI_FUNC(PyObject *) PyNumber_InPlaceXor(PyObject *o1, PyObject *o2);
Thomas Woutersdd8dbdb2000-08-24 20:09:45 +0000888
889 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000890 Returns the bitwise exclusive or of o1 by o2, possibly in-place, or
891 null on failure. This is the equivalent of the Python expression:
892 o1 ^= o2.
Thomas Woutersdd8dbdb2000-08-24 20:09:45 +0000893 */
894
Mark Hammond91a681d2002-08-12 07:21:58 +0000895 PyAPI_FUNC(PyObject *) PyNumber_InPlaceOr(PyObject *o1, PyObject *o2);
Thomas Woutersdd8dbdb2000-08-24 20:09:45 +0000896
897 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000898 Returns the result of bitwise or of o1 and o2, possibly in-place,
899 or null on failure. This is the equivalent of the Python
900 expression: o1 |= o2.
Thomas Woutersdd8dbdb2000-08-24 20:09:45 +0000901 */
902
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000903 PyAPI_FUNC(PyObject *) PyNumber_ToBase(PyObject *n, int base);
904
905 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000906 Returns the integer n converted to a string with a base, with a base
907 marker of 0b, 0o or 0x prefixed if applicable.
908 If n is not an int object, it is converted with PyNumber_Index first.
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000909 */
910
Guido van Rossuma8275371995-07-18 14:07:00 +0000911
912/* Sequence protocol:*/
913
Mark Hammond91a681d2002-08-12 07:21:58 +0000914 PyAPI_FUNC(int) PySequence_Check(PyObject *o);
Guido van Rossuma8275371995-07-18 14:07:00 +0000915
916 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000917 Return 1 if the object provides sequence protocol, and zero
918 otherwise.
Guido van Rossuma8275371995-07-18 14:07:00 +0000919
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000920 This function always succeeds.
Guido van Rossuma8275371995-07-18 14:07:00 +0000921 */
922
Martin v. Löwis18e16552006-02-15 17:27:45 +0000923 PyAPI_FUNC(Py_ssize_t) PySequence_Size(PyObject *o);
Jeremy Hylton6253f832000-07-12 12:56:19 +0000924
Guido van Rossum4f4ce681996-07-21 02:22:56 +0000925 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000926 Return the size of sequence object o, or -1 on failure.
Guido van Rossum4f4ce681996-07-21 02:22:56 +0000927 */
928
Marc-André Lemburgcf5f3582000-07-17 09:22:55 +0000929 /* For DLL compatibility */
930#undef PySequence_Length
Martin v. Löwis18e16552006-02-15 17:27:45 +0000931 PyAPI_FUNC(Py_ssize_t) PySequence_Length(PyObject *o);
Marc-André Lemburgcf5f3582000-07-17 09:22:55 +0000932#define PySequence_Length PySequence_Size
933
934
Mark Hammond91a681d2002-08-12 07:21:58 +0000935 PyAPI_FUNC(PyObject *) PySequence_Concat(PyObject *o1, PyObject *o2);
Guido van Rossuma8275371995-07-18 14:07:00 +0000936
937 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000938 Return the concatenation of o1 and o2 on success, and NULL on
939 failure. This is the equivalent of the Python
940 expression: o1+o2.
Guido van Rossuma8275371995-07-18 14:07:00 +0000941 */
942
Martin v. Löwis18e16552006-02-15 17:27:45 +0000943 PyAPI_FUNC(PyObject *) PySequence_Repeat(PyObject *o, Py_ssize_t count);
Guido van Rossuma8275371995-07-18 14:07:00 +0000944
945 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000946 Return the result of repeating sequence object o count times,
947 or NULL on failure. This is the equivalent of the Python
948 expression: o1*count.
Guido van Rossuma8275371995-07-18 14:07:00 +0000949 */
950
Martin v. Löwis18e16552006-02-15 17:27:45 +0000951 PyAPI_FUNC(PyObject *) PySequence_GetItem(PyObject *o, Py_ssize_t i);
Guido van Rossuma8275371995-07-18 14:07:00 +0000952
953 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000954 Return the ith element of o, or NULL on failure. This is the
955 equivalent of the Python expression: o[i].
Guido van Rossuma8275371995-07-18 14:07:00 +0000956 */
957
Martin v. Löwis18e16552006-02-15 17:27:45 +0000958 PyAPI_FUNC(PyObject *) PySequence_GetSlice(PyObject *o, Py_ssize_t i1, Py_ssize_t i2);
Guido van Rossuma8275371995-07-18 14:07:00 +0000959
960 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000961 Return the slice of sequence object o between i1 and i2, or
962 NULL on failure. This is the equivalent of the Python
963 expression: o[i1:i2].
Guido van Rossuma8275371995-07-18 14:07:00 +0000964 */
965
Martin v. Löwis18e16552006-02-15 17:27:45 +0000966 PyAPI_FUNC(int) PySequence_SetItem(PyObject *o, Py_ssize_t i, PyObject *v);
Guido van Rossuma8275371995-07-18 14:07:00 +0000967
968 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000969 Assign object v to the ith element of o. Returns
970 -1 on failure. This is the equivalent of the Python
971 statement: o[i]=v.
Guido van Rossuma8275371995-07-18 14:07:00 +0000972 */
973
Martin v. Löwis18e16552006-02-15 17:27:45 +0000974 PyAPI_FUNC(int) PySequence_DelItem(PyObject *o, Py_ssize_t i);
Guido van Rossum6cdc6f41996-08-21 17:41:54 +0000975
976 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000977 Delete the ith element of object v. Returns
978 -1 on failure. This is the equivalent of the Python
979 statement: del o[i].
Guido van Rossum6cdc6f41996-08-21 17:41:54 +0000980 */
981
Martin v. Löwis18e16552006-02-15 17:27:45 +0000982 PyAPI_FUNC(int) PySequence_SetSlice(PyObject *o, Py_ssize_t i1, Py_ssize_t i2,
Neal Norwitzfe554642006-03-17 06:58:45 +0000983 PyObject *v);
Guido van Rossuma8275371995-07-18 14:07:00 +0000984
985 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000986 Assign the sequence object, v, to the slice in sequence
987 object, o, from i1 to i2. Returns -1 on failure. This is the
988 equivalent of the Python statement: o[i1:i2]=v.
Guido van Rossuma8275371995-07-18 14:07:00 +0000989 */
990
Martin v. Löwis18e16552006-02-15 17:27:45 +0000991 PyAPI_FUNC(int) PySequence_DelSlice(PyObject *o, Py_ssize_t i1, Py_ssize_t i2);
Guido van Rossum6cdc6f41996-08-21 17:41:54 +0000992
993 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000994 Delete the slice in sequence object, o, from i1 to i2.
995 Returns -1 on failure. This is the equivalent of the Python
996 statement: del o[i1:i2].
Guido van Rossum6cdc6f41996-08-21 17:41:54 +0000997 */
998
Mark Hammond91a681d2002-08-12 07:21:58 +0000999 PyAPI_FUNC(PyObject *) PySequence_Tuple(PyObject *o);
Guido van Rossuma8275371995-07-18 14:07:00 +00001000
1001 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001002 Returns the sequence, o, as a tuple on success, and NULL on failure.
1003 This is equivalent to the Python expression: tuple(o)
Guido van Rossuma8275371995-07-18 14:07:00 +00001004 */
1005
Andrew M. Kuchling74042d62000-06-18 18:43:14 +00001006
Mark Hammond91a681d2002-08-12 07:21:58 +00001007 PyAPI_FUNC(PyObject *) PySequence_List(PyObject *o);
Guido van Rossum2adf06b1996-12-05 21:48:50 +00001008 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001009 Returns the sequence, o, as a list on success, and NULL on failure.
1010 This is equivalent to the Python expression: list(o)
Guido van Rossum2adf06b1996-12-05 21:48:50 +00001011 */
Guido van Rossumf39fc431997-03-04 18:31:47 +00001012
Mark Hammond91a681d2002-08-12 07:21:58 +00001013 PyAPI_FUNC(PyObject *) PySequence_Fast(PyObject *o, const char* m);
Andrew M. Kuchling74042d62000-06-18 18:43:14 +00001014 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001015 Returns the sequence, o, as a tuple, unless it's already a
1016 tuple or list. Use PySequence_Fast_GET_ITEM to access the
1017 members of this list, and PySequence_Fast_GET_SIZE to get its length.
Andrew M. Kuchling74042d62000-06-18 18:43:14 +00001018
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001019 Returns NULL on failure. If the object does not support iteration,
1020 raises a TypeError exception with m as the message text.
Andrew M. Kuchling74042d62000-06-18 18:43:14 +00001021 */
1022
Tim Peters1fc240e2001-10-26 05:06:50 +00001023#define PySequence_Fast_GET_SIZE(o) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001024 (PyList_Check(o) ? PyList_GET_SIZE(o) : PyTuple_GET_SIZE(o))
Tim Peters1fc240e2001-10-26 05:06:50 +00001025 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001026 Return the size of o, assuming that o was returned by
1027 PySequence_Fast and is not NULL.
Tim Peters1fc240e2001-10-26 05:06:50 +00001028 */
1029
Andrew M. Kuchling74042d62000-06-18 18:43:14 +00001030#define PySequence_Fast_GET_ITEM(o, i)\
1031 (PyList_Check(o) ? PyList_GET_ITEM(o, i) : PyTuple_GET_ITEM(o, i))
Andrew M. Kuchling74042d62000-06-18 18:43:14 +00001032 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001033 Return the ith element of o, assuming that o was returned by
1034 PySequence_Fast, and that i is within bounds.
Andrew M. Kuchling74042d62000-06-18 18:43:14 +00001035 */
1036
Martin v. Löwis01f94bd2002-05-08 08:44:21 +00001037#define PySequence_ITEM(o, i)\
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001038 ( Py_TYPE(o)->tp_as_sequence->sq_item(o, i) )
Martin v. Löwis01f94bd2002-05-08 08:44:21 +00001039 /* Assume tp_as_sequence and sq_item exist and that i does not
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001040 need to be corrected for a negative index
1041 */
Martin v. Löwis01f94bd2002-05-08 08:44:21 +00001042
Raymond Hettinger42bec932004-03-12 16:38:17 +00001043#define PySequence_Fast_ITEMS(sf) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001044 (PyList_Check(sf) ? ((PyListObject *)(sf))->ob_item \
1045 : ((PyTupleObject *)(sf))->ob_item)
1046 /* Return a pointer to the underlying item array for
1047 an object retured by PySequence_Fast */
Raymond Hettingerc1e4f9d2004-03-12 08:04:00 +00001048
Neal Norwitz1fc4b772006-03-04 18:49:58 +00001049 PyAPI_FUNC(Py_ssize_t) PySequence_Count(PyObject *o, PyObject *value);
Guido van Rossuma8275371995-07-18 14:07:00 +00001050
1051 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001052 Return the number of occurrences on value on o, that is,
1053 return the number of keys for which o[key]==value. On
1054 failure, return -1. This is equivalent to the Python
1055 expression: o.count(value).
Guido van Rossuma8275371995-07-18 14:07:00 +00001056 */
1057
Mark Hammond91a681d2002-08-12 07:21:58 +00001058 PyAPI_FUNC(int) PySequence_Contains(PyObject *seq, PyObject *ob);
Tim Peterscb8d3682001-05-05 21:05:01 +00001059 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001060 Return -1 if error; 1 if ob in seq; 0 if ob not in seq.
1061 Use __contains__ if possible, else _PySequence_IterSearch().
Tim Peterscb8d3682001-05-05 21:05:01 +00001062 */
1063
Martin v. Löwis4d0d4712010-12-03 20:14:31 +00001064#ifndef Py_LIMITED_API
Tim Peters16a77ad2001-09-08 04:00:12 +00001065#define PY_ITERSEARCH_COUNT 1
1066#define PY_ITERSEARCH_INDEX 2
1067#define PY_ITERSEARCH_CONTAINS 3
Neal Norwitz1fc4b772006-03-04 18:49:58 +00001068 PyAPI_FUNC(Py_ssize_t) _PySequence_IterSearch(PyObject *seq,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001069 PyObject *obj, int operation);
Martin v. Löwis4d0d4712010-12-03 20:14:31 +00001070#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001071 /*
1072 Iterate over seq. Result depends on the operation:
1073 PY_ITERSEARCH_COUNT: return # of times obj appears in seq; -1 if
1074 error.
1075 PY_ITERSEARCH_INDEX: return 0-based index of first occurrence of
1076 obj in seq; set ValueError and return -1 if none found;
1077 also return -1 on error.
1078 PY_ITERSEARCH_CONTAINS: return 1 if obj in seq, else 0; -1 on
1079 error.
1080 */
Guido van Rossum83684531999-03-17 18:44:39 +00001081
1082/* For DLL-level backwards compatibility */
1083#undef PySequence_In
Mark Hammond91a681d2002-08-12 07:21:58 +00001084 PyAPI_FUNC(int) PySequence_In(PyObject *o, PyObject *value);
Guido van Rossum83684531999-03-17 18:44:39 +00001085
1086/* For source-level backwards compatibility */
Guido van Rossumf1536db1998-08-23 22:06:59 +00001087#define PySequence_In PySequence_Contains
Guido van Rossuma8275371995-07-18 14:07:00 +00001088
1089 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001090 Determine if o contains value. If an item in o is equal to
1091 X, return 1, otherwise return 0. On error, return -1. This
1092 is equivalent to the Python expression: value in o.
Guido van Rossuma8275371995-07-18 14:07:00 +00001093 */
1094
Neal Norwitz1fc4b772006-03-04 18:49:58 +00001095 PyAPI_FUNC(Py_ssize_t) PySequence_Index(PyObject *o, PyObject *value);
Guido van Rossuma8275371995-07-18 14:07:00 +00001096
1097 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001098 Return the first index for which o[i]=value. On error,
1099 return -1. This is equivalent to the Python
1100 expression: o.index(value).
Guido van Rossuma8275371995-07-18 14:07:00 +00001101 */
1102
Thomas Woutersdd8dbdb2000-08-24 20:09:45 +00001103/* In-place versions of some of the above Sequence functions. */
1104
Mark Hammond91a681d2002-08-12 07:21:58 +00001105 PyAPI_FUNC(PyObject *) PySequence_InPlaceConcat(PyObject *o1, PyObject *o2);
Thomas Woutersdd8dbdb2000-08-24 20:09:45 +00001106
1107 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001108 Append o2 to o1, in-place when possible. Return the resulting
1109 object, which could be o1, or NULL on failure. This is the
1110 equivalent of the Python expression: o1 += o2.
Thomas Woutersdd8dbdb2000-08-24 20:09:45 +00001111
1112 */
1113
Martin v. Löwis18e16552006-02-15 17:27:45 +00001114 PyAPI_FUNC(PyObject *) PySequence_InPlaceRepeat(PyObject *o, Py_ssize_t count);
Thomas Woutersdd8dbdb2000-08-24 20:09:45 +00001115
1116 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001117 Repeat o1 by count, in-place when possible. Return the resulting
1118 object, which could be o1, or NULL on failure. This is the
1119 equivalent of the Python expression: o1 *= count.
Thomas Woutersdd8dbdb2000-08-24 20:09:45 +00001120
1121 */
1122
Guido van Rossuma8275371995-07-18 14:07:00 +00001123/* Mapping protocol:*/
1124
Mark Hammond91a681d2002-08-12 07:21:58 +00001125 PyAPI_FUNC(int) PyMapping_Check(PyObject *o);
Guido van Rossuma8275371995-07-18 14:07:00 +00001126
1127 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001128 Return 1 if the object provides mapping protocol, and zero
1129 otherwise.
Guido van Rossuma8275371995-07-18 14:07:00 +00001130
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001131 This function always succeeds.
Guido van Rossuma8275371995-07-18 14:07:00 +00001132 */
1133
Martin v. Löwis18e16552006-02-15 17:27:45 +00001134 PyAPI_FUNC(Py_ssize_t) PyMapping_Size(PyObject *o);
Jeremy Hylton6253f832000-07-12 12:56:19 +00001135
Guido van Rossuma8275371995-07-18 14:07:00 +00001136 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001137 Returns the number of keys in object o on success, and -1 on
1138 failure. For objects that do not provide sequence protocol,
1139 this is equivalent to the Python expression: len(o).
Guido van Rossuma8275371995-07-18 14:07:00 +00001140 */
1141
Marc-André Lemburgcf5f3582000-07-17 09:22:55 +00001142 /* For DLL compatibility */
1143#undef PyMapping_Length
Martin v. Löwis18e16552006-02-15 17:27:45 +00001144 PyAPI_FUNC(Py_ssize_t) PyMapping_Length(PyObject *o);
Marc-André Lemburgcf5f3582000-07-17 09:22:55 +00001145#define PyMapping_Length PyMapping_Size
1146
1147
Guido van Rossuma25e5e91996-09-06 13:48:38 +00001148 /* implemented as a macro:
1149
Fred Drakeea9cb5a2000-07-09 00:20:36 +00001150 int PyMapping_DelItemString(PyObject *o, char *key);
Guido van Rossuma8275371995-07-18 14:07:00 +00001151
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001152 Remove the mapping for object, key, from the object *o.
1153 Returns -1 on failure. This is equivalent to
1154 the Python statement: del o[key].
Guido van Rossuma8275371995-07-18 14:07:00 +00001155 */
Jeremy Hylton7c7ee5f2001-11-28 16:20:07 +00001156#define PyMapping_DelItemString(O,K) PyObject_DelItemString((O),(K))
Guido van Rossuma25e5e91996-09-06 13:48:38 +00001157
1158 /* implemented as a macro:
Guido van Rossuma8275371995-07-18 14:07:00 +00001159
Fred Drakeea9cb5a2000-07-09 00:20:36 +00001160 int PyMapping_DelItem(PyObject *o, PyObject *key);
Guido van Rossuma8275371995-07-18 14:07:00 +00001161
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001162 Remove the mapping for object, key, from the object *o.
1163 Returns -1 on failure. This is equivalent to
1164 the Python statement: del o[key].
Guido van Rossuma8275371995-07-18 14:07:00 +00001165 */
Jeremy Hylton7c7ee5f2001-11-28 16:20:07 +00001166#define PyMapping_DelItem(O,K) PyObject_DelItem((O),(K))
Guido van Rossuma8275371995-07-18 14:07:00 +00001167
Mark Hammond91a681d2002-08-12 07:21:58 +00001168 PyAPI_FUNC(int) PyMapping_HasKeyString(PyObject *o, char *key);
Guido van Rossuma8275371995-07-18 14:07:00 +00001169
1170 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001171 On success, return 1 if the mapping object has the key, key,
1172 and 0 otherwise. This is equivalent to the Python expression:
1173 key in o.
Guido van Rossuma8275371995-07-18 14:07:00 +00001174
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001175 This function always succeeds.
Guido van Rossuma8275371995-07-18 14:07:00 +00001176 */
1177
Mark Hammond91a681d2002-08-12 07:21:58 +00001178 PyAPI_FUNC(int) PyMapping_HasKey(PyObject *o, PyObject *key);
Guido van Rossuma8275371995-07-18 14:07:00 +00001179
1180 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001181 Return 1 if the mapping object has the key, key,
1182 and 0 otherwise. This is equivalent to the Python expression:
1183 key in o.
Guido van Rossuma8275371995-07-18 14:07:00 +00001184
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001185 This function always succeeds.
Guido van Rossuma8275371995-07-18 14:07:00 +00001186
1187 */
1188
Guido van Rossumcc2b0162007-02-11 06:12:03 +00001189 PyAPI_FUNC(PyObject *) PyMapping_Keys(PyObject *o);
Guido van Rossuma8275371995-07-18 14:07:00 +00001190
Guido van Rossumcc2b0162007-02-11 06:12:03 +00001191 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001192 On success, return a list or tuple of the keys in object o.
1193 On failure, return NULL.
Guido van Rossuma8275371995-07-18 14:07:00 +00001194 */
Guido van Rossuma8275371995-07-18 14:07:00 +00001195
Guido van Rossumcc2b0162007-02-11 06:12:03 +00001196 PyAPI_FUNC(PyObject *) PyMapping_Values(PyObject *o);
Guido van Rossuma8275371995-07-18 14:07:00 +00001197
Guido van Rossumcc2b0162007-02-11 06:12:03 +00001198 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001199 On success, return a list or tuple of the values in object o.
1200 On failure, return NULL.
Guido van Rossuma8275371995-07-18 14:07:00 +00001201 */
Guido van Rossuma8275371995-07-18 14:07:00 +00001202
Guido van Rossumcc2b0162007-02-11 06:12:03 +00001203 PyAPI_FUNC(PyObject *) PyMapping_Items(PyObject *o);
Guido van Rossuma8275371995-07-18 14:07:00 +00001204
Guido van Rossumcc2b0162007-02-11 06:12:03 +00001205 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001206 On success, return a list or tuple of the items in object o,
1207 where each item is a tuple containing a key-value pair.
1208 On failure, return NULL.
Guido van Rossuma8275371995-07-18 14:07:00 +00001209
1210 */
Guido van Rossuma8275371995-07-18 14:07:00 +00001211
Mark Hammond91a681d2002-08-12 07:21:58 +00001212 PyAPI_FUNC(PyObject *) PyMapping_GetItemString(PyObject *o, char *key);
Guido van Rossuma8275371995-07-18 14:07:00 +00001213
1214 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001215 Return element of o corresponding to the object, key, or NULL
1216 on failure. This is the equivalent of the Python expression:
1217 o[key].
Guido van Rossuma8275371995-07-18 14:07:00 +00001218 */
1219
Mark Hammond91a681d2002-08-12 07:21:58 +00001220 PyAPI_FUNC(int) PyMapping_SetItemString(PyObject *o, char *key,
Fred Drakeea9cb5a2000-07-09 00:20:36 +00001221 PyObject *value);
Guido van Rossuma8275371995-07-18 14:07:00 +00001222
1223 /*
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001224 Map the object, key, to the value, v. Returns
1225 -1 on failure. This is the equivalent of the Python
1226 statement: o[key]=v.
Guido van Rossuma8275371995-07-18 14:07:00 +00001227 */
1228
1229
Mark Hammond91a681d2002-08-12 07:21:58 +00001230PyAPI_FUNC(int) PyObject_IsInstance(PyObject *object, PyObject *typeorclass);
Guido van Rossum823649d2001-03-21 18:40:58 +00001231 /* isinstance(object, typeorclass) */
1232
Mark Hammond91a681d2002-08-12 07:21:58 +00001233PyAPI_FUNC(int) PyObject_IsSubclass(PyObject *object, PyObject *typeorclass);
Guido van Rossum823649d2001-03-21 18:40:58 +00001234 /* issubclass(object, typeorclass) */
1235
1236
Martin v. Löwis4d0d4712010-12-03 20:14:31 +00001237#ifndef Py_LIMITED_API
Antoine Pitrouec569b72008-08-26 22:40:48 +00001238PyAPI_FUNC(int) _PyObject_RealIsInstance(PyObject *inst, PyObject *cls);
1239
1240PyAPI_FUNC(int) _PyObject_RealIsSubclass(PyObject *derived, PyObject *cls);
1241
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +00001242PyAPI_FUNC(char *const *) _PySequence_BytesToCharpArray(PyObject* self);
1243
1244PyAPI_FUNC(void) _Py_FreeCharPArray(char *const array[]);
Martin v. Löwis4d0d4712010-12-03 20:14:31 +00001245#endif
Antoine Pitrouec569b72008-08-26 22:40:48 +00001246
Antoine Pitrouf68c2a72010-09-01 12:58:21 +00001247/* For internal use by buffer API functions */
1248PyAPI_FUNC(void) _Py_add_one_to_index_F(int nd, Py_ssize_t *index,
1249 const Py_ssize_t *shape);
1250PyAPI_FUNC(void) _Py_add_one_to_index_C(int nd, Py_ssize_t *index,
1251 const Py_ssize_t *shape);
1252
1253
Guido van Rossum8ca687a1995-09-18 21:20:02 +00001254#ifdef __cplusplus
1255}
1256#endif
Guido van Rossuma8275371995-07-18 14:07:00 +00001257#endif /* Py_ABSTRACTOBJECT_H */