Fred Drake | 6659c30 | 1998-03-03 22:02:19 +0000 | [diff] [blame] | 1 | \documentclass{manual} |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 2 | |
Guido van Rossum | 9faf4c5 | 1997-10-07 14:38:54 +0000 | [diff] [blame] | 3 | \title{Python/C API Reference Manual} |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 4 | |
| 5 | \input{boilerplate} |
| 6 | |
| 7 | \makeindex % tell \index to actually write the .idx file |
| 8 | |
| 9 | |
| 10 | \begin{document} |
| 11 | |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 12 | \maketitle |
| 13 | |
Fred Drake | 9f86b66 | 1998-07-28 21:55:19 +0000 | [diff] [blame] | 14 | \ifhtml |
| 15 | \chapter*{Front Matter\label{front}} |
| 16 | \fi |
| 17 | |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 18 | \input{copyright} |
| 19 | |
| 20 | \begin{abstract} |
| 21 | |
| 22 | \noindent |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 23 | This manual documents the API used by \C{} (or \Cpp{}) programmers who |
| 24 | want to write extension modules or embed Python. It is a companion to |
| 25 | \emph{Extending and Embedding the Python Interpreter}, which describes |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 26 | the general principles of extension writing but does not document the |
| 27 | API functions in detail. |
| 28 | |
Guido van Rossum | 5b8a523 | 1997-12-30 04:38:44 +0000 | [diff] [blame] | 29 | \strong{Warning:} The current version of this document is incomplete. |
| 30 | I hope that it is nevertheless useful. I will continue to work on it, |
| 31 | and release new versions from time to time, independent from Python |
| 32 | source code releases. |
| 33 | |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 34 | \end{abstract} |
| 35 | |
Fred Drake | 4d4f9e7 | 1998-01-13 22:25:02 +0000 | [diff] [blame] | 36 | \tableofcontents |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 37 | |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 38 | % XXX Consider moving all this back to ext.tex and giving api.tex |
| 39 | % XXX a *really* short intro only. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 40 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 41 | \chapter{Introduction \label{intro}} |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 42 | |
Fred Drake | b0a7873 | 1998-01-13 18:51:10 +0000 | [diff] [blame] | 43 | The Application Programmer's Interface to Python gives \C{} and \Cpp{} |
Guido van Rossum | 59a6135 | 1997-08-14 20:34:33 +0000 | [diff] [blame] | 44 | programmers access to the Python interpreter at a variety of levels. |
Fred Drake | b0a7873 | 1998-01-13 18:51:10 +0000 | [diff] [blame] | 45 | The API is equally usable from \Cpp{}, but for brevity it is generally |
| 46 | referred to as the Python/\C{} API. There are two fundamentally |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 47 | different reasons for using the Python/\C{} API. The first reason is |
| 48 | to write \emph{extension modules} for specific purposes; these are |
| 49 | \C{} modules that extend the Python interpreter. This is probably the |
| 50 | most common use. The second reason is to use Python as a component in |
| 51 | a larger application; this technique is generally referred to as |
| 52 | \dfn{embedding} Python in an application. |
Guido van Rossum | 59a6135 | 1997-08-14 20:34:33 +0000 | [diff] [blame] | 53 | |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 54 | Writing an extension module is a relatively well-understood process, |
| 55 | where a ``cookbook'' approach works well. There are several tools |
| 56 | that automate the process to some extent. While people have embedded |
| 57 | Python in other applications since its early existence, the process of |
| 58 | embedding Python is less straightforward that writing an extension. |
| 59 | Python 1.5 introduces a number of new API functions as well as some |
| 60 | changes to the build process that make embedding much simpler. |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 61 | This manual describes the \version\ state of affairs. |
Guido van Rossum | 59a6135 | 1997-08-14 20:34:33 +0000 | [diff] [blame] | 62 | % XXX Eventually, take the historical notes out |
| 63 | |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 64 | Many API functions are useful independent of whether you're embedding |
| 65 | or extending Python; moreover, most applications that embed Python |
| 66 | will need to provide a custom extension as well, so it's probably a |
| 67 | good idea to become familiar with writing an extension before |
Guido van Rossum | 59a6135 | 1997-08-14 20:34:33 +0000 | [diff] [blame] | 68 | attempting to embed Python in a real application. |
| 69 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 70 | |
| 71 | \section{Include Files \label{includes}} |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 72 | |
| 73 | All function, type and macro definitions needed to use the Python/C |
| 74 | API are included in your code by the following line: |
| 75 | |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 76 | \begin{verbatim} |
| 77 | #include "Python.h" |
| 78 | \end{verbatim} |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 79 | |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 80 | This implies inclusion of the following standard headers: |
| 81 | \code{<stdio.h>}, \code{<string.h>}, \code{<errno.h>}, and |
| 82 | \code{<stdlib.h>} (if available). |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 83 | |
| 84 | All user visible names defined by Python.h (except those defined by |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 85 | the included standard headers) have one of the prefixes \samp{Py} or |
| 86 | \samp{_Py}. Names beginning with \samp{_Py} are for internal use |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 87 | only. Structure member names do not have a reserved prefix. |
| 88 | |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 89 | \strong{Important:} user code should never define names that begin |
| 90 | with \samp{Py} or \samp{_Py}. This confuses the reader, and |
| 91 | jeopardizes the portability of the user code to future Python |
| 92 | versions, which may define additional names beginning with one of |
| 93 | these prefixes. |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 94 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 95 | |
| 96 | \section{Objects, Types and Reference Counts \label{objects}} |
Guido van Rossum | 59a6135 | 1997-08-14 20:34:33 +0000 | [diff] [blame] | 97 | |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 98 | Most Python/C API functions have one or more arguments as well as a |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 99 | return value of type \ctype{PyObject *}. This type is a pointer |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 100 | to an opaque data type representing an arbitrary Python |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 101 | object. Since all Python object types are treated the same way by the |
| 102 | Python language in most situations (e.g., assignments, scope rules, |
| 103 | and argument passing), it is only fitting that they should be |
Fred Drake | b0a7873 | 1998-01-13 18:51:10 +0000 | [diff] [blame] | 104 | represented by a single \C{} type. All Python objects live on the heap: |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 105 | you never declare an automatic or static variable of type |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 106 | \ctype{PyObject}, only pointer variables of type \ctype{PyObject *} can |
Guido van Rossum | 59a6135 | 1997-08-14 20:34:33 +0000 | [diff] [blame] | 107 | be declared. |
| 108 | |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 109 | All Python objects (even Python integers) have a \dfn{type} and a |
| 110 | \dfn{reference count}. An object's type determines what kind of object |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 111 | it is (e.g., an integer, a list, or a user-defined function; there are |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 112 | many more as explained in the \emph{Python Reference Manual}). For |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 113 | each of the well-known types there is a macro to check whether an |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 114 | object is of that type; for instance, \samp{PyList_Check(\var{a})} is |
| 115 | true iff the object pointed to by \var{a} is a Python list. |
Guido van Rossum | 59a6135 | 1997-08-14 20:34:33 +0000 | [diff] [blame] | 116 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 117 | |
| 118 | \subsection{Reference Counts \label{refcounts}} |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 119 | |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 120 | The reference count is important because today's computers have a |
Fred Drake | 003d8da | 1998-04-13 00:53:42 +0000 | [diff] [blame] | 121 | finite (and often severely limited) memory size; it counts how many |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 122 | different places there are that have a reference to an object. Such a |
Fred Drake | b0a7873 | 1998-01-13 18:51:10 +0000 | [diff] [blame] | 123 | place could be another object, or a global (or static) \C{} variable, or |
| 124 | a local variable in some \C{} function. When an object's reference count |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 125 | becomes zero, the object is deallocated. If it contains references to |
| 126 | other objects, their reference count is decremented. Those other |
| 127 | objects may be deallocated in turn, if this decrement makes their |
| 128 | reference count become zero, and so on. (There's an obvious problem |
| 129 | with objects that reference each other here; for now, the solution is |
Guido van Rossum | 59a6135 | 1997-08-14 20:34:33 +0000 | [diff] [blame] | 130 | ``don't do that''.) |
| 131 | |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 132 | Reference counts are always manipulated explicitly. The normal way is |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 133 | to use the macro \cfunction{Py_INCREF()} to increment an object's |
| 134 | reference count by one, and \cfunction{Py_DECREF()} to decrement it by |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 135 | one. The decref macro is considerably more complex than the incref one, |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 136 | since it must check whether the reference count becomes zero and then |
| 137 | cause the object's deallocator, which is a function pointer contained |
| 138 | in the object's type structure. The type-specific deallocator takes |
| 139 | care of decrementing the reference counts for other objects contained |
| 140 | in the object, and so on, if this is a compound object type such as a |
| 141 | list. There's no chance that the reference count can overflow; at |
| 142 | least as many bits are used to hold the reference count as there are |
| 143 | distinct memory locations in virtual memory (assuming |
| 144 | \code{sizeof(long) >= sizeof(char *)}). Thus, the reference count |
Guido van Rossum | 59a6135 | 1997-08-14 20:34:33 +0000 | [diff] [blame] | 145 | increment is a simple operation. |
| 146 | |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 147 | It is not necessary to increment an object's reference count for every |
| 148 | local variable that contains a pointer to an object. In theory, the |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 149 | object's reference count goes up by one when the variable is made to |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 150 | point to it and it goes down by one when the variable goes out of |
| 151 | scope. However, these two cancel each other out, so at the end the |
| 152 | reference count hasn't changed. The only real reason to use the |
| 153 | reference count is to prevent the object from being deallocated as |
| 154 | long as our variable is pointing to it. If we know that there is at |
| 155 | least one other reference to the object that lives at least as long as |
| 156 | our variable, there is no need to increment the reference count |
| 157 | temporarily. An important situation where this arises is in objects |
Fred Drake | b0a7873 | 1998-01-13 18:51:10 +0000 | [diff] [blame] | 158 | that are passed as arguments to \C{} functions in an extension module |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 159 | that are called from Python; the call mechanism guarantees to hold a |
Guido van Rossum | 59a6135 | 1997-08-14 20:34:33 +0000 | [diff] [blame] | 160 | reference to every argument for the duration of the call. |
| 161 | |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 162 | However, a common pitfall is to extract an object from a list and |
| 163 | hold on to it for a while without incrementing its reference count. |
| 164 | Some other operation might conceivably remove the object from the |
| 165 | list, decrementing its reference count and possible deallocating it. |
| 166 | The real danger is that innocent-looking operations may invoke |
| 167 | arbitrary Python code which could do this; there is a code path which |
| 168 | allows control to flow back to the user from a \cfunction{Py_DECREF()}, |
| 169 | so almost any operation is potentially dangerous. |
Guido van Rossum | 59a6135 | 1997-08-14 20:34:33 +0000 | [diff] [blame] | 170 | |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 171 | A safe approach is to always use the generic operations (functions |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 172 | whose name begins with \samp{PyObject_}, \samp{PyNumber_}, |
| 173 | \samp{PySequence_} or \samp{PyMapping_}). These operations always |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 174 | increment the reference count of the object they return. This leaves |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 175 | the caller with the responsibility to call \cfunction{Py_DECREF()} |
| 176 | when they are done with the result; this soon becomes second nature. |
Guido van Rossum | 59a6135 | 1997-08-14 20:34:33 +0000 | [diff] [blame] | 177 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 178 | |
| 179 | \subsubsection{Reference Count Details \label{refcountDetails}} |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 180 | |
| 181 | The reference count behavior of functions in the Python/C API is best |
| 182 | expelained in terms of \emph{ownership of references}. Note that we |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 183 | talk of owning references, never of owning objects; objects are always |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 184 | shared! When a function owns a reference, it has to dispose of it |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 185 | properly --- either by passing ownership on (usually to its caller) or |
| 186 | by calling \cfunction{Py_DECREF()} or \cfunction{Py_XDECREF()}. When |
| 187 | a function passes ownership of a reference on to its caller, the |
| 188 | caller is said to receive a \emph{new} reference. When no ownership |
| 189 | is transferred, the caller is said to \emph{borrow} the reference. |
| 190 | Nothing needs to be done for a borrowed reference. |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 191 | |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 192 | Conversely, when calling a function passes it a reference to an |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 193 | object, there are two possibilities: the function \emph{steals} a |
| 194 | reference to the object, or it does not. Few functions steal |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 195 | references; the two notable exceptions are |
| 196 | \cfunction{PyList_SetItem()} and \cfunction{PyTuple_SetItem()}, which |
| 197 | steal a reference to the item (but not to the tuple or list into which |
Fred Drake | 003d8da | 1998-04-13 00:53:42 +0000 | [diff] [blame] | 198 | the item is put!). These functions were designed to steal a reference |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 199 | because of a common idiom for populating a tuple or list with newly |
| 200 | created objects; for example, the code to create the tuple \code{(1, |
| 201 | 2, "three")} could look like this (forgetting about error handling for |
| 202 | the moment; a better way to code this is shown below anyway): |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 203 | |
| 204 | \begin{verbatim} |
| 205 | PyObject *t; |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 206 | |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 207 | t = PyTuple_New(3); |
| 208 | PyTuple_SetItem(t, 0, PyInt_FromLong(1L)); |
| 209 | PyTuple_SetItem(t, 1, PyInt_FromLong(2L)); |
| 210 | PyTuple_SetItem(t, 2, PyString_FromString("three")); |
| 211 | \end{verbatim} |
| 212 | |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 213 | Incidentally, \cfunction{PyTuple_SetItem()} is the \emph{only} way to |
| 214 | set tuple items; \cfunction{PySequence_SetItem()} and |
| 215 | \cfunction{PyObject_SetItem()} refuse to do this since tuples are an |
| 216 | immutable data type. You should only use |
| 217 | \cfunction{PyTuple_SetItem()} for tuples that you are creating |
Guido van Rossum | 5b8a523 | 1997-12-30 04:38:44 +0000 | [diff] [blame] | 218 | yourself. |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 219 | |
| 220 | Equivalent code for populating a list can be written using |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 221 | \cfunction{PyList_New()} and \cfunction{PyList_SetItem()}. Such code |
| 222 | can also use \cfunction{PySequence_SetItem()}; this illustrates the |
| 223 | difference between the two (the extra \cfunction{Py_DECREF()} calls): |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 224 | |
| 225 | \begin{verbatim} |
| 226 | PyObject *l, *x; |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 227 | |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 228 | l = PyList_New(3); |
| 229 | x = PyInt_FromLong(1L); |
Guido van Rossum | 5b8a523 | 1997-12-30 04:38:44 +0000 | [diff] [blame] | 230 | PySequence_SetItem(l, 0, x); Py_DECREF(x); |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 231 | x = PyInt_FromLong(2L); |
Guido van Rossum | 5b8a523 | 1997-12-30 04:38:44 +0000 | [diff] [blame] | 232 | PySequence_SetItem(l, 1, x); Py_DECREF(x); |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 233 | x = PyString_FromString("three"); |
Guido van Rossum | 5b8a523 | 1997-12-30 04:38:44 +0000 | [diff] [blame] | 234 | PySequence_SetItem(l, 2, x); Py_DECREF(x); |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 235 | \end{verbatim} |
| 236 | |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 237 | You might find it strange that the ``recommended'' approach takes more |
| 238 | code. However, in practice, you will rarely use these ways of |
| 239 | creating and populating a tuple or list. There's a generic function, |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 240 | \cfunction{Py_BuildValue()}, that can create most common objects from |
| 241 | \C{} values, directed by a \dfn{format string}. For example, the |
| 242 | above two blocks of code could be replaced by the following (which |
| 243 | also takes care of the error checking): |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 244 | |
| 245 | \begin{verbatim} |
| 246 | PyObject *t, *l; |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 247 | |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 248 | t = Py_BuildValue("(iis)", 1, 2, "three"); |
| 249 | l = Py_BuildValue("[iis]", 1, 2, "three"); |
| 250 | \end{verbatim} |
| 251 | |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 252 | It is much more common to use \cfunction{PyObject_SetItem()} and |
| 253 | friends with items whose references you are only borrowing, like |
| 254 | arguments that were passed in to the function you are writing. In |
| 255 | that case, their behaviour regarding reference counts is much saner, |
| 256 | since you don't have to increment a reference count so you can give a |
| 257 | reference away (``have it be stolen''). For example, this function |
| 258 | sets all items of a list (actually, any mutable sequence) to a given |
| 259 | item: |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 260 | |
| 261 | \begin{verbatim} |
| 262 | int set_all(PyObject *target, PyObject *item) |
| 263 | { |
| 264 | int i, n; |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 265 | |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 266 | n = PyObject_Length(target); |
| 267 | if (n < 0) |
| 268 | return -1; |
| 269 | for (i = 0; i < n; i++) { |
| 270 | if (PyObject_SetItem(target, i, item) < 0) |
| 271 | return -1; |
| 272 | } |
| 273 | return 0; |
| 274 | } |
| 275 | \end{verbatim} |
| 276 | |
| 277 | The situation is slightly different for function return values. |
| 278 | While passing a reference to most functions does not change your |
| 279 | ownership responsibilities for that reference, many functions that |
| 280 | return a referece to an object give you ownership of the reference. |
| 281 | The reason is simple: in many cases, the returned object is created |
| 282 | on the fly, and the reference you get is the only reference to the |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 283 | object. Therefore, the generic functions that return object |
| 284 | references, like \cfunction{PyObject_GetItem()} and |
| 285 | \cfunction{PySequence_GetItem()}, always return a new reference (i.e., |
| 286 | the caller becomes the owner of the reference). |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 287 | |
| 288 | It is important to realize that whether you own a reference returned |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 289 | by a function depends on which function you call only --- \emph{the |
| 290 | plumage} (i.e., the type of the type of the object passed as an |
| 291 | argument to the function) \emph{doesn't enter into it!} Thus, if you |
| 292 | extract an item from a list using \cfunction{PyList_GetItem()}, you |
| 293 | don't own the reference --- but if you obtain the same item from the |
| 294 | same list using \cfunction{PySequence_GetItem()} (which happens to |
| 295 | take exactly the same arguments), you do own a reference to the |
| 296 | returned object. |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 297 | |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 298 | Here is an example of how you could write a function that computes the |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 299 | sum of the items in a list of integers; once using |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 300 | \cfunction{PyList_GetItem()}, once using |
| 301 | \cfunction{PySequence_GetItem()}. |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 302 | |
| 303 | \begin{verbatim} |
| 304 | long sum_list(PyObject *list) |
| 305 | { |
| 306 | int i, n; |
| 307 | long total = 0; |
| 308 | PyObject *item; |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 309 | |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 310 | n = PyList_Size(list); |
| 311 | if (n < 0) |
| 312 | return -1; /* Not a list */ |
| 313 | for (i = 0; i < n; i++) { |
| 314 | item = PyList_GetItem(list, i); /* Can't fail */ |
| 315 | if (!PyInt_Check(item)) continue; /* Skip non-integers */ |
| 316 | total += PyInt_AsLong(item); |
| 317 | } |
| 318 | return total; |
| 319 | } |
| 320 | \end{verbatim} |
| 321 | |
| 322 | \begin{verbatim} |
| 323 | long sum_sequence(PyObject *sequence) |
| 324 | { |
| 325 | int i, n; |
| 326 | long total = 0; |
| 327 | PyObject *item; |
| 328 | n = PyObject_Size(list); |
| 329 | if (n < 0) |
| 330 | return -1; /* Has no length */ |
| 331 | for (i = 0; i < n; i++) { |
| 332 | item = PySequence_GetItem(list, i); |
| 333 | if (item == NULL) |
| 334 | return -1; /* Not a sequence, or other failure */ |
| 335 | if (PyInt_Check(item)) |
| 336 | total += PyInt_AsLong(item); |
Guido van Rossum | 5b8a523 | 1997-12-30 04:38:44 +0000 | [diff] [blame] | 337 | Py_DECREF(item); /* Discard reference ownership */ |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 338 | } |
| 339 | return total; |
| 340 | } |
| 341 | \end{verbatim} |
| 342 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 343 | |
| 344 | \subsection{Types \label{types}} |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 345 | |
| 346 | There are few other data types that play a significant role in |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 347 | the Python/C API; most are simple \C{} types such as \ctype{int}, |
| 348 | \ctype{long}, \ctype{double} and \ctype{char *}. A few structure types |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 349 | are used to describe static tables used to list the functions exported |
| 350 | by a module or the data attributes of a new object type. These will |
Guido van Rossum | 59a6135 | 1997-08-14 20:34:33 +0000 | [diff] [blame] | 351 | be discussed together with the functions that use them. |
| 352 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 353 | |
| 354 | \section{Exceptions \label{exceptions}} |
Guido van Rossum | 59a6135 | 1997-08-14 20:34:33 +0000 | [diff] [blame] | 355 | |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 356 | The Python programmer only needs to deal with exceptions if specific |
| 357 | error handling is required; unhandled exceptions are automatically |
| 358 | propagated to the caller, then to the caller's caller, and so on, till |
| 359 | they reach the top-level interpreter, where they are reported to the |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 360 | user accompanied by a stack traceback. |
Guido van Rossum | 59a6135 | 1997-08-14 20:34:33 +0000 | [diff] [blame] | 361 | |
Fred Drake | b0a7873 | 1998-01-13 18:51:10 +0000 | [diff] [blame] | 362 | For \C{} programmers, however, error checking always has to be explicit. |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 363 | All functions in the Python/C API can raise exceptions, unless an |
| 364 | explicit claim is made otherwise in a function's documentation. In |
| 365 | general, when a function encounters an error, it sets an exception, |
| 366 | discards any object references that it owns, and returns an |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 367 | error indicator --- usually \NULL{} or \code{-1}. A few functions |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 368 | return a Boolean true/false result, with false indicating an error. |
| 369 | Very few functions return no explicit error indicator or have an |
| 370 | ambiguous return value, and require explicit testing for errors with |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 371 | \cfunction{PyErr_Occurred()}. |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 372 | |
| 373 | Exception state is maintained in per-thread storage (this is |
| 374 | equivalent to using global storage in an unthreaded application). A |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 375 | thread can be in one of two states: an exception has occurred, or not. |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 376 | The function \cfunction{PyErr_Occurred()} can be used to check for |
| 377 | this: it returns a borrowed reference to the exception type object |
| 378 | when an exception has occurred, and \NULL{} otherwise. There are a |
| 379 | number of functions to set the exception state: |
| 380 | \cfunction{PyErr_SetString()} is the most common (though not the most |
| 381 | general) function to set the exception state, and |
| 382 | \cfunction{PyErr_Clear()} clears the exception state. |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 383 | |
| 384 | The full exception state consists of three objects (all of which can |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 385 | be \NULL{}): the exception type, the corresponding exception |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 386 | value, and the traceback. These have the same meanings as the Python |
| 387 | object \code{sys.exc_type}, \code{sys.exc_value}, |
| 388 | \code{sys.exc_traceback}; however, they are not the same: the Python |
| 389 | objects represent the last exception being handled by a Python |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 390 | \keyword{try} \ldots\ \keyword{except} statement, while the \C{} level |
| 391 | exception state only exists while an exception is being passed on |
| 392 | between \C{} functions until it reaches the Python interpreter, which |
| 393 | takes care of transferring it to \code{sys.exc_type} and friends. |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 394 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 395 | Note that starting with Python 1.5, the preferred, thread-safe way to |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 396 | access the exception state from Python code is to call the function |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 397 | \function{sys.exc_info()}, which returns the per-thread exception state |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 398 | for Python code. Also, the semantics of both ways to access the |
| 399 | exception state have changed so that a function which catches an |
| 400 | exception will save and restore its thread's exception state so as to |
| 401 | preserve the exception state of its caller. This prevents common bugs |
| 402 | in exception handling code caused by an innocent-looking function |
| 403 | overwriting the exception being handled; it also reduces the often |
| 404 | unwanted lifetime extension for objects that are referenced by the |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 405 | stack frames in the traceback. |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 406 | |
| 407 | As a general principle, a function that calls another function to |
| 408 | perform some task should check whether the called function raised an |
| 409 | exception, and if so, pass the exception state on to its caller. It |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 410 | should discard any object references that it owns, and returns an |
| 411 | error indicator, but it should \emph{not} set another exception --- |
| 412 | that would overwrite the exception that was just raised, and lose |
| 413 | important information about the exact cause of the error. |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 414 | |
| 415 | A simple example of detecting exceptions and passing them on is shown |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 416 | in the \cfunction{sum_sequence()} example above. It so happens that |
| 417 | that example doesn't need to clean up any owned references when it |
| 418 | detects an error. The following example function shows some error |
| 419 | cleanup. First, to remind you why you like Python, we show the |
| 420 | equivalent Python code: |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 421 | |
| 422 | \begin{verbatim} |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 423 | def incr_item(dict, key): |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 424 | try: |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 425 | item = dict[key] |
| 426 | except KeyError: |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 427 | item = 0 |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 428 | return item + 1 |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 429 | \end{verbatim} |
| 430 | |
Fred Drake | b0a7873 | 1998-01-13 18:51:10 +0000 | [diff] [blame] | 431 | Here is the corresponding \C{} code, in all its glory: |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 432 | |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 433 | \begin{verbatim} |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 434 | int incr_item(PyObject *dict, PyObject *key) |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 435 | { |
| 436 | /* Objects all initialized to NULL for Py_XDECREF */ |
| 437 | PyObject *item = NULL, *const_one = NULL, *incremented_item = NULL; |
Guido van Rossum | 5b8a523 | 1997-12-30 04:38:44 +0000 | [diff] [blame] | 438 | int rv = -1; /* Return value initialized to -1 (failure) */ |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 439 | |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 440 | item = PyObject_GetItem(dict, key); |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 441 | if (item == NULL) { |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 442 | /* Handle KeyError only: */ |
| 443 | if (!PyErr_ExceptionMatches(PyExc_KeyError)) goto error; |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 444 | |
| 445 | /* Clear the error and use zero: */ |
| 446 | PyErr_Clear(); |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 447 | item = PyInt_FromLong(0L); |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 448 | if (item == NULL) goto error; |
| 449 | } |
| 450 | |
| 451 | const_one = PyInt_FromLong(1L); |
| 452 | if (const_one == NULL) goto error; |
| 453 | |
| 454 | incremented_item = PyNumber_Add(item, const_one); |
| 455 | if (incremented_item == NULL) goto error; |
| 456 | |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 457 | if (PyObject_SetItem(dict, key, incremented_item) < 0) goto error; |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 458 | rv = 0; /* Success */ |
| 459 | /* Continue with cleanup code */ |
| 460 | |
| 461 | error: |
| 462 | /* Cleanup code, shared by success and failure path */ |
| 463 | |
| 464 | /* Use Py_XDECREF() to ignore NULL references */ |
| 465 | Py_XDECREF(item); |
| 466 | Py_XDECREF(const_one); |
| 467 | Py_XDECREF(incremented_item); |
| 468 | |
| 469 | return rv; /* -1 for error, 0 for success */ |
| 470 | } |
| 471 | \end{verbatim} |
| 472 | |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 473 | This example represents an endorsed use of the \keyword{goto} statement |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 474 | in \C{}! It illustrates the use of |
| 475 | \cfunction{PyErr_ExceptionMatches()} and \cfunction{PyErr_Clear()} to |
| 476 | handle specific exceptions, and the use of \cfunction{Py_XDECREF()} to |
| 477 | dispose of owned references that may be \NULL{} (note the \samp{X} in |
| 478 | the name; \cfunction{Py_DECREF()} would crash when confronted with a |
| 479 | \NULL{} reference). It is important that the variables used to hold |
| 480 | owned references are initialized to \NULL{} for this to work; |
| 481 | likewise, the proposed return value is initialized to \code{-1} |
| 482 | (failure) and only set to success after the final call made is |
| 483 | successful. |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 484 | |
Guido van Rossum | 59a6135 | 1997-08-14 20:34:33 +0000 | [diff] [blame] | 485 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 486 | \section{Embedding Python \label{embedding}} |
Guido van Rossum | 59a6135 | 1997-08-14 20:34:33 +0000 | [diff] [blame] | 487 | |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 488 | The one important task that only embedders (as opposed to extension |
| 489 | writers) of the Python interpreter have to worry about is the |
| 490 | initialization, and possibly the finalization, of the Python |
| 491 | interpreter. Most functionality of the interpreter can only be used |
| 492 | after the interpreter has been initialized. |
Guido van Rossum | 59a6135 | 1997-08-14 20:34:33 +0000 | [diff] [blame] | 493 | |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 494 | The basic initialization function is \cfunction{Py_Initialize()}. |
| 495 | This initializes the table of loaded modules, and creates the |
Fred Drake | 4de05a9 | 1998-02-16 14:25:26 +0000 | [diff] [blame] | 496 | fundamental modules \module{__builtin__}\refbimodindex{__builtin__}, |
| 497 | \module{__main__}\refbimodindex{__main__} and |
| 498 | \module{sys}\refbimodindex{sys}. It also initializes the module |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 499 | search path (\code{sys.path}).% |
| 500 | \indexiii{module}{search}{path} |
Guido van Rossum | 59a6135 | 1997-08-14 20:34:33 +0000 | [diff] [blame] | 501 | |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 502 | \cfunction{Py_Initialize()} does not set the ``script argument list'' |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 503 | (\code{sys.argv}). If this variable is needed by Python code that |
| 504 | will be executed later, it must be set explicitly with a call to |
| 505 | \code{PySys_SetArgv(\var{argc}, \var{argv})} subsequent to the call |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 506 | to \cfunction{Py_Initialize()}. |
Guido van Rossum | 59a6135 | 1997-08-14 20:34:33 +0000 | [diff] [blame] | 507 | |
Fred Drake | b0a7873 | 1998-01-13 18:51:10 +0000 | [diff] [blame] | 508 | On most systems (in particular, on \UNIX{} and Windows, although the |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 509 | details are slightly different), \cfunction{Py_Initialize()} |
| 510 | calculates the module search path based upon its best guess for the |
| 511 | location of the standard Python interpreter executable, assuming that |
| 512 | the Python library is found in a fixed location relative to the Python |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 513 | interpreter executable. In particular, it looks for a directory named |
Fred Drake | 2de75ec | 1998-04-09 14:12:11 +0000 | [diff] [blame] | 514 | \file{lib/python1.5} (replacing \file{1.5} with the current |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 515 | interpreter version) relative to the parent directory where the |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 516 | executable named \file{python} is found on the shell command search |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 517 | path (the environment variable \envvar{PATH}). |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 518 | |
| 519 | For instance, if the Python executable is found in |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 520 | \file{/usr/local/bin/python}, it will assume that the libraries are in |
Fred Drake | 2de75ec | 1998-04-09 14:12:11 +0000 | [diff] [blame] | 521 | \file{/usr/local/lib/python1.5}. (In fact, this particular path |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 522 | is also the ``fallback'' location, used when no executable file named |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 523 | \file{python} is found along \envvar{PATH}.) The user can override |
| 524 | this behavior by setting the environment variable \envvar{PYTHONHOME}, |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 525 | or insert additional directories in front of the standard path by |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 526 | setting \envvar{PYTHONPATH}. |
Guido van Rossum | 59a6135 | 1997-08-14 20:34:33 +0000 | [diff] [blame] | 527 | |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 528 | The embedding application can steer the search by calling |
| 529 | \code{Py_SetProgramName(\var{file})} \emph{before} calling |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 530 | \cfunction{Py_Initialize()}. Note that \envvar{PYTHONHOME} still |
| 531 | overrides this and \envvar{PYTHONPATH} is still inserted in front of |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 532 | the standard path. An application that requires total control has to |
| 533 | provide its own implementation of \cfunction{Py_GetPath()}, |
| 534 | \cfunction{Py_GetPrefix()}, \cfunction{Py_GetExecPrefix()}, |
| 535 | \cfunction{Py_GetProgramFullPath()} (all defined in |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 536 | \file{Modules/getpath.c}). |
Guido van Rossum | 59a6135 | 1997-08-14 20:34:33 +0000 | [diff] [blame] | 537 | |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 538 | Sometimes, it is desirable to ``uninitialize'' Python. For instance, |
| 539 | the application may want to start over (make another call to |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 540 | \cfunction{Py_Initialize()}) or the application is simply done with its |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 541 | use of Python and wants to free all memory allocated by Python. This |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 542 | can be accomplished by calling \cfunction{Py_Finalize()}. The function |
| 543 | \cfunction{Py_IsInitialized()} returns true iff Python is currently in the |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 544 | initialized state. More information about these functions is given in |
| 545 | a later chapter. |
Guido van Rossum | 59a6135 | 1997-08-14 20:34:33 +0000 | [diff] [blame] | 546 | |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 547 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 548 | \chapter{The Very High Level Layer \label{veryhigh}} |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 549 | |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 550 | The functions in this chapter will let you execute Python source code |
| 551 | given in a file or a buffer, but they will not let you interact in a |
| 552 | more detailed way with the interpreter. |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 553 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 554 | \begin{cfuncdesc}{int}{PyRun_AnyFile}{FILE *fp, char *filename} |
Fred Drake | 0041a94 | 1999-04-29 04:20:46 +0000 | [diff] [blame] | 555 | If \var{fp} refers to a file associated with an interactive device |
| 556 | (console or terminal input or \UNIX{} pseudo-terminal), return the |
| 557 | value of \cfunction{PyRun_InteractiveLoop()}, otherwise return the |
| 558 | result of \cfunction{PyRun_SimpleFile()}. If \var{filename} is |
| 559 | \NULL{}, use \code{"???"} as the filename. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 560 | \end{cfuncdesc} |
| 561 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 562 | \begin{cfuncdesc}{int}{PyRun_SimpleString}{char *command} |
Fred Drake | 0041a94 | 1999-04-29 04:20:46 +0000 | [diff] [blame] | 563 | Executes the Python source code from \var{command} in the |
| 564 | \module{__main__} module. If \module{__main__} does not already |
| 565 | exist, it is created. Returns \code{0} on success or \code{-1} if |
| 566 | an exception was raised. If there was an error, there is no way to |
| 567 | get the exception information. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 568 | \end{cfuncdesc} |
| 569 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 570 | \begin{cfuncdesc}{int}{PyRun_SimpleFile}{FILE *fp, char *filename} |
Fred Drake | 0041a94 | 1999-04-29 04:20:46 +0000 | [diff] [blame] | 571 | Similar to \cfunction{PyRun_SimpleString()}, but the Python source |
| 572 | code is read from \var{fp} instead of an in-memory string. |
| 573 | \var{filename} should be the name of the file. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 574 | \end{cfuncdesc} |
| 575 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 576 | \begin{cfuncdesc}{int}{PyRun_InteractiveOne}{FILE *fp, char *filename} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 577 | \end{cfuncdesc} |
| 578 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 579 | \begin{cfuncdesc}{int}{PyRun_InteractiveLoop}{FILE *fp, char *filename} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 580 | \end{cfuncdesc} |
| 581 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 582 | \begin{cfuncdesc}{struct _node*}{PyParser_SimpleParseString}{char *str, |
| 583 | int start} |
Fred Drake | 0041a94 | 1999-04-29 04:20:46 +0000 | [diff] [blame] | 584 | Parse Python source code from \var{str} using the start token |
| 585 | \var{start}. The result can be used to create a code object which |
| 586 | can be evaluated efficiently. This is useful if a code fragment |
| 587 | must be evaluated many times. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 588 | \end{cfuncdesc} |
| 589 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 590 | \begin{cfuncdesc}{struct _node*}{PyParser_SimpleParseFile}{FILE *fp, |
| 591 | char *filename, int start} |
Fred Drake | 0041a94 | 1999-04-29 04:20:46 +0000 | [diff] [blame] | 592 | Similar to \cfunction{PyParser_SimpleParseString()}, but the Python |
| 593 | source code is read from \var{fp} instead of an in-memory string. |
| 594 | \var{filename} should be the name of the file. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 595 | \end{cfuncdesc} |
| 596 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 597 | \begin{cfuncdesc}{PyObject*}{PyRun_String}{char *str, int start, |
| 598 | PyObject *globals, |
| 599 | PyObject *locals} |
Fred Drake | 0041a94 | 1999-04-29 04:20:46 +0000 | [diff] [blame] | 600 | Execute Python source code from \var{str} in the context specified |
| 601 | by the dictionaries \var{globals} and \var{locals}. The parameter |
| 602 | \var{start} specifies the start token that should be used to parse |
| 603 | the source code. |
| 604 | |
| 605 | Returns the result of executing the code as a Python object, or |
| 606 | \NULL{} if an exception was raised. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 607 | \end{cfuncdesc} |
| 608 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 609 | \begin{cfuncdesc}{PyObject*}{PyRun_File}{FILE *fp, char *filename, |
| 610 | int start, PyObject *globals, |
| 611 | PyObject *locals} |
Fred Drake | 0041a94 | 1999-04-29 04:20:46 +0000 | [diff] [blame] | 612 | Similar to \cfunction{PyRun_String()}, but the Python source code is |
| 613 | read from \var{fp} instead of an in-memory string. \var{filename} |
| 614 | should be the name of the file. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 615 | \end{cfuncdesc} |
| 616 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 617 | \begin{cfuncdesc}{PyObject*}{Py_CompileString}{char *str, char *filename, |
| 618 | int start} |
Fred Drake | 0041a94 | 1999-04-29 04:20:46 +0000 | [diff] [blame] | 619 | Parse and compile the Python source code in \var{str}, returning the |
| 620 | resulting code object. The start token is given by \var{start}; |
| 621 | this can be used to constrain the code which can be compiled. The |
| 622 | filename specified by \var{filename} is used to construct the code |
| 623 | object and may appear in tracebacks or \exception{SyntaxError} |
| 624 | exception messages. This returns \NULL{} if the code cannot be |
| 625 | parsed or compiled. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 626 | \end{cfuncdesc} |
| 627 | |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 628 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 629 | \chapter{Reference Counting \label{countingRefs}} |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 630 | |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 631 | The macros in this section are used for managing reference counts |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 632 | of Python objects. |
| 633 | |
| 634 | \begin{cfuncdesc}{void}{Py_INCREF}{PyObject *o} |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 635 | Increment the reference count for object \var{o}. The object must |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 636 | not be \NULL{}; if you aren't sure that it isn't \NULL{}, use |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 637 | \cfunction{Py_XINCREF()}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 638 | \end{cfuncdesc} |
| 639 | |
| 640 | \begin{cfuncdesc}{void}{Py_XINCREF}{PyObject *o} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 641 | Increment the reference count for object \var{o}. The object may be |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 642 | \NULL{}, in which case the macro has no effect. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 643 | \end{cfuncdesc} |
| 644 | |
| 645 | \begin{cfuncdesc}{void}{Py_DECREF}{PyObject *o} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 646 | Decrement the reference count for object \var{o}. The object must |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 647 | not be \NULL{}; if you aren't sure that it isn't \NULL{}, use |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 648 | \cfunction{Py_XDECREF()}. If the reference count reaches zero, the |
| 649 | object's type's deallocation function (which must not be \NULL{}) is |
| 650 | invoked. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 651 | |
| 652 | \strong{Warning:} The deallocation function can cause arbitrary Python |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 653 | code to be invoked (e.g. when a class instance with a \method{__del__()} |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 654 | method is deallocated). While exceptions in such code are not |
| 655 | propagated, the executed code has free access to all Python global |
| 656 | variables. This means that any object that is reachable from a global |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 657 | variable should be in a consistent state before \cfunction{Py_DECREF()} is |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 658 | invoked. For example, code to delete an object from a list should |
| 659 | copy a reference to the deleted object in a temporary variable, update |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 660 | the list data structure, and then call \cfunction{Py_DECREF()} for the |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 661 | temporary variable. |
| 662 | \end{cfuncdesc} |
| 663 | |
| 664 | \begin{cfuncdesc}{void}{Py_XDECREF}{PyObject *o} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 665 | Decrement the reference count for object \var{o}. The object may be |
| 666 | \NULL{}, in which case the macro has no effect; otherwise the effect |
| 667 | is the same as for \cfunction{Py_DECREF()}, and the same warning |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 668 | applies. |
| 669 | \end{cfuncdesc} |
| 670 | |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 671 | The following functions or macros are only for internal use: |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 672 | \cfunction{_Py_Dealloc()}, \cfunction{_Py_ForgetReference()}, |
| 673 | \cfunction{_Py_NewReference()}, as well as the global variable |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 674 | \cdata{_Py_RefTotal}. |
Guido van Rossum | ae110af | 1997-05-22 20:11:52 +0000 | [diff] [blame] | 675 | |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 676 | XXX Should mention Py_Malloc(), Py_Realloc(), Py_Free(), |
| 677 | PyMem_Malloc(), PyMem_Realloc(), PyMem_Free(), PyMem_NEW(), |
| 678 | PyMem_RESIZE(), PyMem_DEL(), PyMem_XDEL(). |
| 679 | |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 680 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 681 | \chapter{Exception Handling \label{exceptionHandling}} |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 682 | |
| 683 | The functions in this chapter will let you handle and raise Python |
Guido van Rossum | ae110af | 1997-05-22 20:11:52 +0000 | [diff] [blame] | 684 | exceptions. It is important to understand some of the basics of |
Fred Drake | b0a7873 | 1998-01-13 18:51:10 +0000 | [diff] [blame] | 685 | Python exception handling. It works somewhat like the \UNIX{} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 686 | \cdata{errno} variable: there is a global indicator (per thread) of the |
Guido van Rossum | ae110af | 1997-05-22 20:11:52 +0000 | [diff] [blame] | 687 | last error that occurred. Most functions don't clear this on success, |
| 688 | but will set it to indicate the cause of the error on failure. Most |
| 689 | functions also return an error indicator, usually \NULL{} if they are |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 690 | supposed to return a pointer, or \code{-1} if they return an integer |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 691 | (exception: the \cfunction{PyArg_Parse*()} functions return \code{1} for |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 692 | success and \code{0} for failure). When a function must fail because |
| 693 | some function it called failed, it generally doesn't set the error |
| 694 | indicator; the function it called already set it. |
Guido van Rossum | ae110af | 1997-05-22 20:11:52 +0000 | [diff] [blame] | 695 | |
| 696 | The error indicator consists of three Python objects corresponding to |
| 697 | the Python variables \code{sys.exc_type}, \code{sys.exc_value} and |
| 698 | \code{sys.exc_traceback}. API functions exist to interact with the |
| 699 | error indicator in various ways. There is a separate error indicator |
| 700 | for each thread. |
| 701 | |
| 702 | % XXX Order of these should be more thoughtful. |
| 703 | % Either alphabetical or some kind of structure. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 704 | |
| 705 | \begin{cfuncdesc}{void}{PyErr_Print}{} |
Guido van Rossum | ae110af | 1997-05-22 20:11:52 +0000 | [diff] [blame] | 706 | Print a standard traceback to \code{sys.stderr} and clear the error |
| 707 | indicator. Call this function only when the error indicator is set. |
| 708 | (Otherwise it will cause a fatal error!) |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 709 | \end{cfuncdesc} |
| 710 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 711 | \begin{cfuncdesc}{PyObject*}{PyErr_Occurred}{} |
Guido van Rossum | ae110af | 1997-05-22 20:11:52 +0000 | [diff] [blame] | 712 | Test whether the error indicator is set. If set, return the exception |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 713 | \emph{type} (the first argument to the last call to one of the |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 714 | \cfunction{PyErr_Set*()} functions or to \cfunction{PyErr_Restore()}). If |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 715 | not set, return \NULL{}. You do not own a reference to the return |
| 716 | value, so you do not need to \cfunction{Py_DECREF()} it. |
| 717 | \strong{Note:} do not compare the return value to a specific |
| 718 | exception; use \cfunction{PyErr_ExceptionMatches()} instead, shown |
| 719 | below. |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 720 | \end{cfuncdesc} |
| 721 | |
| 722 | \begin{cfuncdesc}{int}{PyErr_ExceptionMatches}{PyObject *exc} |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 723 | Equivalent to |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 724 | \samp{PyErr_GivenExceptionMatches(PyErr_Occurred(), \var{exc})}. |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 725 | This should only be called when an exception is actually set. |
| 726 | \end{cfuncdesc} |
| 727 | |
| 728 | \begin{cfuncdesc}{int}{PyErr_GivenExceptionMatches}{PyObject *given, PyObject *exc} |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 729 | Return true if the \var{given} exception matches the exception in |
| 730 | \var{exc}. If \var{exc} is a class object, this also returns true |
| 731 | when \var{given} is a subclass. If \var{exc} is a tuple, all |
| 732 | exceptions in the tuple (and recursively in subtuples) are searched |
| 733 | for a match. This should only be called when an exception is actually |
| 734 | set. |
| 735 | \end{cfuncdesc} |
| 736 | |
| 737 | \begin{cfuncdesc}{void}{PyErr_NormalizeException}{PyObject**exc, PyObject**val, PyObject**tb} |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 738 | Under certain circumstances, the values returned by |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 739 | \cfunction{PyErr_Fetch()} below can be ``unnormalized'', meaning that |
| 740 | \code{*\var{exc}} is a class object but \code{*\var{val}} is not an |
| 741 | instance of the same class. This function can be used to instantiate |
| 742 | the class in that case. If the values are already normalized, nothing |
| 743 | happens. |
Guido van Rossum | ae110af | 1997-05-22 20:11:52 +0000 | [diff] [blame] | 744 | \end{cfuncdesc} |
| 745 | |
| 746 | \begin{cfuncdesc}{void}{PyErr_Clear}{} |
| 747 | Clear the error indicator. If the error indicator is not set, there |
| 748 | is no effect. |
| 749 | \end{cfuncdesc} |
| 750 | |
| 751 | \begin{cfuncdesc}{void}{PyErr_Fetch}{PyObject **ptype, PyObject **pvalue, PyObject **ptraceback} |
| 752 | Retrieve the error indicator into three variables whose addresses are |
| 753 | passed. If the error indicator is not set, set all three variables to |
| 754 | \NULL{}. If it is set, it will be cleared and you own a reference to |
| 755 | each object retrieved. The value and traceback object may be \NULL{} |
| 756 | even when the type object is not. \strong{Note:} this function is |
| 757 | normally only used by code that needs to handle exceptions or by code |
| 758 | that needs to save and restore the error indicator temporarily. |
| 759 | \end{cfuncdesc} |
| 760 | |
| 761 | \begin{cfuncdesc}{void}{PyErr_Restore}{PyObject *type, PyObject *value, PyObject *traceback} |
| 762 | Set the error indicator from the three objects. If the error |
| 763 | indicator is already set, it is cleared first. If the objects are |
| 764 | \NULL{}, the error indicator is cleared. Do not pass a \NULL{} type |
| 765 | and non-\NULL{} value or traceback. The exception type should be a |
| 766 | string or class; if it is a class, the value should be an instance of |
| 767 | that class. Do not pass an invalid exception type or value. |
| 768 | (Violating these rules will cause subtle problems later.) This call |
| 769 | takes away a reference to each object, i.e. you must own a reference |
| 770 | to each object before the call and after the call you no longer own |
| 771 | these references. (If you don't understand this, don't use this |
| 772 | function. I warned you.) \strong{Note:} this function is normally |
| 773 | only used by code that needs to save and restore the error indicator |
| 774 | temporarily. |
| 775 | \end{cfuncdesc} |
| 776 | |
| 777 | \begin{cfuncdesc}{void}{PyErr_SetString}{PyObject *type, char *message} |
| 778 | This is the most common way to set the error indicator. The first |
| 779 | argument specifies the exception type; it is normally one of the |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 780 | standard exceptions, e.g. \cdata{PyExc_RuntimeError}. You need not |
Guido van Rossum | ae110af | 1997-05-22 20:11:52 +0000 | [diff] [blame] | 781 | increment its reference count. The second argument is an error |
| 782 | message; it is converted to a string object. |
| 783 | \end{cfuncdesc} |
| 784 | |
| 785 | \begin{cfuncdesc}{void}{PyErr_SetObject}{PyObject *type, PyObject *value} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 786 | This function is similar to \cfunction{PyErr_SetString()} but lets you |
Guido van Rossum | ae110af | 1997-05-22 20:11:52 +0000 | [diff] [blame] | 787 | specify an arbitrary Python object for the ``value'' of the exception. |
| 788 | You need not increment its reference count. |
| 789 | \end{cfuncdesc} |
| 790 | |
| 791 | \begin{cfuncdesc}{void}{PyErr_SetNone}{PyObject *type} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 792 | This is a shorthand for \samp{PyErr_SetObject(\var{type}, Py_None)}. |
Guido van Rossum | ae110af | 1997-05-22 20:11:52 +0000 | [diff] [blame] | 793 | \end{cfuncdesc} |
| 794 | |
| 795 | \begin{cfuncdesc}{int}{PyErr_BadArgument}{} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 796 | This is a shorthand for \samp{PyErr_SetString(PyExc_TypeError, |
Guido van Rossum | ae110af | 1997-05-22 20:11:52 +0000 | [diff] [blame] | 797 | \var{message})}, where \var{message} indicates that a built-in operation |
| 798 | was invoked with an illegal argument. It is mostly for internal use. |
| 799 | \end{cfuncdesc} |
| 800 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 801 | \begin{cfuncdesc}{PyObject*}{PyErr_NoMemory}{} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 802 | This is a shorthand for \samp{PyErr_SetNone(PyExc_MemoryError)}; it |
Guido van Rossum | ae110af | 1997-05-22 20:11:52 +0000 | [diff] [blame] | 803 | returns \NULL{} so an object allocation function can write |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 804 | \samp{return PyErr_NoMemory();} when it runs out of memory. |
Guido van Rossum | ae110af | 1997-05-22 20:11:52 +0000 | [diff] [blame] | 805 | \end{cfuncdesc} |
| 806 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 807 | \begin{cfuncdesc}{PyObject*}{PyErr_SetFromErrno}{PyObject *type} |
Fred Drake | b0a7873 | 1998-01-13 18:51:10 +0000 | [diff] [blame] | 808 | This is a convenience function to raise an exception when a \C{} library |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 809 | function has returned an error and set the \C{} variable \cdata{errno}. |
Guido van Rossum | ae110af | 1997-05-22 20:11:52 +0000 | [diff] [blame] | 810 | It constructs a tuple object whose first item is the integer |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 811 | \cdata{errno} value and whose second item is the corresponding error |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 812 | message (gotten from \cfunction{strerror()}), and then calls |
| 813 | \samp{PyErr_SetObject(\var{type}, \var{object})}. On \UNIX{}, when |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 814 | the \cdata{errno} value is \constant{EINTR}, indicating an interrupted |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 815 | system call, this calls \cfunction{PyErr_CheckSignals()}, and if that set |
Guido van Rossum | ae110af | 1997-05-22 20:11:52 +0000 | [diff] [blame] | 816 | the error indicator, leaves it set to that. The function always |
| 817 | returns \NULL{}, so a wrapper function around a system call can write |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 818 | \samp{return PyErr_SetFromErrno();} when the system call returns an |
| 819 | error. |
Guido van Rossum | ae110af | 1997-05-22 20:11:52 +0000 | [diff] [blame] | 820 | \end{cfuncdesc} |
| 821 | |
| 822 | \begin{cfuncdesc}{void}{PyErr_BadInternalCall}{} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 823 | This is a shorthand for \samp{PyErr_SetString(PyExc_TypeError, |
Guido van Rossum | ae110af | 1997-05-22 20:11:52 +0000 | [diff] [blame] | 824 | \var{message})}, where \var{message} indicates that an internal |
Guido van Rossum | 5060b3b | 1997-08-17 18:02:23 +0000 | [diff] [blame] | 825 | operation (e.g. a Python/C API function) was invoked with an illegal |
Guido van Rossum | ae110af | 1997-05-22 20:11:52 +0000 | [diff] [blame] | 826 | argument. It is mostly for internal use. |
| 827 | \end{cfuncdesc} |
| 828 | |
| 829 | \begin{cfuncdesc}{int}{PyErr_CheckSignals}{} |
| 830 | This function interacts with Python's signal handling. It checks |
| 831 | whether a signal has been sent to the processes and if so, invokes the |
Fred Drake | 4de05a9 | 1998-02-16 14:25:26 +0000 | [diff] [blame] | 832 | corresponding signal handler. If the |
| 833 | \module{signal}\refbimodindex{signal} module is supported, this can |
| 834 | invoke a signal handler written in Python. In all cases, the default |
| 835 | effect for \constant{SIGINT} is to raise the |
| 836 | \exception{KeyboadInterrupt} exception. If an exception is raised the |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 837 | error indicator is set and the function returns \code{1}; otherwise |
| 838 | the function returns \code{0}. The error indicator may or may not be |
| 839 | cleared if it was previously set. |
Guido van Rossum | ae110af | 1997-05-22 20:11:52 +0000 | [diff] [blame] | 840 | \end{cfuncdesc} |
| 841 | |
| 842 | \begin{cfuncdesc}{void}{PyErr_SetInterrupt}{} |
| 843 | This function is obsolete (XXX or platform dependent?). It simulates |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 844 | the effect of a \constant{SIGINT} signal arriving --- the next time |
| 845 | \cfunction{PyErr_CheckSignals()} is called, |
| 846 | \exception{KeyboadInterrupt} will be raised. |
Guido van Rossum | ae110af | 1997-05-22 20:11:52 +0000 | [diff] [blame] | 847 | \end{cfuncdesc} |
| 848 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 849 | \begin{cfuncdesc}{PyObject*}{PyErr_NewException}{char *name, |
| 850 | PyObject *base, |
| 851 | PyObject *dict} |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 852 | This utility function creates and returns a new exception object. The |
Fred Drake | b0a7873 | 1998-01-13 18:51:10 +0000 | [diff] [blame] | 853 | \var{name} argument must be the name of the new exception, a \C{} string |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 854 | of the form \code{module.class}. The \var{base} and \var{dict} |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 855 | arguments are normally \NULL{}. Normally, this creates a class |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 856 | object derived from the root for all exceptions, the built-in name |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 857 | \exception{Exception} (accessible in \C{} as \cdata{PyExc_Exception}). |
| 858 | In this case the \member{__module__} attribute of the new class is set to the |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 859 | first part (up to the last dot) of the \var{name} argument, and the |
| 860 | class name is set to the last part (after the last dot). When the |
| 861 | user has specified the \code{-X} command line option to use string |
| 862 | exceptions, for backward compatibility, or when the \var{base} |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 863 | argument is not a class object (and not \NULL{}), a string object |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 864 | created from the entire \var{name} argument is returned. The |
| 865 | \var{base} argument can be used to specify an alternate base class. |
| 866 | The \var{dict} argument can be used to specify a dictionary of class |
| 867 | variables and methods. |
| 868 | \end{cfuncdesc} |
| 869 | |
| 870 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 871 | \section{Standard Exceptions \label{standardExceptions}} |
Guido van Rossum | ae110af | 1997-05-22 20:11:52 +0000 | [diff] [blame] | 872 | |
| 873 | All standard Python exceptions are available as global variables whose |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 874 | names are \samp{PyExc_} followed by the Python exception name. |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 875 | These have the type \ctype{PyObject *}; they are all either class |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 876 | objects or string objects, depending on the use of the \code{-X} |
| 877 | option to the interpreter. For completeness, here are all the |
Fred Drake | 9d20ac3 | 1998-02-16 15:27:08 +0000 | [diff] [blame] | 878 | variables: |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 879 | \cdata{PyExc_Exception}, |
| 880 | \cdata{PyExc_StandardError}, |
| 881 | \cdata{PyExc_ArithmeticError}, |
| 882 | \cdata{PyExc_LookupError}, |
| 883 | \cdata{PyExc_AssertionError}, |
| 884 | \cdata{PyExc_AttributeError}, |
| 885 | \cdata{PyExc_EOFError}, |
Fred Drake | 127ed0a | 1999-02-17 23:09:05 +0000 | [diff] [blame] | 886 | \cdata{PyExc_EnvironmentError}, |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 887 | \cdata{PyExc_FloatingPointError}, |
| 888 | \cdata{PyExc_IOError}, |
| 889 | \cdata{PyExc_ImportError}, |
| 890 | \cdata{PyExc_IndexError}, |
| 891 | \cdata{PyExc_KeyError}, |
| 892 | \cdata{PyExc_KeyboardInterrupt}, |
| 893 | \cdata{PyExc_MemoryError}, |
| 894 | \cdata{PyExc_NameError}, |
Fred Drake | 127ed0a | 1999-02-17 23:09:05 +0000 | [diff] [blame] | 895 | \cdata{PyExc_NotImplementedError}, |
| 896 | \cdata{PyExc_OSError}, |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 897 | \cdata{PyExc_OverflowError}, |
| 898 | \cdata{PyExc_RuntimeError}, |
| 899 | \cdata{PyExc_SyntaxError}, |
| 900 | \cdata{PyExc_SystemError}, |
| 901 | \cdata{PyExc_SystemExit}, |
| 902 | \cdata{PyExc_TypeError}, |
| 903 | \cdata{PyExc_ValueError}, |
| 904 | \cdata{PyExc_ZeroDivisionError}. |
Guido van Rossum | ae110af | 1997-05-22 20:11:52 +0000 | [diff] [blame] | 905 | |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 906 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 907 | \chapter{Utilities \label{utilities}} |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 908 | |
| 909 | The functions in this chapter perform various utility tasks, such as |
Fred Drake | b0a7873 | 1998-01-13 18:51:10 +0000 | [diff] [blame] | 910 | parsing function arguments and constructing Python values from \C{} |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 911 | values. |
| 912 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 913 | \section{OS Utilities \label{os}} |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 914 | |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 915 | \begin{cfuncdesc}{int}{Py_FdIsInteractive}{FILE *fp, char *filename} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 916 | Return true (nonzero) if the standard I/O file \var{fp} with name |
| 917 | \var{filename} is deemed interactive. This is the case for files for |
| 918 | which \samp{isatty(fileno(\var{fp}))} is true. If the global flag |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 919 | \cdata{Py_InteractiveFlag} is true, this function also returns true if |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 920 | the \var{name} pointer is \NULL{} or if the name is equal to one of |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 921 | the strings \code{"<stdin>"} or \code{"???"}. |
| 922 | \end{cfuncdesc} |
| 923 | |
| 924 | \begin{cfuncdesc}{long}{PyOS_GetLastModificationTime}{char *filename} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 925 | Return the time of last modification of the file \var{filename}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 926 | The result is encoded in the same way as the timestamp returned by |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 927 | the standard \C{} library function \cfunction{time()}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 928 | \end{cfuncdesc} |
| 929 | |
| 930 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 931 | \section{Process Control \label{processControl}} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 932 | |
| 933 | \begin{cfuncdesc}{void}{Py_FatalError}{char *message} |
| 934 | Print a fatal error message and kill the process. No cleanup is |
| 935 | performed. This function should only be invoked when a condition is |
| 936 | detected that would make it dangerous to continue using the Python |
| 937 | interpreter; e.g., when the object administration appears to be |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 938 | corrupted. On \UNIX{}, the standard \C{} library function |
| 939 | \cfunction{abort()} is called which will attempt to produce a |
| 940 | \file{core} file. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 941 | \end{cfuncdesc} |
| 942 | |
| 943 | \begin{cfuncdesc}{void}{Py_Exit}{int status} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 944 | Exit the current process. This calls \cfunction{Py_Finalize()} and |
| 945 | then calls the standard \C{} library function |
| 946 | \code{exit(\var{status})}. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 947 | \end{cfuncdesc} |
| 948 | |
| 949 | \begin{cfuncdesc}{int}{Py_AtExit}{void (*func) ()} |
| 950 | Register a cleanup function to be called by \cfunction{Py_Finalize()}. |
| 951 | The cleanup function will be called with no arguments and should |
| 952 | return no value. At most 32 cleanup functions can be registered. |
| 953 | When the registration is successful, \cfunction{Py_AtExit()} returns |
| 954 | \code{0}; on failure, it returns \code{-1}. The cleanup function |
| 955 | registered last is called first. Each cleanup function will be called |
| 956 | at most once. Since Python's internal finallization will have |
| 957 | completed before the cleanup function, no Python APIs should be called |
| 958 | by \var{func}. |
| 959 | \end{cfuncdesc} |
| 960 | |
| 961 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 962 | \section{Importing Modules \label{importing}} |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 963 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 964 | \begin{cfuncdesc}{PyObject*}{PyImport_ImportModule}{char *name} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 965 | This is a simplified interface to \cfunction{PyImport_ImportModuleEx()} |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 966 | below, leaving the \var{globals} and \var{locals} arguments set to |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 967 | \NULL{}. When the \var{name} argument contains a dot (i.e., when |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 968 | it specifies a submodule of a package), the \var{fromlist} argument is |
| 969 | set to the list \code{['*']} so that the return value is the named |
| 970 | module rather than the top-level package containing it as would |
| 971 | otherwise be the case. (Unfortunately, this has an additional side |
| 972 | effect when \var{name} in fact specifies a subpackage instead of a |
| 973 | submodule: the submodules specified in the package's \code{__all__} |
| 974 | variable are loaded.) Return a new reference to the imported module, |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 975 | or \NULL{} with an exception set on failure (the module may still |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 976 | be created in this case --- examine \code{sys.modules} to find out). |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 977 | \end{cfuncdesc} |
| 978 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 979 | \begin{cfuncdesc}{PyObject*}{PyImport_ImportModuleEx}{char *name, PyObject *globals, PyObject *locals, PyObject *fromlist} |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 980 | Import a module. This is best described by referring to the built-in |
Fred Drake | 53fb772 | 1998-02-16 06:23:20 +0000 | [diff] [blame] | 981 | Python function \function{__import__()}\bifuncindex{__import__}, as |
| 982 | the standard \function{__import__()} function calls this function |
| 983 | directly. |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 984 | |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 985 | The return value is a new reference to the imported module or |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 986 | top-level package, or \NULL{} with an exception set on failure |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 987 | (the module may still be created in this case). Like for |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 988 | \function{__import__()}, the return value when a submodule of a |
| 989 | package was requested is normally the top-level package, unless a |
| 990 | non-empty \var{fromlist} was given. |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 991 | \end{cfuncdesc} |
| 992 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 993 | \begin{cfuncdesc}{PyObject*}{PyImport_Import}{PyObject *name} |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 994 | This is a higher-level interface that calls the current ``import hook |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 995 | function''. It invokes the \function{__import__()} function from the |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 996 | \code{__builtins__} of the current globals. This means that the |
| 997 | import is done using whatever import hooks are installed in the |
Fred Drake | 4de05a9 | 1998-02-16 14:25:26 +0000 | [diff] [blame] | 998 | current environment, e.g. by \module{rexec}\refstmodindex{rexec} or |
| 999 | \module{ihooks}\refstmodindex{ihooks}. |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 1000 | \end{cfuncdesc} |
| 1001 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1002 | \begin{cfuncdesc}{PyObject*}{PyImport_ReloadModule}{PyObject *m} |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 1003 | Reload a module. This is best described by referring to the built-in |
Fred Drake | 53fb772 | 1998-02-16 06:23:20 +0000 | [diff] [blame] | 1004 | Python function \function{reload()}\bifuncindex{reload}, as the standard |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1005 | \function{reload()} function calls this function directly. Return a |
| 1006 | new reference to the reloaded module, or \NULL{} with an exception set |
| 1007 | on failure (the module still exists in this case). |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 1008 | \end{cfuncdesc} |
| 1009 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1010 | \begin{cfuncdesc}{PyObject*}{PyImport_AddModule}{char *name} |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 1011 | Return the module object corresponding to a module name. The |
| 1012 | \var{name} argument may be of the form \code{package.module}). First |
| 1013 | check the modules dictionary if there's one there, and if not, create |
| 1014 | a new one and insert in in the modules dictionary. Because the former |
| 1015 | action is most common, this does not return a new reference, and you |
Guido van Rossum | a096a2e | 1998-11-02 17:02:42 +0000 | [diff] [blame] | 1016 | do not own the returned reference. |
| 1017 | Warning: this function does not load or import the module; if the |
| 1018 | module wasn't already loaded, you will get an empty module object. |
| 1019 | Use \cfunction{PyImport_ImportModule()} or one of its variants to |
| 1020 | import a module. |
| 1021 | Return \NULL{} with an |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 1022 | exception set on failure. \strong{Note:} this function returns |
Guido van Rossum | 4447513 | 1998-04-21 15:30:01 +0000 | [diff] [blame] | 1023 | a ``borrowed'' reference. |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 1024 | \end{cfuncdesc} |
| 1025 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1026 | \begin{cfuncdesc}{PyObject*}{PyImport_ExecCodeModule}{char *name, PyObject *co} |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 1027 | Given a module name (possibly of the form \code{package.module}) and a |
| 1028 | code object read from a Python bytecode file or obtained from the |
Fred Drake | 53fb772 | 1998-02-16 06:23:20 +0000 | [diff] [blame] | 1029 | built-in function \function{compile()}\bifuncindex{compile}, load the |
| 1030 | module. Return a new reference to the module object, or \NULL{} with |
| 1031 | an exception set if an error occurred (the module may still be created |
| 1032 | in this case). (This function would reload the module if it was |
| 1033 | already imported.) |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 1034 | \end{cfuncdesc} |
| 1035 | |
| 1036 | \begin{cfuncdesc}{long}{PyImport_GetMagicNumber}{} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1037 | Return the magic number for Python bytecode files (a.k.a. \file{.pyc} |
| 1038 | and \file{.pyo} files). The magic number should be present in the |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 1039 | first four bytes of the bytecode file, in little-endian byte order. |
| 1040 | \end{cfuncdesc} |
| 1041 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1042 | \begin{cfuncdesc}{PyObject*}{PyImport_GetModuleDict}{} |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 1043 | Return the dictionary used for the module administration |
| 1044 | (a.k.a. \code{sys.modules}). Note that this is a per-interpreter |
| 1045 | variable. |
| 1046 | \end{cfuncdesc} |
| 1047 | |
| 1048 | \begin{cfuncdesc}{void}{_PyImport_Init}{} |
| 1049 | Initialize the import mechanism. For internal use only. |
| 1050 | \end{cfuncdesc} |
| 1051 | |
| 1052 | \begin{cfuncdesc}{void}{PyImport_Cleanup}{} |
| 1053 | Empty the module table. For internal use only. |
| 1054 | \end{cfuncdesc} |
| 1055 | |
| 1056 | \begin{cfuncdesc}{void}{_PyImport_Fini}{} |
| 1057 | Finalize the import mechanism. For internal use only. |
| 1058 | \end{cfuncdesc} |
| 1059 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1060 | \begin{cfuncdesc}{PyObject*}{_PyImport_FindExtension}{char *, char *} |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 1061 | For internal use only. |
Guido van Rossum | 5b8a523 | 1997-12-30 04:38:44 +0000 | [diff] [blame] | 1062 | \end{cfuncdesc} |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 1063 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1064 | \begin{cfuncdesc}{PyObject*}{_PyImport_FixupExtension}{char *, char *} |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 1065 | For internal use only. |
Guido van Rossum | 5b8a523 | 1997-12-30 04:38:44 +0000 | [diff] [blame] | 1066 | \end{cfuncdesc} |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 1067 | |
| 1068 | \begin{cfuncdesc}{int}{PyImport_ImportFrozenModule}{char *} |
| 1069 | Load a frozen module. Return \code{1} for success, \code{0} if the |
| 1070 | module is not found, and \code{-1} with an exception set if the |
| 1071 | initialization failed. To access the imported module on a successful |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1072 | load, use \cfunction{PyImport_ImportModule()}. |
| 1073 | (Note the misnomer --- this function would reload the module if it was |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 1074 | already imported.) |
| 1075 | \end{cfuncdesc} |
| 1076 | |
| 1077 | \begin{ctypedesc}{struct _frozen} |
| 1078 | This is the structure type definition for frozen module descriptors, |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1079 | as generated by the \program{freeze}\index{freeze utility} utility |
| 1080 | (see \file{Tools/freeze/} in the Python source distribution). Its |
| 1081 | definition is: |
| 1082 | |
Guido van Rossum | 9faf4c5 | 1997-10-07 14:38:54 +0000 | [diff] [blame] | 1083 | \begin{verbatim} |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 1084 | struct _frozen { |
Fred Drake | 36fbe76 | 1997-10-13 18:18:33 +0000 | [diff] [blame] | 1085 | char *name; |
| 1086 | unsigned char *code; |
| 1087 | int size; |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 1088 | }; |
Guido van Rossum | 9faf4c5 | 1997-10-07 14:38:54 +0000 | [diff] [blame] | 1089 | \end{verbatim} |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 1090 | \end{ctypedesc} |
| 1091 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1092 | \begin{cvardesc}{struct _frozen*}{PyImport_FrozenModules} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 1093 | This pointer is initialized to point to an array of \ctype{struct |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 1094 | _frozen} records, terminated by one whose members are all \NULL{} |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 1095 | or zero. When a frozen module is imported, it is searched in this |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1096 | table. Third-party code could play tricks with this to provide a |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 1097 | dynamically created collection of frozen modules. |
| 1098 | \end{cvardesc} |
| 1099 | |
| 1100 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 1101 | \chapter{Abstract Objects Layer \label{abstract}} |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1102 | |
| 1103 | The functions in this chapter interact with Python objects regardless |
| 1104 | of their type, or with wide classes of object types (e.g. all |
| 1105 | numerical types, or all sequence types). When used on object types |
| 1106 | for which they do not apply, they will flag a Python exception. |
| 1107 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 1108 | \section{Object Protocol \label{object}} |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1109 | |
| 1110 | \begin{cfuncdesc}{int}{PyObject_Print}{PyObject *o, FILE *fp, int flags} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1111 | Print an object \var{o}, on file \var{fp}. Returns \code{-1} on error |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1112 | The flags argument is used to enable certain printing |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1113 | options. The only option currently supported is |
Guido van Rossum | 3c4378b | 1998-04-14 20:21:10 +0000 | [diff] [blame] | 1114 | \constant{Py_PRINT_RAW}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1115 | \end{cfuncdesc} |
| 1116 | |
| 1117 | \begin{cfuncdesc}{int}{PyObject_HasAttrString}{PyObject *o, char *attr_name} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1118 | Returns \code{1} if \var{o} has the attribute \var{attr_name}, and |
| 1119 | \code{0} otherwise. This is equivalent to the Python expression |
| 1120 | \samp{hasattr(\var{o}, \var{attr_name})}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1121 | This function always succeeds. |
| 1122 | \end{cfuncdesc} |
| 1123 | |
| 1124 | \begin{cfuncdesc}{PyObject*}{PyObject_GetAttrString}{PyObject *o, char *attr_name} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1125 | Retrieve an attribute named \var{attr_name} from object \var{o}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1126 | Returns the attribute value on success, or \NULL{} on failure. |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1127 | This is the equivalent of the Python expression |
| 1128 | \samp{\var{o}.\var{attr_name}}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1129 | \end{cfuncdesc} |
| 1130 | |
| 1131 | |
| 1132 | \begin{cfuncdesc}{int}{PyObject_HasAttr}{PyObject *o, PyObject *attr_name} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1133 | Returns \code{1} if \var{o} has the attribute \var{attr_name}, and |
| 1134 | \code{0} otherwise. This is equivalent to the Python expression |
| 1135 | \samp{hasattr(\var{o}, \var{attr_name})}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1136 | This function always succeeds. |
| 1137 | \end{cfuncdesc} |
| 1138 | |
| 1139 | |
| 1140 | \begin{cfuncdesc}{PyObject*}{PyObject_GetAttr}{PyObject *o, PyObject *attr_name} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1141 | Retrieve an attribute named \var{attr_name} from object \var{o}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1142 | Returns the attribute value on success, or \NULL{} on failure. |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1143 | This is the equivalent of the Python expression |
| 1144 | \samp{\var{o}.\var{attr_name}}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1145 | \end{cfuncdesc} |
| 1146 | |
| 1147 | |
| 1148 | \begin{cfuncdesc}{int}{PyObject_SetAttrString}{PyObject *o, char *attr_name, PyObject *v} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1149 | Set the value of the attribute named \var{attr_name}, for object |
| 1150 | \var{o}, to the value \var{v}. Returns \code{-1} on failure. This is |
| 1151 | the equivalent of the Python statement \samp{\var{o}.\var{attr_name} = |
| 1152 | \var{v}}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1153 | \end{cfuncdesc} |
| 1154 | |
| 1155 | |
| 1156 | \begin{cfuncdesc}{int}{PyObject_SetAttr}{PyObject *o, PyObject *attr_name, PyObject *v} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1157 | Set the value of the attribute named \var{attr_name}, for |
| 1158 | object \var{o}, |
| 1159 | to the value \var{v}. Returns \code{-1} on failure. This is |
| 1160 | the equivalent of the Python statement \samp{\var{o}.\var{attr_name} = |
| 1161 | \var{v}}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1162 | \end{cfuncdesc} |
| 1163 | |
| 1164 | |
| 1165 | \begin{cfuncdesc}{int}{PyObject_DelAttrString}{PyObject *o, char *attr_name} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1166 | Delete attribute named \var{attr_name}, for object \var{o}. Returns |
| 1167 | \code{-1} on failure. This is the equivalent of the Python |
| 1168 | statement: \samp{del \var{o}.\var{attr_name}}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1169 | \end{cfuncdesc} |
| 1170 | |
| 1171 | |
| 1172 | \begin{cfuncdesc}{int}{PyObject_DelAttr}{PyObject *o, PyObject *attr_name} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1173 | Delete attribute named \var{attr_name}, for object \var{o}. Returns |
| 1174 | \code{-1} on failure. This is the equivalent of the Python |
| 1175 | statement \samp{del \var{o}.\var{attr_name}}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1176 | \end{cfuncdesc} |
| 1177 | |
| 1178 | |
| 1179 | \begin{cfuncdesc}{int}{PyObject_Cmp}{PyObject *o1, PyObject *o2, int *result} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1180 | Compare the values of \var{o1} and \var{o2} using a routine provided |
| 1181 | by \var{o1}, if one exists, otherwise with a routine provided by |
| 1182 | \var{o2}. The result of the comparison is returned in \var{result}. |
| 1183 | Returns \code{-1} on failure. This is the equivalent of the Python |
| 1184 | statement \samp{\var{result} = cmp(\var{o1}, \var{o2})}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1185 | \end{cfuncdesc} |
| 1186 | |
| 1187 | |
| 1188 | \begin{cfuncdesc}{int}{PyObject_Compare}{PyObject *o1, PyObject *o2} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1189 | Compare the values of \var{o1} and \var{o2} using a routine provided |
| 1190 | by \var{o1}, if one exists, otherwise with a routine provided by |
| 1191 | \var{o2}. Returns the result of the comparison on success. On error, |
| 1192 | the value returned is undefined; use \cfunction{PyErr_Occurred()} to |
| 1193 | detect an error. This is equivalent to the |
| 1194 | Python expression \samp{cmp(\var{o1}, \var{o2})}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1195 | \end{cfuncdesc} |
| 1196 | |
| 1197 | |
| 1198 | \begin{cfuncdesc}{PyObject*}{PyObject_Repr}{PyObject *o} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1199 | Compute the string representation of object, \var{o}. Returns the |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1200 | string representation on success, \NULL{} on failure. This is |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1201 | the equivalent of the Python expression \samp{repr(\var{o})}. |
| 1202 | Called by the \function{repr()}\bifuncindex{repr} built-in function |
| 1203 | and by reverse quotes. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1204 | \end{cfuncdesc} |
| 1205 | |
| 1206 | |
| 1207 | \begin{cfuncdesc}{PyObject*}{PyObject_Str}{PyObject *o} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1208 | Compute the string representation of object \var{o}. Returns the |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1209 | string representation on success, \NULL{} on failure. This is |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1210 | the equivalent of the Python expression \samp{str(\var{o})}. |
| 1211 | Called by the \function{str()}\bifuncindex{str} built-in function and |
| 1212 | by the \keyword{print} statement. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1213 | \end{cfuncdesc} |
| 1214 | |
| 1215 | |
| 1216 | \begin{cfuncdesc}{int}{PyCallable_Check}{PyObject *o} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1217 | Determine if the object \var{o}, is callable. Return \code{1} if the |
| 1218 | object is callable and \code{0} otherwise. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1219 | This function always succeeds. |
| 1220 | \end{cfuncdesc} |
| 1221 | |
| 1222 | |
| 1223 | \begin{cfuncdesc}{PyObject*}{PyObject_CallObject}{PyObject *callable_object, PyObject *args} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1224 | Call a callable Python object \var{callable_object}, with |
| 1225 | arguments given by the tuple \var{args}. If no arguments are |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1226 | needed, then args may be \NULL{}. Returns the result of the |
| 1227 | call on success, or \NULL{} on failure. This is the equivalent |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1228 | of the Python expression \samp{apply(\var{o}, \var{args})}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1229 | \end{cfuncdesc} |
| 1230 | |
| 1231 | \begin{cfuncdesc}{PyObject*}{PyObject_CallFunction}{PyObject *callable_object, char *format, ...} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1232 | Call a callable Python object \var{callable_object}, with a |
Fred Drake | b0a7873 | 1998-01-13 18:51:10 +0000 | [diff] [blame] | 1233 | variable number of \C{} arguments. The \C{} arguments are described |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1234 | using a \cfunction{Py_BuildValue()} style format string. The format may |
| 1235 | be \NULL{}, indicating that no arguments are provided. Returns the |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1236 | result of the call on success, or \NULL{} on failure. This is |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1237 | the equivalent of the Python expression \samp{apply(\var{o}, |
| 1238 | \var{args})}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1239 | \end{cfuncdesc} |
| 1240 | |
| 1241 | |
| 1242 | \begin{cfuncdesc}{PyObject*}{PyObject_CallMethod}{PyObject *o, char *m, char *format, ...} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1243 | Call the method named \var{m} of object \var{o} with a variable number |
| 1244 | of C arguments. The \C{} arguments are described by a |
| 1245 | \cfunction{Py_BuildValue()} format string. The format may be \NULL{}, |
| 1246 | indicating that no arguments are provided. Returns the result of the |
| 1247 | call on success, or \NULL{} on failure. This is the equivalent of the |
| 1248 | Python expression \samp{\var{o}.\var{method}(\var{args})}. |
| 1249 | Note that Special method names, such as \method{__add__()}, |
| 1250 | \method{__getitem__()}, and so on are not supported. The specific |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1251 | abstract-object routines for these must be used. |
| 1252 | \end{cfuncdesc} |
| 1253 | |
| 1254 | |
| 1255 | \begin{cfuncdesc}{int}{PyObject_Hash}{PyObject *o} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1256 | Compute and return the hash value of an object \var{o}. On |
| 1257 | failure, return \code{-1}. This is the equivalent of the Python |
| 1258 | expression \samp{hash(\var{o})}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1259 | \end{cfuncdesc} |
| 1260 | |
| 1261 | |
| 1262 | \begin{cfuncdesc}{int}{PyObject_IsTrue}{PyObject *o} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1263 | Returns \code{1} if the object \var{o} is considered to be true, and |
| 1264 | \code{0} otherwise. This is equivalent to the Python expression |
| 1265 | \samp{not not \var{o}}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1266 | This function always succeeds. |
| 1267 | \end{cfuncdesc} |
| 1268 | |
| 1269 | |
| 1270 | \begin{cfuncdesc}{PyObject*}{PyObject_Type}{PyObject *o} |
| 1271 | On success, returns a type object corresponding to the object |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1272 | type of object \var{o}. On failure, returns \NULL{}. This is |
| 1273 | equivalent to the Python expression \samp{type(\var{o})}. |
Fred Drake | 53fb772 | 1998-02-16 06:23:20 +0000 | [diff] [blame] | 1274 | \bifuncindex{type} |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1275 | \end{cfuncdesc} |
| 1276 | |
| 1277 | \begin{cfuncdesc}{int}{PyObject_Length}{PyObject *o} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1278 | Return the length of object \var{o}. If the object \var{o} provides |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1279 | both sequence and mapping protocols, the sequence length is |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1280 | returned. On error, \code{-1} is returned. This is the equivalent |
| 1281 | to the Python expression \samp{len(\var{o})}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1282 | \end{cfuncdesc} |
| 1283 | |
| 1284 | |
| 1285 | \begin{cfuncdesc}{PyObject*}{PyObject_GetItem}{PyObject *o, PyObject *key} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1286 | Return element of \var{o} corresponding to the object \var{key} or |
| 1287 | \NULL{} on failure. This is the equivalent of the Python expression |
| 1288 | \samp{\var{o}[\var{key}]}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1289 | \end{cfuncdesc} |
| 1290 | |
| 1291 | |
| 1292 | \begin{cfuncdesc}{int}{PyObject_SetItem}{PyObject *o, PyObject *key, PyObject *v} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1293 | Map the object \var{key} to the value \var{v}. |
| 1294 | Returns \code{-1} on failure. This is the equivalent |
| 1295 | of the Python statement \samp{\var{o}[\var{key}] = \var{v}}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1296 | \end{cfuncdesc} |
| 1297 | |
| 1298 | |
Guido van Rossum | d1dbf63 | 1999-01-22 20:10:49 +0000 | [diff] [blame] | 1299 | \begin{cfuncdesc}{int}{PyObject_DelItem}{PyObject *o, PyObject *key} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1300 | Delete the mapping for \var{key} from \var{o}. Returns \code{-1} on |
| 1301 | failure. This is the equivalent of the Python statement \samp{del |
| 1302 | \var{o}[\var{key}]}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1303 | \end{cfuncdesc} |
| 1304 | |
| 1305 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 1306 | \section{Number Protocol \label{number}} |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1307 | |
| 1308 | \begin{cfuncdesc}{int}{PyNumber_Check}{PyObject *o} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1309 | Returns \code{1} if the object \var{o} provides numeric protocols, and |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1310 | false otherwise. |
| 1311 | This function always succeeds. |
| 1312 | \end{cfuncdesc} |
| 1313 | |
| 1314 | |
| 1315 | \begin{cfuncdesc}{PyObject*}{PyNumber_Add}{PyObject *o1, PyObject *o2} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1316 | Returns the result of adding \var{o1} and \var{o2}, or \NULL{} on |
| 1317 | failure. This is the equivalent of the Python expression |
| 1318 | \samp{\var{o1} + \var{o2}}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1319 | \end{cfuncdesc} |
| 1320 | |
| 1321 | |
| 1322 | \begin{cfuncdesc}{PyObject*}{PyNumber_Subtract}{PyObject *o1, PyObject *o2} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1323 | Returns the result of subtracting \var{o2} from \var{o1}, or \NULL{} |
| 1324 | on failure. This is the equivalent of the Python expression |
| 1325 | \samp{\var{o1} - \var{o2}}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1326 | \end{cfuncdesc} |
| 1327 | |
| 1328 | |
| 1329 | \begin{cfuncdesc}{PyObject*}{PyNumber_Multiply}{PyObject *o1, PyObject *o2} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1330 | Returns the result of multiplying \var{o1} and \var{o2}, or \NULL{} on |
| 1331 | failure. This is the equivalent of the Python expression |
| 1332 | \samp{\var{o1} * \var{o2}}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1333 | \end{cfuncdesc} |
| 1334 | |
| 1335 | |
| 1336 | \begin{cfuncdesc}{PyObject*}{PyNumber_Divide}{PyObject *o1, PyObject *o2} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1337 | Returns the result of dividing \var{o1} by \var{o2}, or \NULL{} on |
| 1338 | failure. |
| 1339 | This is the equivalent of the Python expression \samp{\var{o1} / |
| 1340 | \var{o2}}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1341 | \end{cfuncdesc} |
| 1342 | |
| 1343 | |
| 1344 | \begin{cfuncdesc}{PyObject*}{PyNumber_Remainder}{PyObject *o1, PyObject *o2} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1345 | Returns the remainder of dividing \var{o1} by \var{o2}, or \NULL{} on |
| 1346 | failure. This is the equivalent of the Python expression |
| 1347 | \samp{\var{o1} \% \var{o2}}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1348 | \end{cfuncdesc} |
| 1349 | |
| 1350 | |
| 1351 | \begin{cfuncdesc}{PyObject*}{PyNumber_Divmod}{PyObject *o1, PyObject *o2} |
Fred Drake | 53fb772 | 1998-02-16 06:23:20 +0000 | [diff] [blame] | 1352 | See the built-in function \function{divmod()}\bifuncindex{divmod}. |
| 1353 | Returns \NULL{} on failure. This is the equivalent of the Python |
| 1354 | expression \samp{divmod(\var{o1}, \var{o2})}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1355 | \end{cfuncdesc} |
| 1356 | |
| 1357 | |
| 1358 | \begin{cfuncdesc}{PyObject*}{PyNumber_Power}{PyObject *o1, PyObject *o2, PyObject *o3} |
Fred Drake | 53fb772 | 1998-02-16 06:23:20 +0000 | [diff] [blame] | 1359 | See the built-in function \function{pow()}\bifuncindex{pow}. Returns |
| 1360 | \NULL{} on failure. This is the equivalent of the Python expression |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1361 | \samp{pow(\var{o1}, \var{o2}, \var{o3})}, where \var{o3} is optional. |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 1362 | If \var{o3} is to be ignored, pass \cdata{Py_None} in its place. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1363 | \end{cfuncdesc} |
| 1364 | |
| 1365 | |
| 1366 | \begin{cfuncdesc}{PyObject*}{PyNumber_Negative}{PyObject *o} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1367 | Returns the negation of \var{o} on success, or \NULL{} on failure. |
| 1368 | This is the equivalent of the Python expression \samp{-\var{o}}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1369 | \end{cfuncdesc} |
| 1370 | |
| 1371 | |
| 1372 | \begin{cfuncdesc}{PyObject*}{PyNumber_Positive}{PyObject *o} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1373 | Returns \var{o} on success, or \NULL{} on failure. |
| 1374 | This is the equivalent of the Python expression \samp{+\var{o}}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1375 | \end{cfuncdesc} |
| 1376 | |
| 1377 | |
| 1378 | \begin{cfuncdesc}{PyObject*}{PyNumber_Absolute}{PyObject *o} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1379 | Returns the absolute value of \var{o}, or \NULL{} on failure. This is |
| 1380 | the equivalent of the Python expression \samp{abs(\var{o})}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1381 | \end{cfuncdesc} |
| 1382 | |
| 1383 | |
| 1384 | \begin{cfuncdesc}{PyObject*}{PyNumber_Invert}{PyObject *o} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1385 | Returns the bitwise negation of \var{o} on success, or \NULL{} on |
| 1386 | failure. This is the equivalent of the Python expression |
| 1387 | \samp{\~\var{o}}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1388 | \end{cfuncdesc} |
| 1389 | |
| 1390 | |
| 1391 | \begin{cfuncdesc}{PyObject*}{PyNumber_Lshift}{PyObject *o1, PyObject *o2} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1392 | Returns the result of left shifting \var{o1} by \var{o2} on success, |
| 1393 | or \NULL{} on failure. This is the equivalent of the Python |
| 1394 | expression \samp{\var{o1} << \var{o2}}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1395 | \end{cfuncdesc} |
| 1396 | |
| 1397 | |
| 1398 | \begin{cfuncdesc}{PyObject*}{PyNumber_Rshift}{PyObject *o1, PyObject *o2} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1399 | Returns the result of right shifting \var{o1} by \var{o2} on success, |
| 1400 | or \NULL{} on failure. This is the equivalent of the Python |
| 1401 | expression \samp{\var{o1} >> \var{o2}}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1402 | \end{cfuncdesc} |
| 1403 | |
| 1404 | |
| 1405 | \begin{cfuncdesc}{PyObject*}{PyNumber_And}{PyObject *o1, PyObject *o2} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1406 | Returns the result of ``anding'' \var{o2} and \var{o2} on success and |
| 1407 | \NULL{} on failure. This is the equivalent of the Python |
| 1408 | expression \samp{\var{o1} and \var{o2}}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1409 | \end{cfuncdesc} |
| 1410 | |
| 1411 | |
| 1412 | \begin{cfuncdesc}{PyObject*}{PyNumber_Xor}{PyObject *o1, PyObject *o2} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1413 | Returns the bitwise exclusive or of \var{o1} by \var{o2} on success, |
| 1414 | or \NULL{} on failure. This is the equivalent of the Python |
| 1415 | expression \samp{\var{o1} \^{ }\var{o2}}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1416 | \end{cfuncdesc} |
| 1417 | |
| 1418 | \begin{cfuncdesc}{PyObject*}{PyNumber_Or}{PyObject *o1, PyObject *o2} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1419 | Returns the result of \var{o1} and \var{o2} on success, or \NULL{} on |
| 1420 | failure. This is the equivalent of the Python expression |
| 1421 | \samp{\var{o1} or \var{o2}}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1422 | \end{cfuncdesc} |
| 1423 | |
| 1424 | |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1425 | \begin{cfuncdesc}{PyObject*}{PyNumber_Coerce}{PyObject **p1, PyObject **p2} |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1426 | This function takes the addresses of two variables of type |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 1427 | \ctype{PyObject*}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1428 | |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1429 | If the objects pointed to by \code{*\var{p1}} and \code{*\var{p2}} |
| 1430 | have the same type, increment their reference count and return |
| 1431 | \code{0} (success). If the objects can be converted to a common |
| 1432 | numeric type, replace \code{*p1} and \code{*p2} by their converted |
| 1433 | value (with 'new' reference counts), and return \code{0}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1434 | If no conversion is possible, or if some other error occurs, |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1435 | return \code{-1} (failure) and don't increment the reference counts. |
| 1436 | The call \code{PyNumber_Coerce(\&o1, \&o2)} is equivalent to the |
| 1437 | Python statement \samp{\var{o1}, \var{o2} = coerce(\var{o1}, |
| 1438 | \var{o2})}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1439 | \end{cfuncdesc} |
| 1440 | |
| 1441 | |
| 1442 | \begin{cfuncdesc}{PyObject*}{PyNumber_Int}{PyObject *o} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1443 | Returns the \var{o} converted to an integer object on success, or |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1444 | \NULL{} on failure. This is the equivalent of the Python |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1445 | expression \samp{int(\var{o})}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1446 | \end{cfuncdesc} |
| 1447 | |
| 1448 | |
| 1449 | \begin{cfuncdesc}{PyObject*}{PyNumber_Long}{PyObject *o} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1450 | Returns the \var{o} converted to a long integer object on success, |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1451 | or \NULL{} on failure. This is the equivalent of the Python |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1452 | expression \samp{long(\var{o})}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1453 | \end{cfuncdesc} |
| 1454 | |
| 1455 | |
| 1456 | \begin{cfuncdesc}{PyObject*}{PyNumber_Float}{PyObject *o} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1457 | Returns the \var{o} converted to a float object on success, or \NULL{} |
| 1458 | on failure. This is the equivalent of the Python expression |
| 1459 | \samp{float(\var{o})}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1460 | \end{cfuncdesc} |
| 1461 | |
| 1462 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 1463 | \section{Sequence Protocol \label{sequence}} |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1464 | |
| 1465 | \begin{cfuncdesc}{int}{PySequence_Check}{PyObject *o} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1466 | Return \code{1} if the object provides sequence protocol, and \code{0} |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1467 | otherwise. |
| 1468 | This function always succeeds. |
| 1469 | \end{cfuncdesc} |
| 1470 | |
| 1471 | |
| 1472 | \begin{cfuncdesc}{PyObject*}{PySequence_Concat}{PyObject *o1, PyObject *o2} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1473 | Return the concatenation of \var{o1} and \var{o2} on success, and \NULL{} on |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1474 | failure. This is the equivalent of the Python |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1475 | expression \samp{\var{o1} + \var{o2}}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1476 | \end{cfuncdesc} |
| 1477 | |
| 1478 | |
| 1479 | \begin{cfuncdesc}{PyObject*}{PySequence_Repeat}{PyObject *o, int count} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1480 | Return the result of repeating sequence object \var{o} \var{count} |
| 1481 | times, or \NULL{} on failure. This is the equivalent of the Python |
| 1482 | expression \samp{\var{o} * \var{count}}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1483 | \end{cfuncdesc} |
| 1484 | |
| 1485 | |
| 1486 | \begin{cfuncdesc}{PyObject*}{PySequence_GetItem}{PyObject *o, int i} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1487 | Return the \var{i}th element of \var{o}, or \NULL{} on failure. This |
| 1488 | is the equivalent of the Python expression \samp{\var{o}[\var{i}]}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1489 | \end{cfuncdesc} |
| 1490 | |
| 1491 | |
| 1492 | \begin{cfuncdesc}{PyObject*}{PySequence_GetSlice}{PyObject *o, int i1, int i2} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1493 | Return the slice of sequence object \var{o} between \var{i1} and |
| 1494 | \var{i2}, or \NULL{} on failure. This is the equivalent of the Python |
| 1495 | expression \samp{\var{o}[\var{i1}:\var{i2}]}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1496 | \end{cfuncdesc} |
| 1497 | |
| 1498 | |
| 1499 | \begin{cfuncdesc}{int}{PySequence_SetItem}{PyObject *o, int i, PyObject *v} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1500 | Assign object \var{v} to the \var{i}th element of \var{o}. |
| 1501 | Returns \code{-1} on failure. This is the equivalent of the Python |
| 1502 | statement \samp{\var{o}[\var{i}] = \var{v}}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1503 | \end{cfuncdesc} |
| 1504 | |
| 1505 | \begin{cfuncdesc}{int}{PySequence_DelItem}{PyObject *o, int i} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1506 | Delete the \var{i}th element of object \var{v}. Returns |
| 1507 | \code{-1} on failure. This is the equivalent of the Python |
| 1508 | statement \samp{del \var{o}[\var{i}]}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1509 | \end{cfuncdesc} |
| 1510 | |
| 1511 | \begin{cfuncdesc}{int}{PySequence_SetSlice}{PyObject *o, int i1, int i2, PyObject *v} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1512 | Assign the sequence object \var{v} to the slice in sequence |
| 1513 | object \var{o} from \var{i1} to \var{i2}. This is the equivalent of |
| 1514 | the Python statement \samp{\var{o}[\var{i1}:\var{i2}] = \var{v}}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1515 | \end{cfuncdesc} |
| 1516 | |
| 1517 | \begin{cfuncdesc}{int}{PySequence_DelSlice}{PyObject *o, int i1, int i2} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1518 | Delete the slice in sequence object \var{o} from \var{i1} to \var{i2}. |
| 1519 | Returns \code{-1} on failure. This is the equivalent of the Python |
| 1520 | statement \samp{del \var{o}[\var{i1}:\var{i2}]}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1521 | \end{cfuncdesc} |
| 1522 | |
| 1523 | \begin{cfuncdesc}{PyObject*}{PySequence_Tuple}{PyObject *o} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1524 | Returns the \var{o} as a tuple on success, and \NULL{} on failure. |
| 1525 | This is equivalent to the Python expression \code{tuple(\var{o})}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1526 | \end{cfuncdesc} |
| 1527 | |
| 1528 | \begin{cfuncdesc}{int}{PySequence_Count}{PyObject *o, PyObject *value} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1529 | Return the number of occurrences of \var{value} in \var{o}, that is, |
| 1530 | return the number of keys for which \code{\var{o}[\var{key}] == |
| 1531 | \var{value}}. On failure, return \code{-1}. This is equivalent to |
| 1532 | the Python expression \samp{\var{o}.count(\var{value})}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1533 | \end{cfuncdesc} |
| 1534 | |
| 1535 | \begin{cfuncdesc}{int}{PySequence_In}{PyObject *o, PyObject *value} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1536 | Determine if \var{o} contains \var{value}. If an item in \var{o} is |
| 1537 | equal to \var{value}, return \code{1}, otherwise return \code{0}. On |
| 1538 | error, return \code{-1}. This is equivalent to the Python expression |
| 1539 | \samp{\var{value} in \var{o}}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1540 | \end{cfuncdesc} |
| 1541 | |
| 1542 | \begin{cfuncdesc}{int}{PySequence_Index}{PyObject *o, PyObject *value} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1543 | Return the first index \var{i} for which \code{\var{o}[\var{i}] == |
| 1544 | \var{value}}. On error, return \code{-1}. This is equivalent to |
| 1545 | the Python expression \samp{\var{o}.index(\var{value})}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1546 | \end{cfuncdesc} |
| 1547 | |
Fred Drake | f39ed67 | 1998-02-26 22:01:23 +0000 | [diff] [blame] | 1548 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 1549 | \section{Mapping Protocol \label{mapping}} |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1550 | |
| 1551 | \begin{cfuncdesc}{int}{PyMapping_Check}{PyObject *o} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1552 | Return \code{1} if the object provides mapping protocol, and \code{0} |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1553 | otherwise. |
| 1554 | This function always succeeds. |
| 1555 | \end{cfuncdesc} |
| 1556 | |
| 1557 | |
| 1558 | \begin{cfuncdesc}{int}{PyMapping_Length}{PyObject *o} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1559 | Returns the number of keys in object \var{o} on success, and \code{-1} |
| 1560 | on failure. For objects that do not provide sequence protocol, |
| 1561 | this is equivalent to the Python expression \samp{len(\var{o})}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1562 | \end{cfuncdesc} |
| 1563 | |
| 1564 | |
| 1565 | \begin{cfuncdesc}{int}{PyMapping_DelItemString}{PyObject *o, char *key} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1566 | Remove the mapping for object \var{key} from the object \var{o}. |
| 1567 | Return \code{-1} on failure. This is equivalent to |
| 1568 | the Python statement \samp{del \var{o}[\var{key}]}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1569 | \end{cfuncdesc} |
| 1570 | |
| 1571 | |
| 1572 | \begin{cfuncdesc}{int}{PyMapping_DelItem}{PyObject *o, PyObject *key} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1573 | Remove the mapping for object \var{key} from the object \var{o}. |
| 1574 | Return \code{-1} on failure. This is equivalent to |
| 1575 | the Python statement \samp{del \var{o}[\var{key}]}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1576 | \end{cfuncdesc} |
| 1577 | |
| 1578 | |
| 1579 | \begin{cfuncdesc}{int}{PyMapping_HasKeyString}{PyObject *o, char *key} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1580 | On success, return \code{1} if the mapping object has the key \var{key} |
| 1581 | and \code{0} otherwise. This is equivalent to the Python expression |
| 1582 | \samp{\var{o}.has_key(\var{key})}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1583 | This function always succeeds. |
| 1584 | \end{cfuncdesc} |
| 1585 | |
| 1586 | |
| 1587 | \begin{cfuncdesc}{int}{PyMapping_HasKey}{PyObject *o, PyObject *key} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1588 | Return \code{1} if the mapping object has the key \var{key} and |
| 1589 | \code{0} otherwise. This is equivalent to the Python expression |
| 1590 | \samp{\var{o}.has_key(\var{key})}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1591 | This function always succeeds. |
| 1592 | \end{cfuncdesc} |
| 1593 | |
| 1594 | |
| 1595 | \begin{cfuncdesc}{PyObject*}{PyMapping_Keys}{PyObject *o} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1596 | On success, return a list of the keys in object \var{o}. On |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1597 | failure, return \NULL{}. This is equivalent to the Python |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1598 | expression \samp{\var{o}.keys()}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1599 | \end{cfuncdesc} |
| 1600 | |
| 1601 | |
| 1602 | \begin{cfuncdesc}{PyObject*}{PyMapping_Values}{PyObject *o} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1603 | On success, return a list of the values in object \var{o}. On |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1604 | failure, return \NULL{}. This is equivalent to the Python |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1605 | expression \samp{\var{o}.values()}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1606 | \end{cfuncdesc} |
| 1607 | |
| 1608 | |
| 1609 | \begin{cfuncdesc}{PyObject*}{PyMapping_Items}{PyObject *o} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1610 | On success, return a list of the items in object \var{o}, where |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1611 | each item is a tuple containing a key-value pair. On |
| 1612 | failure, return \NULL{}. This is equivalent to the Python |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1613 | expression \samp{\var{o}.items()}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1614 | \end{cfuncdesc} |
| 1615 | |
| 1616 | \begin{cfuncdesc}{int}{PyMapping_Clear}{PyObject *o} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1617 | Make object \var{o} empty. Returns \code{1} on success and \code{0} |
| 1618 | on failure. This is equivalent to the Python statement |
| 1619 | \samp{for key in \var{o}.keys(): del \var{o}[key]}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1620 | \end{cfuncdesc} |
| 1621 | |
| 1622 | |
| 1623 | \begin{cfuncdesc}{PyObject*}{PyMapping_GetItemString}{PyObject *o, char *key} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1624 | Return element of \var{o} corresponding to the object \var{key} or |
| 1625 | \NULL{} on failure. This is the equivalent of the Python expression |
| 1626 | \samp{\var{o}[\var{key}]}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1627 | \end{cfuncdesc} |
| 1628 | |
Guido van Rossum | 0a0f11b | 1998-10-16 17:43:53 +0000 | [diff] [blame] | 1629 | \begin{cfuncdesc}{int}{PyMapping_SetItemString}{PyObject *o, char *key, PyObject *v} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1630 | Map the object \var{key} to the value \var{v} in object \var{o}. |
| 1631 | Returns \code{-1} on failure. This is the equivalent of the Python |
| 1632 | statement \samp{\var{o}[\var{key}] = \var{v}}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1633 | \end{cfuncdesc} |
| 1634 | |
| 1635 | |
| 1636 | \section{Constructors} |
| 1637 | |
| 1638 | \begin{cfuncdesc}{PyObject*}{PyFile_FromString}{char *file_name, char *mode} |
| 1639 | On success, returns a new file object that is opened on the |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1640 | file given by \var{file_name}, with a file mode given by \var{mode}, |
| 1641 | where \var{mode} has the same semantics as the standard \C{} routine |
| 1642 | \cfunction{fopen()}. On failure, return \code{-1}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1643 | \end{cfuncdesc} |
| 1644 | |
| 1645 | \begin{cfuncdesc}{PyObject*}{PyFile_FromFile}{FILE *fp, char *file_name, char *mode, int close_on_del} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1646 | Return a new file object for an already opened standard \C{} file |
| 1647 | pointer, \var{fp}. A file name, \var{file_name}, and open mode, |
| 1648 | \var{mode}, must be provided as well as a flag, \var{close_on_del}, |
| 1649 | that indicates whether the file is to be closed when the file object |
| 1650 | is destroyed. On failure, return \code{-1}. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1651 | \end{cfuncdesc} |
| 1652 | |
| 1653 | \begin{cfuncdesc}{PyObject*}{PyFloat_FromDouble}{double v} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1654 | Returns a new float object with the value \var{v} on success, and |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1655 | \NULL{} on failure. |
| 1656 | \end{cfuncdesc} |
| 1657 | |
| 1658 | \begin{cfuncdesc}{PyObject*}{PyInt_FromLong}{long v} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1659 | Returns a new int object with the value \var{v} on success, and |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1660 | \NULL{} on failure. |
| 1661 | \end{cfuncdesc} |
| 1662 | |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1663 | \begin{cfuncdesc}{PyObject*}{PyList_New}{int len} |
| 1664 | Returns a new list of length \var{len} on success, and \NULL{} on |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1665 | failure. |
| 1666 | \end{cfuncdesc} |
| 1667 | |
| 1668 | \begin{cfuncdesc}{PyObject*}{PyLong_FromLong}{long v} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1669 | Returns a new long object with the value \var{v} on success, and |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1670 | \NULL{} on failure. |
| 1671 | \end{cfuncdesc} |
| 1672 | |
| 1673 | \begin{cfuncdesc}{PyObject*}{PyLong_FromDouble}{double v} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1674 | Returns a new long object with the value \var{v} on success, and |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1675 | \NULL{} on failure. |
| 1676 | \end{cfuncdesc} |
| 1677 | |
| 1678 | \begin{cfuncdesc}{PyObject*}{PyDict_New}{} |
| 1679 | Returns a new empty dictionary on success, and \NULL{} on |
| 1680 | failure. |
| 1681 | \end{cfuncdesc} |
| 1682 | |
| 1683 | \begin{cfuncdesc}{PyObject*}{PyString_FromString}{char *v} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1684 | Returns a new string object with the value \var{v} on success, and |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1685 | \NULL{} on failure. |
| 1686 | \end{cfuncdesc} |
| 1687 | |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1688 | \begin{cfuncdesc}{PyObject*}{PyString_FromStringAndSize}{char *v, int len} |
| 1689 | Returns a new string object with the value \var{v} and length |
| 1690 | \var{len} on success, and \NULL{} on failure. If \var{v} is \NULL{}, |
| 1691 | the contents of the string are uninitialized. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1692 | \end{cfuncdesc} |
| 1693 | |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1694 | \begin{cfuncdesc}{PyObject*}{PyTuple_New}{int len} |
| 1695 | Returns a new tuple of length \var{len} on success, and \NULL{} on |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1696 | failure. |
| 1697 | \end{cfuncdesc} |
| 1698 | |
| 1699 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 1700 | \chapter{Concrete Objects Layer \label{concrete}} |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1701 | |
| 1702 | The functions in this chapter are specific to certain Python object |
| 1703 | types. Passing them an object of the wrong type is not a good idea; |
| 1704 | if you receive an object from a Python program and you are not sure |
| 1705 | that it has the right type, you must perform a type check first; |
| 1706 | e.g. to check that an object is a dictionary, use |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1707 | \cfunction{PyDict_Check()}. The chapter is structured like the |
| 1708 | ``family tree'' of Python object types. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1709 | |
| 1710 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 1711 | \section{Fundamental Objects \label{fundamental}} |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1712 | |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1713 | This section describes Python type objects and the singleton object |
| 1714 | \code{None}. |
| 1715 | |
| 1716 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 1717 | \subsection{Type Objects \label{typeObjects}} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1718 | |
| 1719 | \begin{ctypedesc}{PyTypeObject} |
| 1720 | |
| 1721 | \end{ctypedesc} |
| 1722 | |
| 1723 | \begin{cvardesc}{PyObject *}{PyType_Type} |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 1724 | This is the type object for type objects; it is the same object as |
| 1725 | \code{types.TypeType} in the Python layer. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1726 | \end{cvardesc} |
| 1727 | |
| 1728 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 1729 | \subsection{The None Object \label{noneObject}} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1730 | |
| 1731 | \begin{cvardesc}{PyObject *}{Py_None} |
Guido van Rossum | 4447513 | 1998-04-21 15:30:01 +0000 | [diff] [blame] | 1732 | The Python \code{None} object, denoting lack of value. This object has |
| 1733 | no methods. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1734 | \end{cvardesc} |
| 1735 | |
| 1736 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 1737 | \section{Sequence Objects \label{sequenceObjects}} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1738 | |
| 1739 | Generic operations on sequence objects were discussed in the previous |
| 1740 | chapter; this section deals with the specific kinds of sequence |
| 1741 | objects that are intrinsic to the Python language. |
| 1742 | |
| 1743 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 1744 | \subsection{String Objects \label{stringObjects}} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1745 | |
| 1746 | \begin{ctypedesc}{PyStringObject} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 1747 | This subtype of \ctype{PyObject} represents a Python string object. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1748 | \end{ctypedesc} |
| 1749 | |
| 1750 | \begin{cvardesc}{PyTypeObject}{PyString_Type} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 1751 | This instance of \ctype{PyTypeObject} represents the Python string type. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1752 | \end{cvardesc} |
| 1753 | |
| 1754 | \begin{cfuncdesc}{int}{PyString_Check}{PyObject *o} |
Guido van Rossum | 3c4378b | 1998-04-14 20:21:10 +0000 | [diff] [blame] | 1755 | Returns true if the object \var{o} is a string object. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1756 | \end{cfuncdesc} |
| 1757 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1758 | \begin{cfuncdesc}{PyObject*}{PyString_FromStringAndSize}{const char *v, |
| 1759 | int len} |
Guido van Rossum | 3c4378b | 1998-04-14 20:21:10 +0000 | [diff] [blame] | 1760 | Returns a new string object with the value \var{v} and length |
| 1761 | \var{len} on success, and \NULL{} on failure. If \var{v} is \NULL{}, |
| 1762 | the contents of the string are uninitialized. |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1763 | \end{cfuncdesc} |
| 1764 | |
| 1765 | \begin{cfuncdesc}{PyObject*}{PyString_FromString}{const char *v} |
Guido van Rossum | 3c4378b | 1998-04-14 20:21:10 +0000 | [diff] [blame] | 1766 | Returns a new string object with the value \var{v} on success, and |
| 1767 | \NULL{} on failure. |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1768 | \end{cfuncdesc} |
| 1769 | |
| 1770 | \begin{cfuncdesc}{int}{PyString_Size}{PyObject *string} |
Guido van Rossum | 3c4378b | 1998-04-14 20:21:10 +0000 | [diff] [blame] | 1771 | Returns the length of the string in string object \var{string}. |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1772 | \end{cfuncdesc} |
| 1773 | |
| 1774 | \begin{cfuncdesc}{char*}{PyString_AsString}{PyObject *string} |
Guido van Rossum | 3c4378b | 1998-04-14 20:21:10 +0000 | [diff] [blame] | 1775 | Resturns a \NULL{} terminated representation of the contents of \var{string}. |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1776 | \end{cfuncdesc} |
| 1777 | |
| 1778 | \begin{cfuncdesc}{void}{PyString_Concat}{PyObject **string, |
| 1779 | PyObject *newpart} |
Fred Drake | 66b989c | 1999-02-15 20:15:39 +0000 | [diff] [blame] | 1780 | Creates a new string object in \var{*string} containing the |
| 1781 | contents of \var{newpart} appended to \var{string}. The old value of |
| 1782 | \var{string} have its reference count decremented. If the new string |
| 1783 | cannot be created, the old reference to \var{string} will still be |
| 1784 | discarded and the value of \var{*string} will be set to |
| 1785 | \NULL{}; the appropriate exception will be set. |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1786 | \end{cfuncdesc} |
| 1787 | |
| 1788 | \begin{cfuncdesc}{void}{PyString_ConcatAndDel}{PyObject **string, |
| 1789 | PyObject *newpart} |
Guido van Rossum | 3c4378b | 1998-04-14 20:21:10 +0000 | [diff] [blame] | 1790 | Creates a new string object in \var{*string} containing the contents |
Guido van Rossum | 4447513 | 1998-04-21 15:30:01 +0000 | [diff] [blame] | 1791 | of \var{newpart} appended to \var{string}. This version decrements |
| 1792 | the reference count of \var{newpart}. |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1793 | \end{cfuncdesc} |
| 1794 | |
| 1795 | \begin{cfuncdesc}{int}{_PyString_Resize}{PyObject **string, int newsize} |
Guido van Rossum | 4447513 | 1998-04-21 15:30:01 +0000 | [diff] [blame] | 1796 | A way to resize a string object even though it is ``immutable''. |
| 1797 | Only use this to build up a brand new string object; don't use this if |
| 1798 | the string may already be known in other parts of the code. |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1799 | \end{cfuncdesc} |
| 1800 | |
| 1801 | \begin{cfuncdesc}{PyObject*}{PyString_Format}{PyObject *format, |
| 1802 | PyObject *args} |
Guido van Rossum | 4447513 | 1998-04-21 15:30:01 +0000 | [diff] [blame] | 1803 | Returns a new string object from \var{format} and \var{args}. Analogous |
| 1804 | to \code{\var{format} \% \var{args}}. The \var{args} argument must be |
| 1805 | a tuple. |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1806 | \end{cfuncdesc} |
| 1807 | |
| 1808 | \begin{cfuncdesc}{void}{PyString_InternInPlace}{PyObject **string} |
Guido van Rossum | 4447513 | 1998-04-21 15:30:01 +0000 | [diff] [blame] | 1809 | Intern the argument \var{*string} in place. The argument must be the |
| 1810 | address of a pointer variable pointing to a Python string object. |
| 1811 | If there is an existing interned string that is the same as |
| 1812 | \var{*string}, it sets \var{*string} to it (decrementing the reference |
| 1813 | count of the old string object and incrementing the reference count of |
| 1814 | the interned string object), otherwise it leaves \var{*string} alone |
| 1815 | and interns it (incrementing its reference count). (Clarification: |
| 1816 | even though there is a lot of talk about reference counts, think of |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 1817 | this function as reference-count-neutral; you own the object after |
| 1818 | the call if and only if you owned it before the call.) |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1819 | \end{cfuncdesc} |
| 1820 | |
| 1821 | \begin{cfuncdesc}{PyObject*}{PyString_InternFromString}{const char *v} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 1822 | A combination of \cfunction{PyString_FromString()} and |
| 1823 | \cfunction{PyString_InternInPlace()}, returning either a new string object |
Guido van Rossum | 4447513 | 1998-04-21 15:30:01 +0000 | [diff] [blame] | 1824 | that has been interned, or a new (``owned'') reference to an earlier |
| 1825 | interned string object with the same value. |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1826 | \end{cfuncdesc} |
| 1827 | |
| 1828 | \begin{cfuncdesc}{char*}{PyString_AS_STRING}{PyObject *string} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 1829 | Macro form of \cfunction{PyString_AsString()} but without error checking. |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 1830 | \end{cfuncdesc} |
| 1831 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1832 | \begin{cfuncdesc}{int}{PyString_GET_SIZE}{PyObject *string} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 1833 | Macro form of \cfunction{PyString_GetSize()} but without error checking. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1834 | \end{cfuncdesc} |
| 1835 | |
| 1836 | |
Guido van Rossum | 4447513 | 1998-04-21 15:30:01 +0000 | [diff] [blame] | 1837 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 1838 | \subsection{Tuple Objects \label{tupleObjects}} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1839 | |
| 1840 | \begin{ctypedesc}{PyTupleObject} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 1841 | This subtype of \ctype{PyObject} represents a Python tuple object. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1842 | \end{ctypedesc} |
| 1843 | |
| 1844 | \begin{cvardesc}{PyTypeObject}{PyTuple_Type} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 1845 | This instance of \ctype{PyTypeObject} represents the Python tuple type. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1846 | \end{cvardesc} |
| 1847 | |
| 1848 | \begin{cfuncdesc}{int}{PyTuple_Check}{PyObject *p} |
| 1849 | Return true if the argument is a tuple object. |
| 1850 | \end{cfuncdesc} |
| 1851 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1852 | \begin{cfuncdesc}{PyObject*}{PyTuple_New}{int s} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1853 | Return a new tuple object of size \var{s}. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1854 | \end{cfuncdesc} |
| 1855 | |
| 1856 | \begin{cfuncdesc}{int}{PyTuple_Size}{PyTupleObject *p} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1857 | Takes a pointer to a tuple object, and returns the size |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1858 | of that tuple. |
| 1859 | \end{cfuncdesc} |
| 1860 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1861 | \begin{cfuncdesc}{PyObject*}{PyTuple_GetItem}{PyTupleObject *p, int pos} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1862 | Returns the object at position \var{pos} in the tuple pointed |
| 1863 | to by \var{p}. If \var{pos} is out of bounds, returns \NULL{} and |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 1864 | sets an \exception{IndexError} exception. \strong{Note:} this |
| 1865 | function returns a ``borrowed'' reference. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1866 | \end{cfuncdesc} |
| 1867 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1868 | \begin{cfuncdesc}{PyObject*}{PyTuple_GET_ITEM}{PyTupleObject *p, int pos} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1869 | Does the same, but does no checking of its arguments. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1870 | \end{cfuncdesc} |
| 1871 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1872 | \begin{cfuncdesc}{PyObject*}{PyTuple_GetSlice}{PyTupleObject *p, |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1873 | int low, |
| 1874 | int high} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1875 | Takes a slice of the tuple pointed to by \var{p} from |
| 1876 | \var{low} to \var{high} and returns it as a new tuple. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1877 | \end{cfuncdesc} |
| 1878 | |
| 1879 | \begin{cfuncdesc}{int}{PyTuple_SetItem}{PyTupleObject *p, |
| 1880 | int pos, |
| 1881 | PyObject *o} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1882 | Inserts a reference to object \var{o} at position \var{pos} of |
| 1883 | the tuple pointed to by \var{p}. It returns \code{0} on success. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1884 | \end{cfuncdesc} |
| 1885 | |
| 1886 | \begin{cfuncdesc}{void}{PyTuple_SET_ITEM}{PyTupleObject *p, |
| 1887 | int pos, |
| 1888 | PyObject *o} |
| 1889 | |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1890 | Does the same, but does no error checking, and |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1891 | should \emph{only} be used to fill in brand new tuples. |
| 1892 | \end{cfuncdesc} |
| 1893 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1894 | \begin{cfuncdesc}{int}{_PyTuple_Resize}{PyTupleObject *p, |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1895 | int new, |
| 1896 | int last_is_sticky} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1897 | Can be used to resize a tuple. Because tuples are |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1898 | \emph{supposed} to be immutable, this should only be used if there is only |
| 1899 | one module referencing the object. Do \emph{not} use this if the tuple may |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 1900 | already be known to some other part of the code. \var{last_is_sticky} is |
| 1901 | a flag --- if set, the tuple will grow or shrink at the front, otherwise |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1902 | it will grow or shrink at the end. Think of this as destroying the old |
| 1903 | tuple and creating a new one, only more efficiently. |
| 1904 | \end{cfuncdesc} |
| 1905 | |
| 1906 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 1907 | \subsection{List Objects \label{listObjects}} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1908 | |
| 1909 | \begin{ctypedesc}{PyListObject} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 1910 | This subtype of \ctype{PyObject} represents a Python list object. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1911 | \end{ctypedesc} |
| 1912 | |
| 1913 | \begin{cvardesc}{PyTypeObject}{PyList_Type} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 1914 | This instance of \ctype{PyTypeObject} represents the Python list type. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1915 | \end{cvardesc} |
| 1916 | |
| 1917 | \begin{cfuncdesc}{int}{PyList_Check}{PyObject *p} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 1918 | Returns true if its argument is a \ctype{PyListObject}. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1919 | \end{cfuncdesc} |
| 1920 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1921 | \begin{cfuncdesc}{PyObject*}{PyList_New}{int size} |
Guido van Rossum | 3c4378b | 1998-04-14 20:21:10 +0000 | [diff] [blame] | 1922 | Returns a new list of length \var{len} on success, and \NULL{} on |
| 1923 | failure. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1924 | \end{cfuncdesc} |
| 1925 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1926 | \begin{cfuncdesc}{int}{PyList_Size}{PyObject *list} |
Guido van Rossum | 3c4378b | 1998-04-14 20:21:10 +0000 | [diff] [blame] | 1927 | Returns the length of the list object in \var{list}. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1928 | \end{cfuncdesc} |
| 1929 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1930 | \begin{cfuncdesc}{PyObject*}{PyList_GetItem}{PyObject *list, int index} |
Guido van Rossum | 4447513 | 1998-04-21 15:30:01 +0000 | [diff] [blame] | 1931 | Returns the object at position \var{pos} in the list pointed |
| 1932 | to by \var{p}. If \var{pos} is out of bounds, returns \NULL{} and |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 1933 | sets an \exception{IndexError} exception. \strong{Note:} this |
| 1934 | function returns a ``borrowed'' reference. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1935 | \end{cfuncdesc} |
| 1936 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1937 | \begin{cfuncdesc}{int}{PyList_SetItem}{PyObject *list, int index, |
| 1938 | PyObject *item} |
Guido van Rossum | 3c4378b | 1998-04-14 20:21:10 +0000 | [diff] [blame] | 1939 | Sets the item at index \var{index} in list to \var{item}. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1940 | \end{cfuncdesc} |
| 1941 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1942 | \begin{cfuncdesc}{int}{PyList_Insert}{PyObject *list, int index, |
Guido van Rossum | 4447513 | 1998-04-21 15:30:01 +0000 | [diff] [blame] | 1943 | PyObject *item} |
| 1944 | Inserts the item \var{item} into list \var{list} in front of index |
| 1945 | \var{index}. Returns 0 if successful; returns -1 and sets an |
| 1946 | exception if unsuccessful. Analogous to \code{list.insert(index, item)}. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1947 | \end{cfuncdesc} |
| 1948 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1949 | \begin{cfuncdesc}{int}{PyList_Append}{PyObject *list, PyObject *item} |
Guido van Rossum | 4447513 | 1998-04-21 15:30:01 +0000 | [diff] [blame] | 1950 | Appends the object \var{item} at the end of list \var{list}. Returns |
| 1951 | 0 if successful; returns -1 and sets an exception if unsuccessful. |
| 1952 | Analogous to \code{list.append(item)}. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1953 | \end{cfuncdesc} |
| 1954 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1955 | \begin{cfuncdesc}{PyObject*}{PyList_GetSlice}{PyObject *list, |
| 1956 | int low, int high} |
Guido van Rossum | 3c4378b | 1998-04-14 20:21:10 +0000 | [diff] [blame] | 1957 | Returns a list of the objects in \var{list} containing the objects |
Guido van Rossum | 4447513 | 1998-04-21 15:30:01 +0000 | [diff] [blame] | 1958 | \emph{between} \var{low} and \var{high}. Returns NULL and sets an |
| 1959 | exception if unsuccessful. |
| 1960 | Analogous to \code{list[low:high]}. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1961 | \end{cfuncdesc} |
| 1962 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1963 | \begin{cfuncdesc}{int}{PyList_SetSlice}{PyObject *list, |
| 1964 | int low, int high, |
| 1965 | PyObject *itemlist} |
Guido van Rossum | 4447513 | 1998-04-21 15:30:01 +0000 | [diff] [blame] | 1966 | Sets the slice of \var{list} between \var{low} and \var{high} to the contents |
| 1967 | of \var{itemlist}. Analogous to \code{list[low:high]=itemlist}. Returns 0 |
| 1968 | on success, -1 on failure. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1969 | \end{cfuncdesc} |
| 1970 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1971 | \begin{cfuncdesc}{int}{PyList_Sort}{PyObject *list} |
Guido van Rossum | 4447513 | 1998-04-21 15:30:01 +0000 | [diff] [blame] | 1972 | Sorts the items of \var{list} in place. Returns 0 on success, -1 on failure. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1973 | \end{cfuncdesc} |
| 1974 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1975 | \begin{cfuncdesc}{int}{PyList_Reverse}{PyObject *list} |
Guido van Rossum | 4447513 | 1998-04-21 15:30:01 +0000 | [diff] [blame] | 1976 | Reverses the items of \var{list} in place. Returns 0 on success, -1 on failure. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1977 | \end{cfuncdesc} |
| 1978 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1979 | \begin{cfuncdesc}{PyObject*}{PyList_AsTuple}{PyObject *list} |
Guido van Rossum | 3c4378b | 1998-04-14 20:21:10 +0000 | [diff] [blame] | 1980 | Returns a new tuple object containing the contents of \var{list}. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1981 | \end{cfuncdesc} |
| 1982 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 1983 | \begin{cfuncdesc}{PyObject*}{PyList_GET_ITEM}{PyObject *list, int i} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 1984 | Macro form of \cfunction{PyList_GetItem()} without error checking. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1985 | \end{cfuncdesc} |
| 1986 | |
Guido van Rossum | a937d14 | 1998-04-24 18:22:02 +0000 | [diff] [blame] | 1987 | \begin{cfuncdesc}{PyObject*}{PyList_SET_ITEM}{PyObject *list, int i, |
| 1988 | PyObject *o} |
| 1989 | Macro form of \cfunction{PyList_SetItem()} without error checking. |
| 1990 | \end{cfuncdesc} |
| 1991 | |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1992 | \begin{cfuncdesc}{int}{PyList_GET_SIZE}{PyObject *list} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 1993 | Macro form of \cfunction{PyList_GetSize()} without error checking. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1994 | \end{cfuncdesc} |
| 1995 | |
| 1996 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 1997 | \section{Mapping Objects \label{mapObjects}} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 1998 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 1999 | \subsection{Dictionary Objects \label{dictObjects}} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2000 | |
| 2001 | \begin{ctypedesc}{PyDictObject} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2002 | This subtype of \ctype{PyObject} represents a Python dictionary object. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2003 | \end{ctypedesc} |
| 2004 | |
| 2005 | \begin{cvardesc}{PyTypeObject}{PyDict_Type} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2006 | This instance of \ctype{PyTypeObject} represents the Python dictionary type. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2007 | \end{cvardesc} |
| 2008 | |
| 2009 | \begin{cfuncdesc}{int}{PyDict_Check}{PyObject *p} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2010 | Returns true if its argument is a \ctype{PyDictObject}. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2011 | \end{cfuncdesc} |
| 2012 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2013 | \begin{cfuncdesc}{PyObject*}{PyDict_New}{} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2014 | Returns a new empty dictionary. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2015 | \end{cfuncdesc} |
| 2016 | |
| 2017 | \begin{cfuncdesc}{void}{PyDict_Clear}{PyDictObject *p} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2018 | Empties an existing dictionary of all key/value pairs. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2019 | \end{cfuncdesc} |
| 2020 | |
| 2021 | \begin{cfuncdesc}{int}{PyDict_SetItem}{PyDictObject *p, |
| 2022 | PyObject *key, |
| 2023 | PyObject *val} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2024 | Inserts \var{value} into the dictionary with a key of \var{key}. Both |
| 2025 | \var{key} and \var{value} should be PyObjects, and \var{key} should be |
| 2026 | hashable. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2027 | \end{cfuncdesc} |
| 2028 | |
| 2029 | \begin{cfuncdesc}{int}{PyDict_SetItemString}{PyDictObject *p, |
| 2030 | char *key, |
| 2031 | PyObject *val} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2032 | Inserts \var{value} into the dictionary using \var{key} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2033 | as a key. \var{key} should be a \ctype{char *}. The key object is |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2034 | created using \code{PyString_FromString(\var{key})}. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2035 | \end{cfuncdesc} |
| 2036 | |
| 2037 | \begin{cfuncdesc}{int}{PyDict_DelItem}{PyDictObject *p, PyObject *key} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2038 | Removes the entry in dictionary \var{p} with key \var{key}. |
| 2039 | \var{key} is a PyObject. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2040 | \end{cfuncdesc} |
| 2041 | |
| 2042 | \begin{cfuncdesc}{int}{PyDict_DelItemString}{PyDictObject *p, char *key} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2043 | Removes the entry in dictionary \var{p} which has a key |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2044 | specified by the \ctype{char *}\var{key}. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2045 | \end{cfuncdesc} |
| 2046 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2047 | \begin{cfuncdesc}{PyObject*}{PyDict_GetItem}{PyDictObject *p, PyObject *key} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2048 | Returns the object from dictionary \var{p} which has a key |
Guido van Rossum | 4447513 | 1998-04-21 15:30:01 +0000 | [diff] [blame] | 2049 | \var{key}. Returns \NULL{} if the key \var{key} is not present, but |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2050 | without (!) setting an exception. \strong{Note:} this function |
| 2051 | returns a ``borrowed'' reference. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2052 | \end{cfuncdesc} |
| 2053 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2054 | \begin{cfuncdesc}{PyObject*}{PyDict_GetItemString}{PyDictObject *p, char *key} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2055 | This is the same as \cfunction{PyDict_GetItem()}, but \var{key} is |
| 2056 | specified as a \ctype{char *}, rather than a \ctype{PyObject *}. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2057 | \end{cfuncdesc} |
| 2058 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2059 | \begin{cfuncdesc}{PyObject*}{PyDict_Items}{PyDictObject *p} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2060 | Returns a \ctype{PyListObject} containing all the items |
Guido van Rossum | 4447513 | 1998-04-21 15:30:01 +0000 | [diff] [blame] | 2061 | from the dictionary, as in the dictinoary method \method{items()} (see |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2062 | the \emph{Python Library Reference}). |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2063 | \end{cfuncdesc} |
| 2064 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2065 | \begin{cfuncdesc}{PyObject*}{PyDict_Keys}{PyDictObject *p} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2066 | Returns a \ctype{PyListObject} containing all the keys |
Guido van Rossum | 4447513 | 1998-04-21 15:30:01 +0000 | [diff] [blame] | 2067 | from the dictionary, as in the dictionary method \method{keys()} (see the |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2068 | \emph{Python Library Reference}). |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2069 | \end{cfuncdesc} |
| 2070 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2071 | \begin{cfuncdesc}{PyObject*}{PyDict_Values}{PyDictObject *p} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2072 | Returns a \ctype{PyListObject} containing all the values |
Guido van Rossum | 4447513 | 1998-04-21 15:30:01 +0000 | [diff] [blame] | 2073 | from the dictionary \var{p}, as in the dictionary method |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2074 | \method{values()} (see the \emph{Python Library Reference}). |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2075 | \end{cfuncdesc} |
| 2076 | |
| 2077 | \begin{cfuncdesc}{int}{PyDict_Size}{PyDictObject *p} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2078 | Returns the number of items in the dictionary. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2079 | \end{cfuncdesc} |
| 2080 | |
| 2081 | \begin{cfuncdesc}{int}{PyDict_Next}{PyDictObject *p, |
| 2082 | int ppos, |
| 2083 | PyObject **pkey, |
| 2084 | PyObject **pvalue} |
| 2085 | |
| 2086 | \end{cfuncdesc} |
| 2087 | |
| 2088 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 2089 | \section{Numeric Objects \label{numericObjects}} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2090 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 2091 | \subsection{Plain Integer Objects \label{intObjects}} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2092 | |
| 2093 | \begin{ctypedesc}{PyIntObject} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2094 | This subtype of \ctype{PyObject} represents a Python integer object. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2095 | \end{ctypedesc} |
| 2096 | |
| 2097 | \begin{cvardesc}{PyTypeObject}{PyInt_Type} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2098 | This instance of \ctype{PyTypeObject} represents the Python plain |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2099 | integer type. |
| 2100 | \end{cvardesc} |
| 2101 | |
| 2102 | \begin{cfuncdesc}{int}{PyInt_Check}{PyObject *} |
| 2103 | |
| 2104 | \end{cfuncdesc} |
| 2105 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2106 | \begin{cfuncdesc}{PyObject*}{PyInt_FromLong}{long ival} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2107 | Creates a new integer object with a value of \var{ival}. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2108 | |
| 2109 | The current implementation keeps an array of integer objects for all |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2110 | integers between \code{-1} and \code{100}, when you create an int in |
| 2111 | that range you actually just get back a reference to the existing |
| 2112 | object. So it should be possible to change the value of \code{1}. I |
Fred Drake | 7e9d314 | 1998-04-03 05:02:28 +0000 | [diff] [blame] | 2113 | suspect the behaviour of Python in this case is undefined. :-) |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2114 | \end{cfuncdesc} |
| 2115 | |
| 2116 | \begin{cfuncdesc}{long}{PyInt_AS_LONG}{PyIntObject *io} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2117 | Returns the value of the object \var{io}. No error checking is |
| 2118 | performed. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2119 | \end{cfuncdesc} |
| 2120 | |
| 2121 | \begin{cfuncdesc}{long}{PyInt_AsLong}{PyObject *io} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2122 | Will first attempt to cast the object to a \ctype{PyIntObject}, if |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2123 | it is not already one, and then return its value. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2124 | \end{cfuncdesc} |
| 2125 | |
| 2126 | \begin{cfuncdesc}{long}{PyInt_GetMax}{} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2127 | Returns the systems idea of the largest integer it can handle |
| 2128 | (\constant{LONG_MAX}, as defined in the system header files). |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2129 | \end{cfuncdesc} |
| 2130 | |
| 2131 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 2132 | \subsection{Long Integer Objects \label{longObjects}} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2133 | |
| 2134 | \begin{ctypedesc}{PyLongObject} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2135 | This subtype of \ctype{PyObject} represents a Python long integer |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2136 | object. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2137 | \end{ctypedesc} |
| 2138 | |
| 2139 | \begin{cvardesc}{PyTypeObject}{PyLong_Type} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2140 | This instance of \ctype{PyTypeObject} represents the Python long |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2141 | integer type. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2142 | \end{cvardesc} |
| 2143 | |
| 2144 | \begin{cfuncdesc}{int}{PyLong_Check}{PyObject *p} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2145 | Returns true if its argument is a \ctype{PyLongObject}. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2146 | \end{cfuncdesc} |
| 2147 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2148 | \begin{cfuncdesc}{PyObject*}{PyLong_FromLong}{long v} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2149 | Returns a new \ctype{PyLongObject} object from \var{v}. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2150 | \end{cfuncdesc} |
| 2151 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2152 | \begin{cfuncdesc}{PyObject*}{PyLong_FromUnsignedLong}{unsigned long v} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2153 | Returns a new \ctype{PyLongObject} object from an unsigned \C{} long. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2154 | \end{cfuncdesc} |
| 2155 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2156 | \begin{cfuncdesc}{PyObject*}{PyLong_FromDouble}{double v} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2157 | Returns a new \ctype{PyLongObject} object from the integer part of \var{v}. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2158 | \end{cfuncdesc} |
| 2159 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2160 | \begin{cfuncdesc}{long}{PyLong_AsLong}{PyObject *pylong} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2161 | Returns a \C{} \ctype{long} representation of the contents of \var{pylong}. |
| 2162 | WHAT HAPPENS IF \var{pylong} is greater than \constant{LONG_MAX}? |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2163 | \end{cfuncdesc} |
| 2164 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2165 | \begin{cfuncdesc}{unsigned long}{PyLong_AsUnsignedLong}{PyObject *pylong} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2166 | Returns a \C{} \ctype{unsigned long} representation of the contents of |
| 2167 | \var{pylong}. WHAT HAPPENS IF \var{pylong} is greater than |
| 2168 | \constant{ULONG_MAX}? |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2169 | \end{cfuncdesc} |
| 2170 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2171 | \begin{cfuncdesc}{double}{PyLong_AsDouble}{PyObject *pylong} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2172 | Returns a \C{} \ctype{double} representation of the contents of \var{pylong}. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2173 | \end{cfuncdesc} |
| 2174 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2175 | \begin{cfuncdesc}{PyObject*}{PyLong_FromString}{char *str, char **pend, |
| 2176 | int base} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2177 | \end{cfuncdesc} |
| 2178 | |
| 2179 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 2180 | \subsection{Floating Point Objects \label{floatObjects}} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2181 | |
| 2182 | \begin{ctypedesc}{PyFloatObject} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2183 | This subtype of \ctype{PyObject} represents a Python floating point |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2184 | object. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2185 | \end{ctypedesc} |
| 2186 | |
| 2187 | \begin{cvardesc}{PyTypeObject}{PyFloat_Type} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2188 | This instance of \ctype{PyTypeObject} represents the Python floating |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2189 | point type. |
| 2190 | \end{cvardesc} |
| 2191 | |
| 2192 | \begin{cfuncdesc}{int}{PyFloat_Check}{PyObject *p} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2193 | Returns true if its argument is a \ctype{PyFloatObject}. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2194 | \end{cfuncdesc} |
| 2195 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2196 | \begin{cfuncdesc}{PyObject*}{PyFloat_FromDouble}{double v} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2197 | Creates a \ctype{PyFloatObject} object from \var{v}. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2198 | \end{cfuncdesc} |
| 2199 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2200 | \begin{cfuncdesc}{double}{PyFloat_AsDouble}{PyObject *pyfloat} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2201 | Returns a \C{} \ctype{double} representation of the contents of \var{pyfloat}. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2202 | \end{cfuncdesc} |
| 2203 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2204 | \begin{cfuncdesc}{double}{PyFloat_AS_DOUBLE}{PyObject *pyfloat} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2205 | Returns a \C{} \ctype{double} representation of the contents of |
| 2206 | \var{pyfloat}, but without error checking. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2207 | \end{cfuncdesc} |
| 2208 | |
| 2209 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 2210 | \subsection{Complex Number Objects \label{complexObjects}} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2211 | |
| 2212 | \begin{ctypedesc}{Py_complex} |
Fred Drake | 4de05a9 | 1998-02-16 14:25:26 +0000 | [diff] [blame] | 2213 | The \C{} structure which corresponds to the value portion of a Python |
| 2214 | complex number object. Most of the functions for dealing with complex |
| 2215 | number objects use structures of this type as input or output values, |
| 2216 | as appropriate. It is defined as: |
| 2217 | |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2218 | \begin{verbatim} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2219 | typedef struct { |
| 2220 | double real; |
| 2221 | double imag; |
Fred Drake | 4de05a9 | 1998-02-16 14:25:26 +0000 | [diff] [blame] | 2222 | } Py_complex; |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2223 | \end{verbatim} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2224 | \end{ctypedesc} |
| 2225 | |
| 2226 | \begin{ctypedesc}{PyComplexObject} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2227 | This subtype of \ctype{PyObject} represents a Python complex number object. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2228 | \end{ctypedesc} |
| 2229 | |
| 2230 | \begin{cvardesc}{PyTypeObject}{PyComplex_Type} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2231 | This instance of \ctype{PyTypeObject} represents the Python complex |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2232 | number type. |
| 2233 | \end{cvardesc} |
| 2234 | |
| 2235 | \begin{cfuncdesc}{int}{PyComplex_Check}{PyObject *p} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2236 | Returns true if its argument is a \ctype{PyComplexObject}. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2237 | \end{cfuncdesc} |
| 2238 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2239 | \begin{cfuncdesc}{Py_complex}{_Py_c_sum}{Py_complex left, Py_complex right} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2240 | \end{cfuncdesc} |
| 2241 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2242 | \begin{cfuncdesc}{Py_complex}{_Py_c_diff}{Py_complex left, Py_complex right} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2243 | \end{cfuncdesc} |
| 2244 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2245 | \begin{cfuncdesc}{Py_complex}{_Py_c_neg}{Py_complex complex} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2246 | \end{cfuncdesc} |
| 2247 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2248 | \begin{cfuncdesc}{Py_complex}{_Py_c_prod}{Py_complex left, Py_complex right} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2249 | \end{cfuncdesc} |
| 2250 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2251 | \begin{cfuncdesc}{Py_complex}{_Py_c_quot}{Py_complex dividend, |
| 2252 | Py_complex divisor} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2253 | \end{cfuncdesc} |
| 2254 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2255 | \begin{cfuncdesc}{Py_complex}{_Py_c_pow}{Py_complex num, Py_complex exp} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2256 | \end{cfuncdesc} |
| 2257 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2258 | \begin{cfuncdesc}{PyObject*}{PyComplex_FromCComplex}{Py_complex v} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2259 | \end{cfuncdesc} |
| 2260 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2261 | \begin{cfuncdesc}{PyObject*}{PyComplex_FromDoubles}{double real, double imag} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2262 | Returns a new \ctype{PyComplexObject} object from \var{real} and \var{imag}. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2263 | \end{cfuncdesc} |
| 2264 | |
| 2265 | \begin{cfuncdesc}{double}{PyComplex_RealAsDouble}{PyObject *op} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2266 | Returns the real part of \var{op} as a \C{} \ctype{double}. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2267 | \end{cfuncdesc} |
| 2268 | |
| 2269 | \begin{cfuncdesc}{double}{PyComplex_ImagAsDouble}{PyObject *op} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2270 | Returns the imaginary part of \var{op} as a \C{} \ctype{double}. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2271 | \end{cfuncdesc} |
| 2272 | |
| 2273 | \begin{cfuncdesc}{Py_complex}{PyComplex_AsCComplex}{PyObject *op} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2274 | \end{cfuncdesc} |
| 2275 | |
| 2276 | |
| 2277 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 2278 | \section{Other Objects \label{otherObjects}} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2279 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 2280 | \subsection{File Objects \label{fileObjects}} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2281 | |
| 2282 | \begin{ctypedesc}{PyFileObject} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2283 | This subtype of \ctype{PyObject} represents a Python file object. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2284 | \end{ctypedesc} |
| 2285 | |
| 2286 | \begin{cvardesc}{PyTypeObject}{PyFile_Type} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2287 | This instance of \ctype{PyTypeObject} represents the Python file type. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2288 | \end{cvardesc} |
| 2289 | |
| 2290 | \begin{cfuncdesc}{int}{PyFile_Check}{PyObject *p} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2291 | Returns true if its argument is a \ctype{PyFileObject}. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2292 | \end{cfuncdesc} |
| 2293 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2294 | \begin{cfuncdesc}{PyObject*}{PyFile_FromString}{char *name, char *mode} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2295 | Creates a new \ctype{PyFileObject} pointing to the file |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2296 | specified in \var{name} with the mode specified in \var{mode}. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2297 | \end{cfuncdesc} |
| 2298 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2299 | \begin{cfuncdesc}{PyObject*}{PyFile_FromFile}{FILE *fp, |
Fred Drake | b92dce3 | 1998-02-25 15:40:22 +0000 | [diff] [blame] | 2300 | char *name, char *mode, int (*close)} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2301 | Creates a new \ctype{PyFileObject} from the already-open \var{fp}. |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2302 | The function \var{close} will be called when the file should be |
| 2303 | closed. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2304 | \end{cfuncdesc} |
| 2305 | |
| 2306 | \begin{cfuncdesc}{FILE *}{PyFile_AsFile}{PyFileObject *p} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2307 | Returns the file object associated with \var{p} as a \ctype{FILE *}. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2308 | \end{cfuncdesc} |
| 2309 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2310 | \begin{cfuncdesc}{PyObject*}{PyFile_GetLine}{PyObject *p, int n} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2311 | undocumented as yet |
| 2312 | \end{cfuncdesc} |
| 2313 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2314 | \begin{cfuncdesc}{PyObject*}{PyFile_Name}{PyObject *p} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2315 | Returns the name of the file specified by \var{p} as a |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2316 | \ctype{PyStringObject}. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2317 | \end{cfuncdesc} |
| 2318 | |
| 2319 | \begin{cfuncdesc}{void}{PyFile_SetBufSize}{PyFileObject *p, int n} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2320 | Available on systems with \cfunction{setvbuf()} only. This should |
| 2321 | only be called immediately after file object creation. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2322 | \end{cfuncdesc} |
| 2323 | |
| 2324 | \begin{cfuncdesc}{int}{PyFile_SoftSpace}{PyFileObject *p, int newflag} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2325 | Sets the \member{softspace} attribute of \var{p} to \var{newflag}. |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2326 | Returns the previous value. This function clears any errors, and will |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2327 | return \code{0} as the previous value if the attribute either does not |
| 2328 | exist or if there were errors in retrieving it. There is no way to |
| 2329 | detect errors from this function, but doing so should not be needed. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2330 | \end{cfuncdesc} |
| 2331 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2332 | \begin{cfuncdesc}{int}{PyFile_WriteObject}{PyObject *obj, PyFileObject *p, |
| 2333 | int flags} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2334 | Writes object \var{obj} to file object \var{p}. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2335 | \end{cfuncdesc} |
| 2336 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2337 | \begin{cfuncdesc}{int}{PyFile_WriteString}{char *s, PyFileObject *p, |
| 2338 | int flags} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2339 | Writes string \var{s} to file object \var{p}. |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2340 | \end{cfuncdesc} |
| 2341 | |
| 2342 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 2343 | \subsection{Module Objects \label{moduleObjects}} |
| 2344 | |
| 2345 | \obindex{module} |
| 2346 | There are only a few functions special to module objects. |
| 2347 | |
| 2348 | \begin{cfuncdesc}{PyObject *}{PyModule_New}{char *name} |
| 2349 | Return a new module object with the \member{__name__} attribute set to |
| 2350 | \var{name}. Only the module's \member{__doc__} and \member{__name__} |
| 2351 | attributes are filled in; the caller is responsible for providing a |
| 2352 | \member{__file__} attribute. |
| 2353 | \end{cfuncdesc} |
| 2354 | |
| 2355 | \begin{cfuncdesc}{PyObject *}{PyModule_GetDict}{PyObject *module} |
| 2356 | Return the dictionary object that implements \var{module}'s namespace; |
| 2357 | this object is the same as the \member{__dict__} attribute of the |
| 2358 | module object. This function never fails. |
| 2359 | \end{cfuncdesc} |
| 2360 | |
| 2361 | \begin{cfuncdesc}{char *}{PyModule_GetName}{PyObject *module} |
| 2362 | Return \var{module}'s \member{__name__} value. If the module does not |
| 2363 | provide one, \exception{SystemError} is raised. |
| 2364 | \end{cfuncdesc} |
| 2365 | |
| 2366 | \begin{cfuncdesc}{char *}{PyModule_GetFilename}{PyObject *module} |
| 2367 | Return the name of the file from which \var{module} was loaded using |
| 2368 | \var{module}'s \member{__file__} attribute. If this is not defined, |
| 2369 | raise \exception{SystemError}. |
| 2370 | \end{cfuncdesc} |
| 2371 | |
| 2372 | |
| 2373 | \subsection{CObjects \label{cObjects}} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2374 | |
Guido van Rossum | 4447513 | 1998-04-21 15:30:01 +0000 | [diff] [blame] | 2375 | \begin{ctypedesc}{PyCObject} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2376 | This subtype of \ctype{PyObject} represents an opaque value, useful for |
Guido van Rossum | 4447513 | 1998-04-21 15:30:01 +0000 | [diff] [blame] | 2377 | \C{} extension modules who need to pass an opaque value (as a |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2378 | \ctype{void *} pointer) through Python code to other \C{} code. It is |
Guido van Rossum | 4447513 | 1998-04-21 15:30:01 +0000 | [diff] [blame] | 2379 | often used to make a C function pointer defined in one module |
| 2380 | available to other modules, so the regular import mechanism can be |
| 2381 | used to access C APIs defined in dynamically loaded modules. |
| 2382 | \end{ctypedesc} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2383 | |
Guido van Rossum | 4447513 | 1998-04-21 15:30:01 +0000 | [diff] [blame] | 2384 | \begin{cfuncdesc}{PyObject *}{PyCObject_FromVoidPtr}{void* cobj, |
| 2385 | void (*destr)(void *)} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2386 | Creates a \ctype{PyCObject} from the \code{void *} \var{cobj}. The |
Fred Drake | dab4468 | 1999-05-13 18:41:14 +0000 | [diff] [blame] | 2387 | \var{destr} function will be called when the object is reclaimed, unless |
| 2388 | it is \NULL. |
Guido van Rossum | 4447513 | 1998-04-21 15:30:01 +0000 | [diff] [blame] | 2389 | \end{cfuncdesc} |
| 2390 | |
| 2391 | \begin{cfuncdesc}{PyObject *}{PyCObject_FromVoidPtrAndDesc}{void* cobj, |
| 2392 | void* desc, void (*destr)(void *, void *) } |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2393 | Creates a \ctype{PyCObject} from the \ctype{void *}\var{cobj}. The |
| 2394 | \var{destr} function will be called when the object is reclaimed. The |
| 2395 | \var{desc} argument can be used to pass extra callback data for the |
| 2396 | destructor function. |
Guido van Rossum | 4447513 | 1998-04-21 15:30:01 +0000 | [diff] [blame] | 2397 | \end{cfuncdesc} |
| 2398 | |
| 2399 | \begin{cfuncdesc}{void *}{PyCObject_AsVoidPtr}{PyObject* self} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2400 | Returns the object \ctype{void *} that the \ctype{PyCObject} \var{self} |
Guido van Rossum | 4447513 | 1998-04-21 15:30:01 +0000 | [diff] [blame] | 2401 | was created with. |
| 2402 | \end{cfuncdesc} |
| 2403 | |
| 2404 | \begin{cfuncdesc}{void *}{PyCObject_GetDesc}{PyObject* self} |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2405 | Returns the description \ctype{void *} that the \ctype{PyCObject} |
Guido van Rossum | 4447513 | 1998-04-21 15:30:01 +0000 | [diff] [blame] | 2406 | \var{self} was created with. |
| 2407 | \end{cfuncdesc} |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 2408 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 2409 | \chapter{Initialization, Finalization, and Threads |
| 2410 | \label{initialization}} |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2411 | |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2412 | \begin{cfuncdesc}{void}{Py_Initialize}{} |
| 2413 | Initialize the Python interpreter. In an application embedding |
| 2414 | Python, this should be called before using any other Python/C API |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2415 | functions; with the exception of \cfunction{Py_SetProgramName()}, |
| 2416 | \cfunction{PyEval_InitThreads()}, \cfunction{PyEval_ReleaseLock()}, |
| 2417 | and \cfunction{PyEval_AcquireLock()}. This initializes the table of |
| 2418 | loaded modules (\code{sys.modules}), and creates the fundamental |
Fred Drake | 4de05a9 | 1998-02-16 14:25:26 +0000 | [diff] [blame] | 2419 | modules \module{__builtin__}\refbimodindex{__builtin__}, |
| 2420 | \module{__main__}\refbimodindex{__main__} and |
| 2421 | \module{sys}\refbimodindex{sys}. It also initializes the module |
| 2422 | search path (\code{sys.path}).% |
| 2423 | \indexiii{module}{search}{path} |
| 2424 | It does not set \code{sys.argv}; use \cfunction{PySys_SetArgv()} for |
| 2425 | that. This is a no-op when called for a second time (without calling |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2426 | \cfunction{Py_Finalize()} first). There is no return value; it is a |
| 2427 | fatal error if the initialization fails. |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 2428 | \end{cfuncdesc} |
| 2429 | |
| 2430 | \begin{cfuncdesc}{int}{Py_IsInitialized}{} |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 2431 | Return true (nonzero) when the Python interpreter has been |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2432 | initialized, false (zero) if not. After \cfunction{Py_Finalize()} is |
| 2433 | called, this returns false until \cfunction{Py_Initialize()} is called |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 2434 | again. |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2435 | \end{cfuncdesc} |
| 2436 | |
| 2437 | \begin{cfuncdesc}{void}{Py_Finalize}{} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2438 | Undo all initializations made by \cfunction{Py_Initialize()} and |
| 2439 | subsequent use of Python/C API functions, and destroy all |
| 2440 | sub-interpreters (see \cfunction{Py_NewInterpreter()} below) that were |
| 2441 | created and not yet destroyed since the last call to |
| 2442 | \cfunction{Py_Initialize()}. Ideally, this frees all memory allocated |
| 2443 | by the Python interpreter. This is a no-op when called for a second |
| 2444 | time (without calling \cfunction{Py_Initialize()} again first). There |
| 2445 | is no return value; errors during finalization are ignored. |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2446 | |
| 2447 | This function is provided for a number of reasons. An embedding |
| 2448 | application might want to restart Python without having to restart the |
| 2449 | application itself. An application that has loaded the Python |
| 2450 | interpreter from a dynamically loadable library (or DLL) might want to |
| 2451 | free all memory allocated by Python before unloading the DLL. During a |
| 2452 | hunt for memory leaks in an application a developer might want to free |
| 2453 | all memory allocated by Python before exiting from the application. |
| 2454 | |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2455 | \strong{Bugs and caveats:} The destruction of modules and objects in |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2456 | modules is done in random order; this may cause destructors |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2457 | (\method{__del__()} methods) to fail when they depend on other objects |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2458 | (even functions) or modules. Dynamically loaded extension modules |
| 2459 | loaded by Python are not unloaded. Small amounts of memory allocated |
| 2460 | by the Python interpreter may not be freed (if you find a leak, please |
| 2461 | report it). Memory tied up in circular references between objects is |
| 2462 | not freed. Some memory allocated by extension modules may not be |
| 2463 | freed. Some extension may not work properly if their initialization |
| 2464 | routine is called more than once; this can happen if an applcation |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2465 | calls \cfunction{Py_Initialize()} and \cfunction{Py_Finalize()} more |
| 2466 | than once. |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2467 | \end{cfuncdesc} |
| 2468 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2469 | \begin{cfuncdesc}{PyThreadState*}{Py_NewInterpreter}{} |
Fred Drake | 4de05a9 | 1998-02-16 14:25:26 +0000 | [diff] [blame] | 2470 | Create a new sub-interpreter. This is an (almost) totally separate |
| 2471 | environment for the execution of Python code. In particular, the new |
| 2472 | interpreter has separate, independent versions of all imported |
| 2473 | modules, including the fundamental modules |
| 2474 | \module{__builtin__}\refbimodindex{__builtin__}, |
| 2475 | \module{__main__}\refbimodindex{__main__} and |
| 2476 | \module{sys}\refbimodindex{sys}. The table of loaded modules |
| 2477 | (\code{sys.modules}) and the module search path (\code{sys.path}) are |
| 2478 | also separate. The new environment has no \code{sys.argv} variable. |
| 2479 | It has new standard I/O stream file objects \code{sys.stdin}, |
| 2480 | \code{sys.stdout} and \code{sys.stderr} (however these refer to the |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2481 | same underlying \ctype{FILE} structures in the \C{} library). |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2482 | |
| 2483 | The return value points to the first thread state created in the new |
| 2484 | sub-interpreter. This thread state is made the current thread state. |
| 2485 | Note that no actual thread is created; see the discussion of thread |
| 2486 | states below. If creation of the new interpreter is unsuccessful, |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 2487 | \NULL{} is returned; no exception is set since the exception state |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2488 | is stored in the current thread state and there may not be a current |
| 2489 | thread state. (Like all other Python/C API functions, the global |
| 2490 | interpreter lock must be held before calling this function and is |
| 2491 | still held when it returns; however, unlike most other Python/C API |
| 2492 | functions, there needn't be a current thread state on entry.) |
| 2493 | |
| 2494 | Extension modules are shared between (sub-)interpreters as follows: |
| 2495 | the first time a particular extension is imported, it is initialized |
| 2496 | normally, and a (shallow) copy of its module's dictionary is |
| 2497 | squirreled away. When the same extension is imported by another |
| 2498 | (sub-)interpreter, a new module is initialized and filled with the |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2499 | contents of this copy; the extension's \code{init} function is not |
| 2500 | called. Note that this is different from what happens when an |
| 2501 | extension is imported after the interpreter has been completely |
| 2502 | re-initialized by calling \cfunction{Py_Finalize()} and |
| 2503 | \cfunction{Py_Initialize()}; in that case, the extension's \code{init} |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2504 | function \emph{is} called again. |
| 2505 | |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2506 | \strong{Bugs and caveats:} Because sub-interpreters (and the main |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2507 | interpreter) are part of the same process, the insulation between them |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2508 | isn't perfect --- for example, using low-level file operations like |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2509 | \function{os.close()} they can (accidentally or maliciously) affect each |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2510 | other's open files. Because of the way extensions are shared between |
| 2511 | (sub-)interpreters, some extensions may not work properly; this is |
| 2512 | especially likely when the extension makes use of (static) global |
| 2513 | variables, or when the extension manipulates its module's dictionary |
| 2514 | after its initialization. It is possible to insert objects created in |
| 2515 | one sub-interpreter into a namespace of another sub-interpreter; this |
| 2516 | should be done with great care to avoid sharing user-defined |
| 2517 | functions, methods, instances or classes between sub-interpreters, |
| 2518 | since import operations executed by such objects may affect the |
| 2519 | wrong (sub-)interpreter's dictionary of loaded modules. (XXX This is |
| 2520 | a hard-to-fix bug that will be addressed in a future release.) |
| 2521 | \end{cfuncdesc} |
| 2522 | |
| 2523 | \begin{cfuncdesc}{void}{Py_EndInterpreter}{PyThreadState *tstate} |
| 2524 | Destroy the (sub-)interpreter represented by the given thread state. |
| 2525 | The given thread state must be the current thread state. See the |
| 2526 | discussion of thread states below. When the call returns, the current |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 2527 | thread state is \NULL{}. All thread states associated with this |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2528 | interpreted are destroyed. (The global interpreter lock must be held |
| 2529 | before calling this function and is still held when it returns.) |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2530 | \cfunction{Py_Finalize()} will destroy all sub-interpreters that haven't |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2531 | been explicitly destroyed at that point. |
| 2532 | \end{cfuncdesc} |
| 2533 | |
| 2534 | \begin{cfuncdesc}{void}{Py_SetProgramName}{char *name} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2535 | This function should be called before \cfunction{Py_Initialize()} is called |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2536 | for the first time, if it is called at all. It tells the interpreter |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2537 | the value of the \code{argv[0]} argument to the \cfunction{main()} function |
| 2538 | of the program. This is used by \cfunction{Py_GetPath()} and some other |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2539 | functions below to find the Python run-time libraries relative to the |
| 2540 | interpreter executable. The default value is \code{"python"}. The |
| 2541 | argument should point to a zero-terminated character string in static |
| 2542 | storage whose contents will not change for the duration of the |
| 2543 | program's execution. No code in the Python interpreter will change |
| 2544 | the contents of this storage. |
| 2545 | \end{cfuncdesc} |
| 2546 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2547 | \begin{cfuncdesc}{char*}{Py_GetProgramName}{} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2548 | Return the program name set with \cfunction{Py_SetProgramName()}, or the |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2549 | default. The returned string points into static storage; the caller |
| 2550 | should not modify its value. |
| 2551 | \end{cfuncdesc} |
| 2552 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2553 | \begin{cfuncdesc}{char*}{Py_GetPrefix}{} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2554 | Return the \emph{prefix} for installed platform-independent files. This |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2555 | is derived through a number of complicated rules from the program name |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2556 | set with \cfunction{Py_SetProgramName()} and some environment variables; |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2557 | for example, if the program name is \code{"/usr/local/bin/python"}, |
| 2558 | the prefix is \code{"/usr/local"}. The returned string points into |
| 2559 | static storage; the caller should not modify its value. This |
Fred Drake | c94d934 | 1998-04-12 02:39:13 +0000 | [diff] [blame] | 2560 | corresponds to the \makevar{prefix} variable in the top-level |
| 2561 | \file{Makefile} and the \code{-}\code{-prefix} argument to the |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2562 | \program{configure} script at build time. The value is available to |
Fred Drake | b0a7873 | 1998-01-13 18:51:10 +0000 | [diff] [blame] | 2563 | Python code as \code{sys.prefix}. It is only useful on \UNIX{}. See |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2564 | also the next function. |
| 2565 | \end{cfuncdesc} |
| 2566 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2567 | \begin{cfuncdesc}{char*}{Py_GetExecPrefix}{} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2568 | Return the \emph{exec-prefix} for installed platform-\emph{de}pendent |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2569 | files. This is derived through a number of complicated rules from the |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2570 | program name set with \cfunction{Py_SetProgramName()} and some environment |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2571 | variables; for example, if the program name is |
| 2572 | \code{"/usr/local/bin/python"}, the exec-prefix is |
| 2573 | \code{"/usr/local"}. The returned string points into static storage; |
| 2574 | the caller should not modify its value. This corresponds to the |
Fred Drake | c94d934 | 1998-04-12 02:39:13 +0000 | [diff] [blame] | 2575 | \makevar{exec_prefix} variable in the top-level \file{Makefile} and the |
| 2576 | \code{-}\code{-exec_prefix} argument to the \program{configure} script |
| 2577 | at build time. The value is available to Python code as |
Fred Drake | b0a7873 | 1998-01-13 18:51:10 +0000 | [diff] [blame] | 2578 | \code{sys.exec_prefix}. It is only useful on \UNIX{}. |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2579 | |
| 2580 | Background: The exec-prefix differs from the prefix when platform |
| 2581 | dependent files (such as executables and shared libraries) are |
| 2582 | installed in a different directory tree. In a typical installation, |
| 2583 | platform dependent files may be installed in the |
| 2584 | \code{"/usr/local/plat"} subtree while platform independent may be |
| 2585 | installed in \code{"/usr/local"}. |
| 2586 | |
| 2587 | Generally speaking, a platform is a combination of hardware and |
| 2588 | software families, e.g. Sparc machines running the Solaris 2.x |
| 2589 | operating system are considered the same platform, but Intel machines |
| 2590 | running Solaris 2.x are another platform, and Intel machines running |
| 2591 | Linux are yet another platform. Different major revisions of the same |
Fred Drake | b0a7873 | 1998-01-13 18:51:10 +0000 | [diff] [blame] | 2592 | operating system generally also form different platforms. Non-\UNIX{} |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2593 | operating systems are a different story; the installation strategies |
| 2594 | on those systems are so different that the prefix and exec-prefix are |
| 2595 | meaningless, and set to the empty string. Note that compiled Python |
| 2596 | bytecode files are platform independent (but not independent from the |
| 2597 | Python version by which they were compiled!). |
| 2598 | |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2599 | System administrators will know how to configure the \program{mount} or |
| 2600 | \program{automount} programs to share \code{"/usr/local"} between platforms |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2601 | while having \code{"/usr/local/plat"} be a different filesystem for each |
| 2602 | platform. |
| 2603 | \end{cfuncdesc} |
| 2604 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2605 | \begin{cfuncdesc}{char*}{Py_GetProgramFullPath}{} |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2606 | Return the full program name of the Python executable; this is |
| 2607 | computed as a side-effect of deriving the default module search path |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2608 | from the program name (set by \cfunction{Py_SetProgramName()} above). The |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2609 | returned string points into static storage; the caller should not |
| 2610 | modify its value. The value is available to Python code as |
Guido van Rossum | 42cefd0 | 1997-10-05 15:27:29 +0000 | [diff] [blame] | 2611 | \code{sys.executable}. |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2612 | \end{cfuncdesc} |
| 2613 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2614 | \begin{cfuncdesc}{char*}{Py_GetPath}{} |
Fred Drake | 4de05a9 | 1998-02-16 14:25:26 +0000 | [diff] [blame] | 2615 | \indexiii{module}{search}{path} |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2616 | Return the default module search path; this is computed from the |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2617 | program name (set by \cfunction{Py_SetProgramName()} above) and some |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2618 | environment variables. The returned string consists of a series of |
| 2619 | directory names separated by a platform dependent delimiter character. |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2620 | The delimiter character is \character{:} on \UNIX{}, \character{;} on |
| 2621 | DOS/Windows, and \character{\\n} (the \ASCII{} newline character) on |
Fred Drake | e5bc497 | 1998-02-12 23:36:49 +0000 | [diff] [blame] | 2622 | Macintosh. The returned string points into static storage; the caller |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2623 | should not modify its value. The value is available to Python code |
| 2624 | as the list \code{sys.path}, which may be modified to change the |
| 2625 | future search path for loaded modules. |
| 2626 | |
| 2627 | % XXX should give the exact rules |
| 2628 | \end{cfuncdesc} |
| 2629 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2630 | \begin{cfuncdesc}{const char*}{Py_GetVersion}{} |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2631 | Return the version of this Python interpreter. This is a string that |
| 2632 | looks something like |
| 2633 | |
Guido van Rossum | 09270b5 | 1997-08-15 18:57:32 +0000 | [diff] [blame] | 2634 | \begin{verbatim} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2635 | "1.5 (#67, Dec 31 1997, 22:34:28) [GCC 2.7.2.2]" |
Guido van Rossum | 09270b5 | 1997-08-15 18:57:32 +0000 | [diff] [blame] | 2636 | \end{verbatim} |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2637 | |
| 2638 | The first word (up to the first space character) is the current Python |
| 2639 | version; the first three characters are the major and minor version |
| 2640 | separated by a period. The returned string points into static storage; |
| 2641 | the caller should not modify its value. The value is available to |
| 2642 | Python code as the list \code{sys.version}. |
| 2643 | \end{cfuncdesc} |
| 2644 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2645 | \begin{cfuncdesc}{const char*}{Py_GetPlatform}{} |
Fred Drake | b0a7873 | 1998-01-13 18:51:10 +0000 | [diff] [blame] | 2646 | Return the platform identifier for the current platform. On \UNIX{}, |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2647 | this is formed from the ``official'' name of the operating system, |
| 2648 | converted to lower case, followed by the major revision number; e.g., |
| 2649 | for Solaris 2.x, which is also known as SunOS 5.x, the value is |
| 2650 | \code{"sunos5"}. On Macintosh, it is \code{"mac"}. On Windows, it |
| 2651 | is \code{"win"}. The returned string points into static storage; |
| 2652 | the caller should not modify its value. The value is available to |
| 2653 | Python code as \code{sys.platform}. |
| 2654 | \end{cfuncdesc} |
| 2655 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2656 | \begin{cfuncdesc}{const char*}{Py_GetCopyright}{} |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2657 | Return the official copyright string for the current Python version, |
| 2658 | for example |
| 2659 | |
| 2660 | \code{"Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam"} |
| 2661 | |
| 2662 | The returned string points into static storage; the caller should not |
| 2663 | modify its value. The value is available to Python code as the list |
| 2664 | \code{sys.copyright}. |
| 2665 | \end{cfuncdesc} |
| 2666 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2667 | \begin{cfuncdesc}{const char*}{Py_GetCompiler}{} |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2668 | Return an indication of the compiler used to build the current Python |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2669 | version, in square brackets, for example: |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2670 | |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2671 | \begin{verbatim} |
| 2672 | "[GCC 2.7.2.2]" |
| 2673 | \end{verbatim} |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2674 | |
| 2675 | The returned string points into static storage; the caller should not |
| 2676 | modify its value. The value is available to Python code as part of |
| 2677 | the variable \code{sys.version}. |
| 2678 | \end{cfuncdesc} |
| 2679 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2680 | \begin{cfuncdesc}{const char*}{Py_GetBuildInfo}{} |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2681 | Return information about the sequence number and build date and time |
| 2682 | of the current Python interpreter instance, for example |
| 2683 | |
Guido van Rossum | 09270b5 | 1997-08-15 18:57:32 +0000 | [diff] [blame] | 2684 | \begin{verbatim} |
| 2685 | "#67, Aug 1 1997, 22:34:28" |
| 2686 | \end{verbatim} |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2687 | |
| 2688 | The returned string points into static storage; the caller should not |
| 2689 | modify its value. The value is available to Python code as part of |
| 2690 | the variable \code{sys.version}. |
| 2691 | \end{cfuncdesc} |
| 2692 | |
| 2693 | \begin{cfuncdesc}{int}{PySys_SetArgv}{int argc, char **argv} |
| 2694 | % XXX |
| 2695 | \end{cfuncdesc} |
| 2696 | |
| 2697 | % XXX Other PySys thingies (doesn't really belong in this chapter) |
| 2698 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 2699 | \section{Thread State and the Global Interpreter Lock |
| 2700 | \label{threads}} |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2701 | |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2702 | The Python interpreter is not fully thread safe. In order to support |
| 2703 | multi-threaded Python programs, there's a global lock that must be |
| 2704 | held by the current thread before it can safely access Python objects. |
| 2705 | Without the lock, even the simplest operations could cause problems in |
Fred Drake | 7baf3d4 | 1998-02-20 00:45:52 +0000 | [diff] [blame] | 2706 | a multi-threaded program: for example, when two threads simultaneously |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2707 | increment the reference count of the same object, the reference count |
| 2708 | could end up being incremented only once instead of twice. |
| 2709 | |
| 2710 | Therefore, the rule exists that only the thread that has acquired the |
| 2711 | global interpreter lock may operate on Python objects or call Python/C |
| 2712 | API functions. In order to support multi-threaded Python programs, |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2713 | the interpreter regularly release and reacquires the lock --- by |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2714 | default, every ten bytecode instructions (this can be changed with |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2715 | \function{sys.setcheckinterval()}). The lock is also released and |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2716 | reacquired around potentially blocking I/O operations like reading or |
| 2717 | writing a file, so that other threads can run while the thread that |
| 2718 | requests the I/O is waiting for the I/O operation to complete. |
| 2719 | |
| 2720 | The Python interpreter needs to keep some bookkeeping information |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2721 | separate per thread --- for this it uses a data structure called |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2722 | \ctype{PyThreadState}. This is new in Python 1.5; in earlier versions, |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2723 | such state was stored in global variables, and switching threads could |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2724 | cause problems. In particular, exception handling is now thread safe, |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2725 | when the application uses \function{sys.exc_info()} to access the |
| 2726 | exception last raised in the current thread. |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2727 | |
| 2728 | There's one global variable left, however: the pointer to the current |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2729 | \ctype{PyThreadState} structure. While most thread packages have a way |
Fred Drake | 9d20ac3 | 1998-02-16 15:27:08 +0000 | [diff] [blame] | 2730 | to store ``per-thread global data,'' Python's internal platform |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2731 | independent thread abstraction doesn't support this yet. Therefore, |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2732 | the current thread state must be manipulated explicitly. |
| 2733 | |
| 2734 | This is easy enough in most cases. Most code manipulating the global |
| 2735 | interpreter lock has the following simple structure: |
| 2736 | |
Guido van Rossum | 9faf4c5 | 1997-10-07 14:38:54 +0000 | [diff] [blame] | 2737 | \begin{verbatim} |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2738 | Save the thread state in a local variable. |
| 2739 | Release the interpreter lock. |
| 2740 | ...Do some blocking I/O operation... |
| 2741 | Reacquire the interpreter lock. |
| 2742 | Restore the thread state from the local variable. |
Guido van Rossum | 9faf4c5 | 1997-10-07 14:38:54 +0000 | [diff] [blame] | 2743 | \end{verbatim} |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2744 | |
| 2745 | This is so common that a pair of macros exists to simplify it: |
| 2746 | |
Guido van Rossum | 9faf4c5 | 1997-10-07 14:38:54 +0000 | [diff] [blame] | 2747 | \begin{verbatim} |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2748 | Py_BEGIN_ALLOW_THREADS |
| 2749 | ...Do some blocking I/O operation... |
| 2750 | Py_END_ALLOW_THREADS |
Guido van Rossum | 9faf4c5 | 1997-10-07 14:38:54 +0000 | [diff] [blame] | 2751 | \end{verbatim} |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2752 | |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2753 | The \code{Py_BEGIN_ALLOW_THREADS} macro opens a new block and declares |
| 2754 | a hidden local variable; the \code{Py_END_ALLOW_THREADS} macro closes |
| 2755 | the block. Another advantage of using these two macros is that when |
| 2756 | Python is compiled without thread support, they are defined empty, |
| 2757 | thus saving the thread state and lock manipulations. |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2758 | |
| 2759 | When thread support is enabled, the block above expands to the |
| 2760 | following code: |
| 2761 | |
Guido van Rossum | 9faf4c5 | 1997-10-07 14:38:54 +0000 | [diff] [blame] | 2762 | \begin{verbatim} |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2763 | { |
| 2764 | PyThreadState *_save; |
| 2765 | _save = PyEval_SaveThread(); |
| 2766 | ...Do some blocking I/O operation... |
| 2767 | PyEval_RestoreThread(_save); |
| 2768 | } |
Guido van Rossum | 9faf4c5 | 1997-10-07 14:38:54 +0000 | [diff] [blame] | 2769 | \end{verbatim} |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2770 | |
| 2771 | Using even lower level primitives, we can get roughly the same effect |
| 2772 | as follows: |
| 2773 | |
Guido van Rossum | 9faf4c5 | 1997-10-07 14:38:54 +0000 | [diff] [blame] | 2774 | \begin{verbatim} |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2775 | { |
| 2776 | PyThreadState *_save; |
| 2777 | _save = PyThreadState_Swap(NULL); |
| 2778 | PyEval_ReleaseLock(); |
| 2779 | ...Do some blocking I/O operation... |
| 2780 | PyEval_AcquireLock(); |
| 2781 | PyThreadState_Swap(_save); |
| 2782 | } |
Guido van Rossum | 9faf4c5 | 1997-10-07 14:38:54 +0000 | [diff] [blame] | 2783 | \end{verbatim} |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2784 | |
| 2785 | There are some subtle differences; in particular, |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2786 | \cfunction{PyEval_RestoreThread()} saves and restores the value of the |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2787 | global variable \cdata{errno}, since the lock manipulation does not |
| 2788 | guarantee that \cdata{errno} is left alone. Also, when thread support |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2789 | is disabled, \cfunction{PyEval_SaveThread()} and |
| 2790 | \cfunction{PyEval_RestoreThread()} don't manipulate the lock; in this |
| 2791 | case, \cfunction{PyEval_ReleaseLock()} and |
| 2792 | \cfunction{PyEval_AcquireLock()} are not available. This is done so |
| 2793 | that dynamically loaded extensions compiled with thread support |
| 2794 | enabled can be loaded by an interpreter that was compiled with |
| 2795 | disabled thread support. |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2796 | |
| 2797 | The global interpreter lock is used to protect the pointer to the |
| 2798 | current thread state. When releasing the lock and saving the thread |
| 2799 | state, the current thread state pointer must be retrieved before the |
| 2800 | lock is released (since another thread could immediately acquire the |
| 2801 | lock and store its own thread state in the global variable). |
| 2802 | Reversely, when acquiring the lock and restoring the thread state, the |
| 2803 | lock must be acquired before storing the thread state pointer. |
| 2804 | |
| 2805 | Why am I going on with so much detail about this? Because when |
Fred Drake | b0a7873 | 1998-01-13 18:51:10 +0000 | [diff] [blame] | 2806 | threads are created from \C{}, they don't have the global interpreter |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2807 | lock, nor is there a thread state data structure for them. Such |
| 2808 | threads must bootstrap themselves into existence, by first creating a |
| 2809 | thread state data structure, then acquiring the lock, and finally |
| 2810 | storing their thread state pointer, before they can start using the |
| 2811 | Python/C API. When they are done, they should reset the thread state |
| 2812 | pointer, release the lock, and finally free their thread state data |
| 2813 | structure. |
| 2814 | |
| 2815 | When creating a thread data structure, you need to provide an |
| 2816 | interpreter state data structure. The interpreter state data |
| 2817 | structure hold global data that is shared by all threads in an |
| 2818 | interpreter, for example the module administration |
| 2819 | (\code{sys.modules}). Depending on your needs, you can either create |
| 2820 | a new interpreter state data structure, or share the interpreter state |
| 2821 | data structure used by the Python main thread (to access the latter, |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2822 | you must obtain the thread state and access its \member{interp} member; |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2823 | this must be done by a thread that is created by Python or by the main |
| 2824 | thread after Python is initialized). |
| 2825 | |
| 2826 | XXX More? |
| 2827 | |
| 2828 | \begin{ctypedesc}{PyInterpreterState} |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2829 | This data structure represents the state shared by a number of |
| 2830 | cooperating threads. Threads belonging to the same interpreter |
| 2831 | share their module administration and a few other internal items. |
| 2832 | There are no public members in this structure. |
| 2833 | |
| 2834 | Threads belonging to different interpreters initially share nothing, |
| 2835 | except process state like available memory, open file descriptors and |
| 2836 | such. The global interpreter lock is also shared by all threads, |
| 2837 | regardless of to which interpreter they belong. |
| 2838 | \end{ctypedesc} |
| 2839 | |
| 2840 | \begin{ctypedesc}{PyThreadState} |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2841 | This data structure represents the state of a single thread. The only |
Fred Drake | f8830d1 | 1998-04-23 14:06:01 +0000 | [diff] [blame] | 2842 | public data member is \ctype{PyInterpreterState *}\member{interp}, |
| 2843 | which points to this thread's interpreter state. |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2844 | \end{ctypedesc} |
| 2845 | |
| 2846 | \begin{cfuncdesc}{void}{PyEval_InitThreads}{} |
| 2847 | Initialize and acquire the global interpreter lock. It should be |
| 2848 | called in the main thread before creating a second thread or engaging |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2849 | in any other thread operations such as |
| 2850 | \cfunction{PyEval_ReleaseLock()} or |
| 2851 | \code{PyEval_ReleaseThread(\var{tstate})}. It is not needed before |
| 2852 | calling \cfunction{PyEval_SaveThread()} or |
| 2853 | \cfunction{PyEval_RestoreThread()}. |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2854 | |
| 2855 | This is a no-op when called for a second time. It is safe to call |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2856 | this function before calling \cfunction{Py_Initialize()}. |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2857 | |
| 2858 | When only the main thread exists, no lock operations are needed. This |
| 2859 | is a common situation (most Python programs do not use threads), and |
| 2860 | the lock operations slow the interpreter down a bit. Therefore, the |
| 2861 | lock is not created initially. This situation is equivalent to having |
| 2862 | acquired the lock: when there is only a single thread, all object |
| 2863 | accesses are safe. Therefore, when this function initializes the |
Fred Drake | 4de05a9 | 1998-02-16 14:25:26 +0000 | [diff] [blame] | 2864 | lock, it also acquires it. Before the Python |
| 2865 | \module{thread}\refbimodindex{thread} module creates a new thread, |
| 2866 | knowing that either it has the lock or the lock hasn't been created |
| 2867 | yet, it calls \cfunction{PyEval_InitThreads()}. When this call |
| 2868 | returns, it is guaranteed that the lock has been created and that it |
| 2869 | has acquired it. |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2870 | |
| 2871 | It is \strong{not} safe to call this function when it is unknown which |
| 2872 | thread (if any) currently has the global interpreter lock. |
| 2873 | |
| 2874 | This function is not available when thread support is disabled at |
| 2875 | compile time. |
| 2876 | \end{cfuncdesc} |
| 2877 | |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2878 | \begin{cfuncdesc}{void}{PyEval_AcquireLock}{} |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2879 | Acquire the global interpreter lock. The lock must have been created |
| 2880 | earlier. If this thread already has the lock, a deadlock ensues. |
| 2881 | This function is not available when thread support is disabled at |
| 2882 | compile time. |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2883 | \end{cfuncdesc} |
| 2884 | |
| 2885 | \begin{cfuncdesc}{void}{PyEval_ReleaseLock}{} |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2886 | Release the global interpreter lock. The lock must have been created |
| 2887 | earlier. This function is not available when thread support is |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2888 | disabled at compile time. |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2889 | \end{cfuncdesc} |
| 2890 | |
| 2891 | \begin{cfuncdesc}{void}{PyEval_AcquireThread}{PyThreadState *tstate} |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2892 | Acquire the global interpreter lock and then set the current thread |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 2893 | state to \var{tstate}, which should not be \NULL{}. The lock must |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2894 | have been created earlier. If this thread already has the lock, |
| 2895 | deadlock ensues. This function is not available when thread support |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2896 | is disabled at compile time. |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2897 | \end{cfuncdesc} |
| 2898 | |
| 2899 | \begin{cfuncdesc}{void}{PyEval_ReleaseThread}{PyThreadState *tstate} |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 2900 | Reset the current thread state to \NULL{} and release the global |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2901 | interpreter lock. The lock must have been created earlier and must be |
| 2902 | held by the current thread. The \var{tstate} argument, which must not |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 2903 | be \NULL{}, is only used to check that it represents the current |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2904 | thread state --- if it isn't, a fatal error is reported. This |
| 2905 | function is not available when thread support is disabled at compile |
| 2906 | time. |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2907 | \end{cfuncdesc} |
| 2908 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2909 | \begin{cfuncdesc}{PyThreadState*}{PyEval_SaveThread}{} |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2910 | Release the interpreter lock (if it has been created and thread |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 2911 | support is enabled) and reset the thread state to \NULL{}, |
| 2912 | returning the previous thread state (which is not \NULL{}). If |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2913 | the lock has been created, the current thread must have acquired it. |
| 2914 | (This function is available even when thread support is disabled at |
| 2915 | compile time.) |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2916 | \end{cfuncdesc} |
| 2917 | |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2918 | \begin{cfuncdesc}{void}{PyEval_RestoreThread}{PyThreadState *tstate} |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2919 | Acquire the interpreter lock (if it has been created and thread |
| 2920 | support is enabled) and set the thread state to \var{tstate}, which |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 2921 | must not be \NULL{}. If the lock has been created, the current |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2922 | thread must not have acquired it, otherwise deadlock ensues. (This |
| 2923 | function is available even when thread support is disabled at compile |
| 2924 | time.) |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2925 | \end{cfuncdesc} |
| 2926 | |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2927 | % XXX These aren't really C types, but the ctypedesc macro is the simplest! |
| 2928 | \begin{ctypedesc}{Py_BEGIN_ALLOW_THREADS} |
| 2929 | This macro expands to |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2930 | \samp{\{ PyThreadState *_save; _save = PyEval_SaveThread();}. |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2931 | Note that it contains an opening brace; it must be matched with a |
| 2932 | following \code{Py_END_ALLOW_THREADS} macro. See above for further |
| 2933 | discussion of this macro. It is a no-op when thread support is |
| 2934 | disabled at compile time. |
| 2935 | \end{ctypedesc} |
| 2936 | |
| 2937 | \begin{ctypedesc}{Py_END_ALLOW_THREADS} |
| 2938 | This macro expands to |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2939 | \samp{PyEval_RestoreThread(_save); \}}. |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2940 | Note that it contains a closing brace; it must be matched with an |
| 2941 | earlier \code{Py_BEGIN_ALLOW_THREADS} macro. See above for further |
| 2942 | discussion of this macro. It is a no-op when thread support is |
| 2943 | disabled at compile time. |
| 2944 | \end{ctypedesc} |
| 2945 | |
| 2946 | \begin{ctypedesc}{Py_BEGIN_BLOCK_THREADS} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2947 | This macro expands to \samp{PyEval_RestoreThread(_save);} i.e. it |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2948 | is equivalent to \code{Py_END_ALLOW_THREADS} without the closing |
| 2949 | brace. It is a no-op when thread support is disabled at compile |
| 2950 | time. |
| 2951 | \end{ctypedesc} |
| 2952 | |
| 2953 | \begin{ctypedesc}{Py_BEGIN_UNBLOCK_THREADS} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2954 | This macro expands to \samp{_save = PyEval_SaveThread();} i.e. it is |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2955 | equivalent to \code{Py_BEGIN_ALLOW_THREADS} without the opening brace |
| 2956 | and variable declaration. It is a no-op when thread support is |
| 2957 | disabled at compile time. |
| 2958 | \end{ctypedesc} |
| 2959 | |
| 2960 | All of the following functions are only available when thread support |
| 2961 | is enabled at compile time, and must be called only when the |
Fred Drake | 9d20ac3 | 1998-02-16 15:27:08 +0000 | [diff] [blame] | 2962 | interpreter lock has been created. |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2963 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2964 | \begin{cfuncdesc}{PyInterpreterState*}{PyInterpreterState_New}{} |
Guido van Rossum | ed9dcc1 | 1998-08-07 18:28:03 +0000 | [diff] [blame] | 2965 | Create a new interpreter state object. The interpreter lock need not |
| 2966 | be held, but may be held if it is necessary to serialize calls to this |
| 2967 | function. |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2968 | \end{cfuncdesc} |
| 2969 | |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2970 | \begin{cfuncdesc}{void}{PyInterpreterState_Clear}{PyInterpreterState *interp} |
| 2971 | Reset all information in an interpreter state object. The interpreter |
| 2972 | lock must be held. |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 2973 | \end{cfuncdesc} |
| 2974 | |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2975 | \begin{cfuncdesc}{void}{PyInterpreterState_Delete}{PyInterpreterState *interp} |
| 2976 | Destroy an interpreter state object. The interpreter lock need not be |
| 2977 | held. The interpreter state must have been reset with a previous |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2978 | call to \cfunction{PyInterpreterState_Clear()}. |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2979 | \end{cfuncdesc} |
| 2980 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2981 | \begin{cfuncdesc}{PyThreadState*}{PyThreadState_New}{PyInterpreterState *interp} |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2982 | Create a new thread state object belonging to the given interpreter |
Guido van Rossum | ed9dcc1 | 1998-08-07 18:28:03 +0000 | [diff] [blame] | 2983 | object. The interpreter lock need not be held, but may be held if it |
| 2984 | is necessary to serialize calls to this function. |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2985 | \end{cfuncdesc} |
| 2986 | |
| 2987 | \begin{cfuncdesc}{void}{PyThreadState_Clear}{PyThreadState *tstate} |
| 2988 | Reset all information in a thread state object. The interpreter lock |
| 2989 | must be held. |
| 2990 | \end{cfuncdesc} |
| 2991 | |
| 2992 | \begin{cfuncdesc}{void}{PyThreadState_Delete}{PyThreadState *tstate} |
| 2993 | Destroy a thread state object. The interpreter lock need not be |
| 2994 | held. The thread state must have been reset with a previous |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 2995 | call to \cfunction{PyThreadState_Clear()}. |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2996 | \end{cfuncdesc} |
| 2997 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 2998 | \begin{cfuncdesc}{PyThreadState*}{PyThreadState_Get}{} |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 2999 | Return the current thread state. The interpreter lock must be held. |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 3000 | When the current thread state is \NULL{}, this issues a fatal |
Guido van Rossum | 5b8a523 | 1997-12-30 04:38:44 +0000 | [diff] [blame] | 3001 | error (so that the caller needn't check for \NULL{}). |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 3002 | \end{cfuncdesc} |
| 3003 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 3004 | \begin{cfuncdesc}{PyThreadState*}{PyThreadState_Swap}{PyThreadState *tstate} |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 3005 | Swap the current thread state with the thread state given by the |
Guido van Rossum | 580aa8d | 1997-11-25 15:34:51 +0000 | [diff] [blame] | 3006 | argument \var{tstate}, which may be \NULL{}. The interpreter lock |
Guido van Rossum | c44d3d6 | 1997-10-06 05:10:47 +0000 | [diff] [blame] | 3007 | must be held. |
| 3008 | \end{cfuncdesc} |
| 3009 | |
| 3010 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 3011 | \chapter{Defining New Object Types \label{newTypes}} |
Guido van Rossum | 4a944d7 | 1997-08-14 20:35:38 +0000 | [diff] [blame] | 3012 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 3013 | \begin{cfuncdesc}{PyObject*}{_PyObject_New}{PyTypeObject *type} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 3014 | \end{cfuncdesc} |
| 3015 | |
Fred Drake | c6fa34e | 1998-04-02 06:47:24 +0000 | [diff] [blame] | 3016 | \begin{cfuncdesc}{PyObject*}{_PyObject_NewVar}{PyTypeObject *type, int size} |
Fred Drake | e058b4f | 1998-02-16 06:15:35 +0000 | [diff] [blame] | 3017 | \end{cfuncdesc} |
| 3018 | |
| 3019 | \begin{cfuncdesc}{TYPE}{_PyObject_NEW}{TYPE, PyTypeObject *} |
| 3020 | \end{cfuncdesc} |
| 3021 | |
| 3022 | \begin{cfuncdesc}{TYPE}{_PyObject_NEW_VAR}{TYPE, PyTypeObject *, int size} |
| 3023 | \end{cfuncdesc} |
| 3024 | |
Guido van Rossum | 3c4378b | 1998-04-14 20:21:10 +0000 | [diff] [blame] | 3025 | Py_InitModule (!!!) |
| 3026 | |
| 3027 | PyArg_ParseTupleAndKeywords, PyArg_ParseTuple, PyArg_Parse |
| 3028 | |
| 3029 | Py_BuildValue |
Guido van Rossum | ae110af | 1997-05-22 20:11:52 +0000 | [diff] [blame] | 3030 | |
| 3031 | PyObject, PyVarObject |
| 3032 | |
| 3033 | PyObject_HEAD, PyObject_HEAD_INIT, PyObject_VAR_HEAD |
| 3034 | |
| 3035 | Typedefs: |
| 3036 | unaryfunc, binaryfunc, ternaryfunc, inquiry, coercion, intargfunc, |
| 3037 | intintargfunc, intobjargproc, intintobjargproc, objobjargproc, |
| 3038 | getreadbufferproc, getwritebufferproc, getsegcountproc, |
| 3039 | destructor, printfunc, getattrfunc, getattrofunc, setattrfunc, |
| 3040 | setattrofunc, cmpfunc, reprfunc, hashfunc |
| 3041 | |
| 3042 | PyNumberMethods |
| 3043 | |
| 3044 | PySequenceMethods |
| 3045 | |
| 3046 | PyMappingMethods |
| 3047 | |
| 3048 | PyBufferProcs |
| 3049 | |
| 3050 | PyTypeObject |
| 3051 | |
| 3052 | DL_IMPORT |
| 3053 | |
| 3054 | PyType_Type |
| 3055 | |
| 3056 | Py*_Check |
| 3057 | |
| 3058 | Py_None, _Py_NoneStruct |
| 3059 | |
Guido van Rossum | ae110af | 1997-05-22 20:11:52 +0000 | [diff] [blame] | 3060 | |
Fred Drake | efd146c | 1999-02-15 15:30:45 +0000 | [diff] [blame] | 3061 | \chapter{Debugging \label{debugging}} |
Guido van Rossum | ae110af | 1997-05-22 20:11:52 +0000 | [diff] [blame] | 3062 | |
Fred Drake | e5bf8b2 | 1998-02-12 21:22:28 +0000 | [diff] [blame] | 3063 | XXX Explain Py_DEBUG, Py_TRACE_REFS, Py_REF_DEBUG. |
Guido van Rossum | 5b8a523 | 1997-12-30 04:38:44 +0000 | [diff] [blame] | 3064 | |
| 3065 | |
Fred Drake | f3aa0e0 | 1998-03-17 06:23:13 +0000 | [diff] [blame] | 3066 | \input{api.ind} % Index -- must be last |
Guido van Rossum | 9231c8f | 1997-05-15 21:43:21 +0000 | [diff] [blame] | 3067 | |
| 3068 | \end{document} |