Jeremy Hylton | a12c7a7 | 2000-03-30 22:27:31 +0000 | [diff] [blame] | 1 | # Created by Skip Montanaro <skip@mojam.com>. |
Fred Drake | 805bf1b | 1999-10-20 16:03:38 +0000 | [diff] [blame] | 2 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 3 | # Format: |
| 4 | # function ':' type ':' [param name] ':' [refcount effect] ':' [comment] |
| 5 | # If the param name slot is empty, that line corresponds to the function's |
| 6 | # return value, otherwise it's the type of the named parameter. |
| 7 | |
| 8 | # The first line of a function block gives type/refcount information for the |
| 9 | # function's return value. Successive lines with the same function name |
| 10 | # correspond to the function's parameter list and appear in the order the |
| 11 | # parameters appear in the function's prototype. |
| 12 | |
| 13 | # For readability, each function's lines are surrounded by a blank line. |
| 14 | # The blocks are sorted alphabetically by function name. |
| 15 | |
| 16 | # Refcount behavior is given for all PyObject* types: 0 (no change), +1 |
| 17 | # (increment) and -1 (decrement). A blank refcount field indicates the |
| 18 | # parameter or function value is not a PyObject* and is therefore not |
Fred Drake | 8394595 | 2000-04-10 18:29:21 +0000 | [diff] [blame] | 19 | # subject to reference counting. A special case for the value "null" |
| 20 | # (without quotes) is used for functions which return a PyObject* type but |
| 21 | # always return NULL. This is used by some of the PyErr_*() functions, in |
| 22 | # particular. |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 23 | |
Guido van Rossum | 9a18a7e | 2000-12-19 03:53:57 +0000 | [diff] [blame] | 24 | # XXX NOTE: the 0/+1/-1 refcount information for arguments is |
| 25 | # confusing! Much more useful would be to indicate whether the |
| 26 | # function "steals" a reference to the argument or not. Take for |
| 27 | # example PyList_SetItem(list, i, item). This lists as a 0 change for |
| 28 | # both the list and the item arguments. However, in fact it steals a |
| 29 | # reference to the item argument! |
| 30 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 31 | # The parameter names are as they appear in the API manual, not the source |
| 32 | # code. |
| 33 | |
Fred Drake | eb725cd | 2000-04-03 15:06:40 +0000 | [diff] [blame] | 34 | PyBuffer_FromObject:PyObject*::+1: |
| 35 | PyBuffer_FromObject:PyObject*:base:+1: |
| 36 | PyBuffer_FromObject:int:offset:: |
| 37 | PyBuffer_FromObject:int:size:: |
| 38 | |
| 39 | PyBuffer_FromReadWriteObject:PyObject*::+1: |
| 40 | PyBuffer_FromReadWriteObject:PyObject*:base:+1: |
| 41 | PyBuffer_FromReadWriteObject:int:offset:: |
| 42 | PyBuffer_FromReadWriteObject:int:size:: |
| 43 | |
| 44 | PyBuffer_FromMemory:PyObject*::+1: |
| 45 | PyBuffer_FromMemory:void*:ptr:: |
| 46 | PyBuffer_FromMemory:int:size:: |
| 47 | |
| 48 | PyBuffer_FromReadWriteMemory:PyObject*::+1: |
| 49 | PyBuffer_FromReadWriteMemory:void*:ptr:: |
| 50 | PyBuffer_FromReadWriteMemory:int:size:: |
| 51 | |
| 52 | PyBuffer_New:PyObject*::+1: |
| 53 | PyBuffer_New:int:size:: |
| 54 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 55 | PyCObject_AsVoidPtr:void*::: |
| 56 | PyCObject_AsVoidPtr:PyObject*:self:0: |
| 57 | |
| 58 | PyCObject_FromVoidPtr:PyObject*::+1: |
| 59 | PyCObject_FromVoidPtr:void*:cobj:: |
| 60 | PyCObject_FromVoidPtr::void (* destr)(void* ):: |
| 61 | |
| 62 | PyCObject_FromVoidPtrAndDesc:PyObject*::+1: |
| 63 | PyCObject_FromVoidPtrAndDesc:void*:cobj:: |
| 64 | PyCObject_FromVoidPtrAndDesc:void*:desc:: |
| 65 | PyCObject_FromVoidPtrAndDesc:void(*)(void*,void*):destr:: |
| 66 | |
| 67 | PyCObject_GetDesc:void*::: |
| 68 | PyCObject_GetDesc:PyObject*:self:0: |
| 69 | |
Fred Drake | cd8474e | 2001-11-26 21:29:17 +0000 | [diff] [blame] | 70 | PyCell_New:PyObject*::+1: |
| 71 | PyCell_New:PyObject*:ob:0: |
| 72 | |
| 73 | PyCell_GET:PyObject*::0: |
| 74 | PyCell_GET:PyObject*:ob:0: |
| 75 | |
| 76 | PyCell_Get:PyObject*::+1: |
| 77 | PyCell_Get:PyObject*:cell:0: |
| 78 | |
| 79 | PyCell_SET:void::: |
| 80 | PyCell_SET:PyObject*:cell:0: |
| 81 | PyCell_SET:PyObject*:value:0: |
| 82 | |
| 83 | PyCell_Set:int::: |
| 84 | PyCell_Set:PyObject*:cell:0: |
| 85 | PyCell_Set:PyObject*:value:0: |
| 86 | |
Fred Drake | d61d0d3 | 2001-09-23 02:05:26 +0000 | [diff] [blame] | 87 | PyCallIter_New:PyObject*::+1: |
| 88 | PyCallIter_New:PyObject*:callable:: |
| 89 | PyCallIter_New:PyObject*:sentinel:: |
| 90 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 91 | PyCallable_Check:int::: |
| 92 | PyCallable_Check:PyObject*:o:0: |
| 93 | |
| 94 | PyComplex_AsCComplex:Py_complex::: |
| 95 | PyComplex_AsCComplex:PyObject*:op:0: |
| 96 | |
| 97 | PyComplex_Check:int::: |
| 98 | PyComplex_Check:PyObject*:p:0: |
| 99 | |
| 100 | PyComplex_FromCComplex:PyObject*::+1: |
| 101 | PyComplex_FromCComplex::Py_complex v:: |
| 102 | |
| 103 | PyComplex_FromDoubles:PyObject*::+1: |
| 104 | PyComplex_FromDoubles::double real:: |
| 105 | PyComplex_FromDoubles::double imag:: |
| 106 | |
| 107 | PyComplex_ImagAsDouble:double::: |
| 108 | PyComplex_ImagAsDouble:PyObject*:op:0: |
| 109 | |
| 110 | PyComplex_RealAsDouble:double::: |
| 111 | PyComplex_RealAsDouble:PyObject*:op:0: |
| 112 | |
Fred Drake | 23a78cf | 2001-09-24 15:29:47 +0000 | [diff] [blame] | 113 | PyDescr_NewGetSet:PyObject*::+1: |
| 114 | PyDescr_NewGetSet:PyTypeObject*:type:: |
| 115 | PyDescr_NewGetSet:PyGetSetDef*:getset:: |
| 116 | |
| 117 | PyDescr_NewMember:PyObject*::+1: |
| 118 | PyDescr_NewMember:PyTypeObject*:type:: |
| 119 | PyDescr_NewMember:PyMemberDef*:member:: |
| 120 | |
| 121 | PyDescr_NewMethod:PyObject*::+1: |
| 122 | PyDescr_NewMethod:PyTypeObject*:type:: |
| 123 | PyDescr_NewMethod:PyMethodDef*:meth:: |
| 124 | |
| 125 | PyDescr_NewWrapper:PyObject*::+1: |
| 126 | PyDescr_NewWrapper:PyTypeObject*:type:: |
| 127 | PyDescr_NewWrapper:struct wrapperbase*:base:: |
| 128 | PyDescr_NewWrapper:void*:wrapped:: |
| 129 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 130 | PyDict_Check:int::: |
| 131 | PyDict_Check:PyObject*:p:0: |
| 132 | |
| 133 | PyDict_Clear:void::: |
Fred Drake | 81473b1 | 2001-01-08 05:53:53 +0000 | [diff] [blame] | 134 | PyDict_Clear:PyObject*:p:0: |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 135 | |
| 136 | PyDict_DelItem:int::: |
Fred Drake | 81473b1 | 2001-01-08 05:53:53 +0000 | [diff] [blame] | 137 | PyDict_DelItem:PyObject*:p:0: |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 138 | PyDict_DelItem:PyObject*:key:0: |
| 139 | |
| 140 | PyDict_DelItemString:int::: |
Fred Drake | 81473b1 | 2001-01-08 05:53:53 +0000 | [diff] [blame] | 141 | PyDict_DelItemString:PyObject*:p:0: |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 142 | PyDict_DelItemString:char*:key:: |
| 143 | |
Fred Drake | 805bf1b | 1999-10-20 16:03:38 +0000 | [diff] [blame] | 144 | PyDict_GetItem:PyObject*::0:0 |
Fred Drake | 81473b1 | 2001-01-08 05:53:53 +0000 | [diff] [blame] | 145 | PyDict_GetItem:PyObject*:p:0: |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 146 | PyDict_GetItem:PyObject*:key:0: |
| 147 | |
Fred Drake | 805bf1b | 1999-10-20 16:03:38 +0000 | [diff] [blame] | 148 | PyDict_GetItemString:PyObject*::0: |
Fred Drake | 81473b1 | 2001-01-08 05:53:53 +0000 | [diff] [blame] | 149 | PyDict_GetItemString:PyObject*:p:0: |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 150 | PyDict_GetItemString:char*:key:: |
| 151 | |
| 152 | PyDict_Items:PyObject*::+1: |
Fred Drake | 81473b1 | 2001-01-08 05:53:53 +0000 | [diff] [blame] | 153 | PyDict_Items:PyObject*:p:0: |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 154 | |
| 155 | PyDict_Keys:PyObject*::+1: |
Fred Drake | 81473b1 | 2001-01-08 05:53:53 +0000 | [diff] [blame] | 156 | PyDict_Keys:PyObject*:p:0: |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 157 | |
| 158 | PyDict_New:PyObject*::+1: |
| 159 | |
Jeremy Hylton | a12c7a7 | 2000-03-30 22:27:31 +0000 | [diff] [blame] | 160 | PyDict_Copy:PyObject*::+1: |
| 161 | PyDict_Copy:PyObject*:p:0: |
| 162 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 163 | PyDict_Next:int::: |
Fred Drake | 81473b1 | 2001-01-08 05:53:53 +0000 | [diff] [blame] | 164 | PyDict_Next:PyObject*:p:0: |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 165 | PyDict_Next:int:ppos:: |
| 166 | PyDict_Next:PyObject**:pkey:0: |
| 167 | PyDict_Next:PyObject**:pvalue:0: |
| 168 | |
| 169 | PyDict_SetItem:int::: |
Fred Drake | 81473b1 | 2001-01-08 05:53:53 +0000 | [diff] [blame] | 170 | PyDict_SetItem:PyObject*:p:0: |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 171 | PyDict_SetItem:PyObject*:key:+1: |
| 172 | PyDict_SetItem:PyObject*:val:+1: |
| 173 | |
| 174 | PyDict_SetItemString:int::: |
Fred Drake | 81473b1 | 2001-01-08 05:53:53 +0000 | [diff] [blame] | 175 | PyDict_SetItemString:PyObject*:p:0: |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 176 | PyDict_SetItemString:char*:key:: |
| 177 | PyDict_SetItemString:PyObject*:val:+1: |
| 178 | |
| 179 | PyDict_Size:int::: |
Fred Drake | 81473b1 | 2001-01-08 05:53:53 +0000 | [diff] [blame] | 180 | PyDict_Size:PyObject*:p:: |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 181 | |
| 182 | PyDict_Values:PyObject*::+1: |
Fred Drake | 81473b1 | 2001-01-08 05:53:53 +0000 | [diff] [blame] | 183 | PyDict_Values:PyObject*:p:0: |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 184 | |
Fred Drake | 23a78cf | 2001-09-24 15:29:47 +0000 | [diff] [blame] | 185 | PyDictProxy_New:PyObject*::+1: |
| 186 | PyDictProxy_New:PyObject*:dict:0: |
| 187 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 188 | PyErr_BadArgument:int::: |
| 189 | |
| 190 | PyErr_BadInternalCall:void::: |
| 191 | |
| 192 | PyErr_CheckSignals:int::: |
| 193 | |
| 194 | PyErr_Clear:void::: |
| 195 | |
| 196 | PyErr_ExceptionMatches:int::: |
| 197 | PyErr_ExceptionMatches:PyObject*:exc:0: |
| 198 | |
| 199 | PyErr_Fetch:void::: |
| 200 | PyErr_Fetch:PyObject**:ptype:0: |
| 201 | PyErr_Fetch:PyObject**:pvalue:0: |
| 202 | PyErr_Fetch:PyObject**:ptraceback:0: |
| 203 | |
| 204 | PyErr_GivenExceptionMatches:int::: |
| 205 | PyErr_GivenExceptionMatches:PyObject*:given:0: |
| 206 | PyErr_GivenExceptionMatches:PyObject*:exc:0: |
| 207 | |
| 208 | PyErr_NewException:PyObject*::+1: |
| 209 | PyErr_NewException:char*:name:: |
| 210 | PyErr_NewException:PyObject*:base:0: |
| 211 | PyErr_NewException:PyObject*:dict:0: |
| 212 | |
Fred Drake | db2764d | 2000-04-10 18:25:09 +0000 | [diff] [blame] | 213 | PyErr_NoMemory:PyObject*::null: |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 214 | |
| 215 | PyErr_NormalizeException:void::: |
| 216 | PyErr_NormalizeException:PyObject**:exc::??? |
| 217 | PyErr_NormalizeException:PyObject**:val::??? |
| 218 | PyErr_NormalizeException:PyObject**:tb::??? |
| 219 | |
| 220 | PyErr_Occurred:PyObject*::0: |
| 221 | |
| 222 | PyErr_Print:void::: |
| 223 | |
| 224 | PyErr_Restore:void::: |
Fred Drake | 34c391d | 2000-08-15 04:36:16 +0000 | [diff] [blame] | 225 | PyErr_Restore:PyObject*:type:-1: |
| 226 | PyErr_Restore:PyObject*:value:-1: |
| 227 | PyErr_Restore:PyObject*:traceback:-1: |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 228 | |
Fred Drake | db2764d | 2000-04-10 18:25:09 +0000 | [diff] [blame] | 229 | PyErr_SetFromErrno:PyObject*::null: |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 230 | PyErr_SetFromErrno:PyObject*:type:0: |
| 231 | |
Fred Drake | 9c75ff7 | 2001-09-06 18:06:46 +0000 | [diff] [blame] | 232 | PyErr_SetFromErrnoWithFilename:PyObject*::null: |
| 233 | PyErr_SetFromErrnoWithFilename:PyObject*:type:0: |
| 234 | PyErr_SetFromErrnoWithFilename:char*:filename:: |
| 235 | |
Fred Drake | 7c1bb9c | 2002-07-02 16:16:18 +0000 | [diff] [blame] | 236 | PyErr_SetFromWindowsErr:PyObject*::null: |
| 237 | PyErr_SetFromWindowsErr:int:ierr:: |
| 238 | |
| 239 | PyErr_SetFromWindowsErrWithFilename:PyObject*::null: |
| 240 | PyErr_SetFromWindowsErrWithFilename:int:ierr:: |
| 241 | PyErr_SetFromWindowsErrWithFilename:char*:filename:: |
| 242 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 243 | PyErr_SetInterrupt:void::: |
| 244 | |
| 245 | PyErr_SetNone:void::: |
| 246 | PyErr_SetNone:PyObject*:type:+1: |
| 247 | |
| 248 | PyErr_SetObject:void::: |
| 249 | PyErr_SetObject:PyObject*:type:+1: |
| 250 | PyErr_SetObject:PyObject*:value:+1: |
| 251 | |
| 252 | PyErr_SetString:void::: |
| 253 | PyErr_SetString:PyObject*:type:+1: |
| 254 | PyErr_SetString:char*:message:: |
| 255 | |
Jeremy Hylton | 98605b5 | 2000-04-10 18:40:57 +0000 | [diff] [blame] | 256 | PyErr_Format:PyObject*::null: |
| 257 | PyErr_Format:PyObject*:exception:+1: |
| 258 | PyErr_Format:char*:format:: |
| 259 | PyErr_Format::...:: |
| 260 | |
Guido van Rossum | 9a18a7e | 2000-12-19 03:53:57 +0000 | [diff] [blame] | 261 | PyErr_Warn:int::: |
Guido van Rossum | e22e4b2 | 2000-12-19 03:58:11 +0000 | [diff] [blame] | 262 | PyErr_Warn:PyObject*:category:0: |
Guido van Rossum | 9a18a7e | 2000-12-19 03:53:57 +0000 | [diff] [blame] | 263 | PyErr_Warn:char*:message:: |
| 264 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 265 | PyEval_AcquireLock:void::: |
| 266 | |
| 267 | PyEval_AcquireThread:void::: |
| 268 | PyEval_AcquireThread:PyThreadState*:tstate:: |
| 269 | |
| 270 | PyEval_InitThreads:void::: |
| 271 | |
| 272 | PyEval_ReleaseLock:void::: |
| 273 | |
| 274 | PyEval_ReleaseThread:void::: |
| 275 | PyEval_ReleaseThread:PyThreadState*:tstate:: |
| 276 | |
| 277 | PyEval_RestoreThread:void::: |
| 278 | PyEval_RestoreThread:PyThreadState*:tstate:: |
| 279 | |
| 280 | PyEval_SaveThread:PyThreadState*::: |
| 281 | |
Fred Drake | 4ca744c | 2000-08-12 03:39:47 +0000 | [diff] [blame] | 282 | PyEval_EvalCode:PyObject*::+1: |
| 283 | PyEval_EvalCode:PyCodeObject*:co:0: |
| 284 | PyEval_EvalCode:PyObject*:globals:0: |
| 285 | PyEval_EvalCode:PyObject*:locals:0: |
| 286 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 287 | PyFile_AsFile:FILE*::: |
| 288 | PyFile_AsFile:PyFileObject*:p:0: |
| 289 | |
| 290 | PyFile_Check:int::: |
| 291 | PyFile_Check:PyObject*:p:0: |
| 292 | |
| 293 | PyFile_FromFile:PyObject*::+1: |
| 294 | PyFile_FromFile:FILE*:fp:: |
| 295 | PyFile_FromFile:char*:name:: |
| 296 | PyFile_FromFile:char*:mode:: |
| 297 | PyFile_FromFile:int(*:close):: |
| 298 | |
| 299 | PyFile_FromString:PyObject*::+1: |
| 300 | PyFile_FromString:char*:name:: |
| 301 | PyFile_FromString:char*:mode:: |
| 302 | |
| 303 | PyFile_GetLine:PyObject*::+1: |
| 304 | PyFile_GetLine:PyObject*:p:: |
| 305 | PyFile_GetLine:int:n:: |
| 306 | |
| 307 | PyFile_Name:PyObject*::0: |
| 308 | PyFile_Name:PyObject*:p:0: |
| 309 | |
| 310 | PyFile_SetBufSize:void::: |
| 311 | PyFile_SetBufSize:PyFileObject*:p:0: |
| 312 | PyFile_SetBufSize:int:n:: |
| 313 | |
| 314 | PyFile_SoftSpace:int::: |
| 315 | PyFile_SoftSpace:PyFileObject*:p:0: |
| 316 | PyFile_SoftSpace:int:newflag:: |
| 317 | |
| 318 | PyFile_WriteObject:int::: |
| 319 | PyFile_WriteObject:PyObject*:obj:0: |
| 320 | PyFile_WriteObject:PyFileObject*:p:0: |
| 321 | PyFile_WriteObject:int:flags:: |
| 322 | |
| 323 | PyFile_WriteString:int::: |
Fred Drake | 454af89 | 2001-11-29 22:42:59 +0000 | [diff] [blame] | 324 | PyFile_WriteString:const char*:s:: |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 325 | PyFile_WriteString:PyFileObject*:p:0: |
| 326 | PyFile_WriteString:int:flags:: |
| 327 | |
| 328 | PyFloat_AS_DOUBLE:double::: |
| 329 | PyFloat_AS_DOUBLE:PyObject*:pyfloat:0: |
| 330 | |
| 331 | PyFloat_AsDouble:double::: |
| 332 | PyFloat_AsDouble:PyObject*:pyfloat:0: |
| 333 | |
| 334 | PyFloat_Check:int::: |
| 335 | PyFloat_Check:PyObject*:p:0: |
| 336 | |
| 337 | PyFloat_FromDouble:PyObject*::+1: |
| 338 | PyFloat_FromDouble:double:v:: |
| 339 | |
Fred Drake | ee814bf | 2000-11-28 22:34:32 +0000 | [diff] [blame] | 340 | Py_InitModule:PyObject*::0: |
| 341 | Py_InitModule:name:char*:: |
| 342 | Py_InitModule:methods:PyMethodDef[]:: |
| 343 | |
| 344 | Py_InitModule3:PyObject*::0: |
| 345 | Py_InitModule3:name:char*:: |
| 346 | Py_InitModule3:methods:PyMethodDef[]:: |
| 347 | Py_InitModule3:doc:char*:: |
| 348 | |
| 349 | Py_InitModule4:PyObject*::0: |
| 350 | Py_InitModule4:name:char*:: |
| 351 | Py_InitModule4:methods:PyMethodDef[]:: |
| 352 | Py_InitModule4:doc:char*:: |
| 353 | Py_InitModule4:self:PyObject*:: |
| 354 | Py_InitModule4:apiver:int::usually provided by Py_InitModule or Py_InitModule3 |
| 355 | |
Fred Drake | 805bf1b | 1999-10-20 16:03:38 +0000 | [diff] [blame] | 356 | PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 357 | PyImport_AddModule:char*:name:: |
| 358 | |
| 359 | PyImport_Cleanup:void::: |
| 360 | |
| 361 | PyImport_ExecCodeModule:PyObject*::+1: |
| 362 | PyImport_ExecCodeModule:char*:name:: |
| 363 | PyImport_ExecCodeModule:PyObject*:co:0: |
| 364 | |
| 365 | PyImport_GetMagicNumber:long::: |
| 366 | |
| 367 | PyImport_GetModuleDict:PyObject*::0: |
| 368 | |
| 369 | PyImport_Import:PyObject*::+1: |
| 370 | PyImport_Import:PyObject*:name:0: |
| 371 | |
| 372 | PyImport_ImportFrozenModule:int::: |
| 373 | PyImport_ImportFrozenModule:char*::: |
| 374 | |
Fred Drake | eb725cd | 2000-04-03 15:06:40 +0000 | [diff] [blame] | 375 | PyImport_ImportModule:PyObject*::+1: |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 376 | PyImport_ImportModule:char*:name:: |
| 377 | |
Fred Drake | eb725cd | 2000-04-03 15:06:40 +0000 | [diff] [blame] | 378 | PyImport_ImportModuleEx:PyObject*::+1: |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 379 | PyImport_ImportModuleEx:char*:name:: |
| 380 | PyImport_ImportModuleEx:PyObject*:globals:0:??? |
| 381 | PyImport_ImportModuleEx:PyObject*:locals:0:??? |
| 382 | PyImport_ImportModuleEx:PyObject*:fromlist:0:??? |
| 383 | |
Fred Drake | eb725cd | 2000-04-03 15:06:40 +0000 | [diff] [blame] | 384 | PyImport_ReloadModule:PyObject*::+1: |
Fred Drake | 805bf1b | 1999-10-20 16:03:38 +0000 | [diff] [blame] | 385 | PyImport_ReloadModule:PyObject*:m:0: |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 386 | |
Fred Drake | 5838d0f | 2001-01-28 06:39:35 +0000 | [diff] [blame] | 387 | PyInstance_New:PyObject*::+1: |
| 388 | PyInstance_New:PyObject*:klass:+1: |
| 389 | PyInstance_New:PyObject*:arg:0: |
| 390 | PyInstance_New:PyObject*:kw:0: |
| 391 | |
| 392 | PyInstance_NewRaw:PyObject*::+1: |
| 393 | PyInstance_NewRaw:PyObject*:klass:+1: |
| 394 | PyInstance_NewRaw:PyObject*:dict:+1: |
| 395 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 396 | PyInt_AS_LONG:long::: |
| 397 | PyInt_AS_LONG:PyIntObject*:io:0: |
| 398 | |
| 399 | PyInt_AsLong:long::: |
| 400 | PyInt_AsLong:PyObject*:io:0: |
| 401 | |
| 402 | PyInt_Check:int::: |
Fred Drake | 9c75ff7 | 2001-09-06 18:06:46 +0000 | [diff] [blame] | 403 | PyInt_Check:PyObject*:op:0: |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 404 | |
| 405 | PyInt_FromLong:PyObject*::+1: |
| 406 | PyInt_FromLong:long:ival:: |
| 407 | |
| 408 | PyInt_GetMax:long::: |
| 409 | |
| 410 | PyInterpreterState_Clear:void::: |
| 411 | PyInterpreterState_Clear:PyInterpreterState*:interp:: |
| 412 | |
| 413 | PyInterpreterState_Delete:void::: |
| 414 | PyInterpreterState_Delete:PyInterpreterState*:interp:: |
| 415 | |
| 416 | PyInterpreterState_New:PyInterpreterState*::: |
| 417 | |
Fred Drake | b2625eb | 2001-05-29 15:34:06 +0000 | [diff] [blame] | 418 | PyIter_Check:int:o:0: |
| 419 | |
| 420 | PyIter_Next:PyObject*::+1: |
| 421 | PyIter_Next:PyObject*:o:0: |
| 422 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 423 | PyList_Append:int::: |
| 424 | PyList_Append:PyObject*:list:0: |
| 425 | PyList_Append:PyObject*:item:+1: |
| 426 | |
| 427 | PyList_AsTuple:PyObject*::+1: |
| 428 | PyList_AsTuple:PyObject*:list:0: |
| 429 | |
| 430 | PyList_Check:int::: |
| 431 | PyList_Check:PyObject*:p:0: |
| 432 | |
| 433 | PyList_GET_ITEM:PyObject*::0: |
| 434 | PyList_GET_ITEM:PyObject*:list:0: |
| 435 | PyList_GET_ITEM:int:i:0: |
| 436 | |
| 437 | PyList_GET_SIZE:int::: |
| 438 | PyList_GET_SIZE:PyObject*:list:0: |
| 439 | |
| 440 | PyList_GetItem:PyObject*::0: |
| 441 | PyList_GetItem:PyObject*:list:0: |
| 442 | PyList_GetItem:int:index:: |
| 443 | |
| 444 | PyList_GetSlice:PyObject*::+1: |
| 445 | PyList_GetSlice:PyObject*:list:0: |
| 446 | PyList_GetSlice:int:low:: |
| 447 | PyList_GetSlice:int:high:: |
| 448 | |
| 449 | PyList_Insert:int::: |
| 450 | PyList_Insert:PyObject*:list:0: |
| 451 | PyList_Insert:int:index:: |
| 452 | PyList_Insert:PyObject*:item:+1: |
| 453 | |
| 454 | PyList_New:PyObject*::+1: |
| 455 | PyList_New:int:len:: |
| 456 | |
| 457 | PyList_Reverse:int::: |
| 458 | PyList_Reverse:PyObject*:list:0: |
| 459 | |
Fred Drake | d854831 | 2001-07-10 16:19:13 +0000 | [diff] [blame] | 460 | PyList_SET_ITEM:void::: |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 461 | PyList_SET_ITEM:PyObject*:list:0: |
| 462 | PyList_SET_ITEM:int:i:: |
| 463 | PyList_SET_ITEM:PyObject*:o:0: |
| 464 | |
| 465 | PyList_SetItem:int::: |
| 466 | PyList_SetItem:PyObject*:list:0: |
| 467 | PyList_SetItem:int:index:: |
| 468 | PyList_SetItem:PyObject*:item:0: |
| 469 | |
| 470 | PyList_SetSlice:int::: |
| 471 | PyList_SetSlice:PyObject*:list:0: |
| 472 | PyList_SetSlice:int:low:: |
| 473 | PyList_SetSlice:int:high:: |
| 474 | PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements? |
| 475 | |
| 476 | PyList_Size:int::: |
| 477 | PyList_Size:PyObject*:list:0: |
| 478 | |
| 479 | PyList_Sort:int::: |
| 480 | PyList_Sort:PyObject*:list:0: |
| 481 | |
| 482 | PyLong_AsDouble:double::: |
| 483 | PyLong_AsDouble:PyObject*:pylong:0: |
| 484 | |
| 485 | PyLong_AsLong:long::: |
| 486 | PyLong_AsLong:PyObject*:pylong:0: |
| 487 | |
| 488 | PyLong_AsUnsignedLong:unsigned long::: |
| 489 | PyLong_AsUnsignedLong:PyObject*:pylong:0: |
| 490 | |
| 491 | PyLong_Check:int::: |
| 492 | PyLong_Check:PyObject*:p:0: |
| 493 | |
| 494 | PyLong_FromDouble:PyObject*::+1: |
| 495 | PyLong_FromDouble:double:v:: |
| 496 | |
| 497 | PyLong_FromLong:PyObject*::+1: |
| 498 | PyLong_FromLong:long:v:: |
| 499 | |
Fred Drake | f47d8ef | 2001-09-20 19:18:52 +0000 | [diff] [blame] | 500 | PyLong_FromLongLong:PyObject*::+1: |
| 501 | PyLong_FromLongLong:long long:v:: |
| 502 | |
| 503 | PyLong_FromUnsignedLongLong:PyObject*::+1: |
| 504 | PyLong_FromUnsignedLongLong:unsigned long long:v:: |
| 505 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 506 | PyLong_FromString:PyObject*::+1: |
| 507 | PyLong_FromString:char*:str:: |
| 508 | PyLong_FromString:char**:pend:: |
| 509 | PyLong_FromString:int:base:: |
| 510 | |
Fred Drake | f47d8ef | 2001-09-20 19:18:52 +0000 | [diff] [blame] | 511 | PyLong_FromUnicode:PyObject*::+1: |
| 512 | PyLong_FromUnicode:Py_UNICODE:u:: |
| 513 | PyLong_FromUnicode:int:length:: |
| 514 | PyLong_FromUnicode:int:base:: |
| 515 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 516 | PyLong_FromUnsignedLong:PyObject*::+1: |
| 517 | PyLong_FromUnsignedLong:unsignedlong:v:: |
| 518 | |
Fred Drake | f47d8ef | 2001-09-20 19:18:52 +0000 | [diff] [blame] | 519 | PyLong_FromVoidPtr:PyObject*::+1: |
| 520 | PyLong_FromVoidPtr:void*:p:: |
| 521 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 522 | PyMapping_Check:int::: |
| 523 | PyMapping_Check:PyObject*:o:0: |
| 524 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 525 | PyMapping_DelItem:int::: |
| 526 | PyMapping_DelItem:PyObject*:o:0: |
| 527 | PyMapping_DelItem:PyObject*:key:0: |
| 528 | |
| 529 | PyMapping_DelItemString:int::: |
| 530 | PyMapping_DelItemString:PyObject*:o:0: |
| 531 | PyMapping_DelItemString:char*:key:: |
| 532 | |
| 533 | PyMapping_GetItemString:PyObject*::+1: |
| 534 | PyMapping_GetItemString:PyObject*:o:0: |
| 535 | PyMapping_GetItemString:char*:key:: |
| 536 | |
| 537 | PyMapping_HasKey:int::: |
| 538 | PyMapping_HasKey:PyObject*:o:0: |
| 539 | PyMapping_HasKey:PyObject*:key:: |
| 540 | |
| 541 | PyMapping_HasKeyString:int::: |
| 542 | PyMapping_HasKeyString:PyObject*:o:0: |
| 543 | PyMapping_HasKeyString:char*:key:: |
| 544 | |
| 545 | PyMapping_Items:PyObject*::+1: |
| 546 | PyMapping_Items:PyObject*:o:0: |
| 547 | |
| 548 | PyMapping_Keys:PyObject*::+1: |
| 549 | PyMapping_Keys:PyObject*:o:0: |
| 550 | |
| 551 | PyMapping_Length:int::: |
| 552 | PyMapping_Length:PyObject*:o:0: |
| 553 | |
| 554 | PyMapping_SetItemString:int::: |
| 555 | PyMapping_SetItemString:PyObject*:o:0: |
| 556 | PyMapping_SetItemString:char*:key:: |
| 557 | PyMapping_SetItemString:PyObject*:v:+1: |
| 558 | |
| 559 | PyMapping_Values:PyObject*::+1: |
| 560 | PyMapping_Values:PyObject*:o:0: |
| 561 | |
Fred Drake | 1b58bff | 2001-10-29 17:43:14 +0000 | [diff] [blame] | 562 | PyMarshal_ReadLastObjectFromFile:PyObject*::+1: |
| 563 | PyMarshal_ReadLastObjectFromFile:FILE*:file:: |
| 564 | |
| 565 | PyMarshal_ReadObjectFromFile:PyObject*::+1: |
| 566 | PyMarshal_ReadObjectFromFile:FILE*:file:: |
| 567 | |
| 568 | PyMarshal_ReadObjectFromString:PyObject*::+1: |
| 569 | PyMarshal_ReadObjectFromString:char*:string:: |
| 570 | PyMarshal_ReadObjectFromString:int:len:: |
| 571 | |
| 572 | PyMarshal_WriteObjectToString:PyObject*::+1: |
| 573 | PyMarshal_WriteObjectToString:PyObject*:value:0: |
| 574 | |
Fred Drake | 9c75ff7 | 2001-09-06 18:06:46 +0000 | [diff] [blame] | 575 | PyMethod_Class:PyObject*::0: |
| 576 | PyMethod_Class:PyObject*:im:0: |
| 577 | |
| 578 | PyMethod_Function:PyObject*::0: |
| 579 | PyMethod_Function:PyObject*:im:0: |
| 580 | |
| 581 | PyMethod_GET_CLASS:PyObject*::0: |
| 582 | PyMethod_GET_CLASS:PyObject*:im:0: |
| 583 | |
| 584 | PyMethod_GET_FUNCTION:PyObject*::0: |
| 585 | PyMethod_GET_FUNCTION:PyObject*:im:0: |
| 586 | |
| 587 | PyMethod_GET_SELF:PyObject*::0: |
| 588 | PyMethod_GET_SELF:PyObject*:im:0: |
| 589 | |
| 590 | PyMethod_New:PyObject*::+1: |
| 591 | PyMethod_New:PyObject*:func:0: |
| 592 | PyMethod_New:PyObject*:self:0: |
| 593 | PyMethod_New:PyObject*:class:0: |
| 594 | |
| 595 | PyMethod_Self:PyObject*::0: |
| 596 | PyMethod_Self:PyObject*:im:0: |
| 597 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 598 | PyModule_GetDict:PyObject*::0: |
| 599 | PyModule_GetDict::PyObject* module:0: |
| 600 | |
| 601 | PyModule_GetFilename:char*::: |
| 602 | PyModule_GetFilename:PyObject*:module:0: |
| 603 | |
| 604 | PyModule_GetName:char*::: |
| 605 | PyModule_GetName:PyObject*:module:0: |
| 606 | |
| 607 | PyModule_New:PyObject*::+1: |
| 608 | PyModule_New::char* name:: |
| 609 | |
| 610 | PyNumber_Absolute:PyObject*::+1: |
| 611 | PyNumber_Absolute:PyObject*:o:0: |
| 612 | |
| 613 | PyNumber_Add:PyObject*::+1: |
| 614 | PyNumber_Add:PyObject*:o1:0: |
| 615 | PyNumber_Add:PyObject*:o2:0: |
| 616 | |
| 617 | PyNumber_And:PyObject*::+1: |
| 618 | PyNumber_And:PyObject*:o1:0: |
| 619 | PyNumber_And:PyObject*:o2:0: |
| 620 | |
| 621 | PyNumber_Check:PyObject*:o:0: |
| 622 | PyNumber_Check:int::: |
| 623 | |
| 624 | PyNumber_Coerce:int::: |
| 625 | PyNumber_Coerce:PyObject**:p1:+1: |
| 626 | PyNumber_Coerce:PyObject**:p2:+1: |
| 627 | |
| 628 | PyNumber_Divide:PyObject*::+1: |
| 629 | PyNumber_Divide:PyObject*:o1:0: |
| 630 | PyNumber_Divide:PyObject*:o2:0: |
| 631 | |
| 632 | PyNumber_Divmod:PyObject*::+1: |
| 633 | PyNumber_Divmod:PyObject*:o1:0: |
| 634 | PyNumber_Divmod:PyObject*:o2:0: |
| 635 | |
| 636 | PyNumber_Float:PyObject*::+1: |
| 637 | PyNumber_Float:PyObject*:o:0: |
| 638 | |
Fred Drake | 03590c6 | 2001-08-08 18:50:18 +0000 | [diff] [blame] | 639 | PyNumber_FloorDivide:PyObject*::+1: |
| 640 | PyNumber_FloorDivide:PyObject*:v:0: |
| 641 | PyNumber_FloorDivide:PyObject*:w:0: |
| 642 | |
Fred Drake | 1fa9365 | 2000-09-22 18:19:37 +0000 | [diff] [blame] | 643 | PyNumber_InPlaceAdd:PyObject*::+1: |
| 644 | PyNumber_InPlaceAdd:PyObject*:v:0: |
| 645 | PyNumber_InPlaceAdd:PyObject*:w:0: |
| 646 | |
| 647 | PyNumber_InPlaceAnd:PyObject*::+1: |
| 648 | PyNumber_InPlaceAnd:PyObject*:v:0: |
| 649 | PyNumber_InPlaceAnd:PyObject*:w:0: |
| 650 | |
| 651 | PyNumber_InPlaceDivide:PyObject*::+1: |
| 652 | PyNumber_InPlaceDivide:PyObject*:v:0: |
| 653 | PyNumber_InPlaceDivide:PyObject*:w:0: |
| 654 | |
Fred Drake | 03590c6 | 2001-08-08 18:50:18 +0000 | [diff] [blame] | 655 | PyNumber_InPlaceFloorDivide:PyObject*::+1: |
| 656 | PyNumber_InPlaceFloorDivide:PyObject*:v:0: |
| 657 | PyNumber_InPlaceFloorDivide:PyObject*:w:0: |
| 658 | |
Fred Drake | 1fa9365 | 2000-09-22 18:19:37 +0000 | [diff] [blame] | 659 | PyNumber_InPlaceLshift:PyObject*::+1: |
| 660 | PyNumber_InPlaceLshift:PyObject*:v:0: |
| 661 | PyNumber_InPlaceLshift:PyObject*:w:0: |
| 662 | |
| 663 | PyNumber_InPlaceMultiply:PyObject*::+1: |
| 664 | PyNumber_InPlaceMultiply:PyObject*:v:0: |
| 665 | PyNumber_InPlaceMultiply:PyObject*:w:0: |
| 666 | |
| 667 | PyNumber_InPlaceOr:PyObject*::+1: |
| 668 | PyNumber_InPlaceOr:PyObject*:v:0: |
| 669 | PyNumber_InPlaceOr:PyObject*:w:0: |
| 670 | |
| 671 | PyNumber_InPlacePower:PyObject*::+1: |
| 672 | PyNumber_InPlacePower:PyObject*:v:0: |
| 673 | PyNumber_InPlacePower:PyObject*:w:0: |
| 674 | PyNumber_InPlacePower:PyObject*:z:0: |
| 675 | |
| 676 | PyNumber_InPlaceRemainder:PyObject*::+1: |
| 677 | PyNumber_InPlaceRemainder:PyObject*:v:0: |
| 678 | PyNumber_InPlaceRemainder:PyObject*:w:0: |
| 679 | |
| 680 | PyNumber_InPlaceRshift:PyObject*::+1: |
| 681 | PyNumber_InPlaceRshift:PyObject*:v:0: |
| 682 | PyNumber_InPlaceRshift:PyObject*:w:0: |
| 683 | |
| 684 | PyNumber_InPlaceSubtract:PyObject*::+1: |
| 685 | PyNumber_InPlaceSubtract:PyObject*:v:0: |
| 686 | PyNumber_InPlaceSubtract:PyObject*:w:0: |
| 687 | |
Fred Drake | 03590c6 | 2001-08-08 18:50:18 +0000 | [diff] [blame] | 688 | PyNumber_InPlaceTrueDivide:PyObject*::+1: |
| 689 | PyNumber_InPlaceTrueDivide:PyObject*:v:0: |
| 690 | PyNumber_InPlaceTrueDivide:PyObject*:w:0: |
| 691 | |
Fred Drake | 1fa9365 | 2000-09-22 18:19:37 +0000 | [diff] [blame] | 692 | PyNumber_InPlaceXor:PyObject*::+1: |
| 693 | PyNumber_InPlaceXor:PyObject*:v:0: |
| 694 | PyNumber_InPlaceXor:PyObject*:w:0: |
| 695 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 696 | PyNumber_Int:PyObject*::+1: |
| 697 | PyNumber_Int:PyObject*:o:0: |
| 698 | |
| 699 | PyNumber_Invert:PyObject*::+1: |
| 700 | PyNumber_Invert:PyObject*:o:0: |
| 701 | |
| 702 | PyNumber_Long:PyObject*::+1: |
| 703 | PyNumber_Long:PyObject*:o:0: |
| 704 | |
| 705 | PyNumber_Lshift:PyObject*::+1: |
| 706 | PyNumber_Lshift:PyObject*:o1:0: |
| 707 | PyNumber_Lshift:PyObject*:o2:0: |
| 708 | |
| 709 | PyNumber_Multiply:PyObject*::+1: |
| 710 | PyNumber_Multiply:PyObject*:o1:0: |
| 711 | PyNumber_Multiply:PyObject*:o2:0: |
| 712 | |
| 713 | PyNumber_Negative:PyObject*::+1: |
| 714 | PyNumber_Negative:PyObject*:o:0: |
| 715 | |
| 716 | PyNumber_Or:PyObject*::+1: |
| 717 | PyNumber_Or:PyObject*:o1:0: |
| 718 | PyNumber_Or:PyObject*:o2:0: |
| 719 | |
| 720 | PyNumber_Positive:PyObject*::+1: |
| 721 | PyNumber_Positive:PyObject*:o:0: |
| 722 | |
| 723 | PyNumber_Power:PyObject*::+1: |
| 724 | PyNumber_Power:PyObject*:o1:0: |
| 725 | PyNumber_Power:PyObject*:o2:0: |
| 726 | PyNumber_Power:PyObject*:o3:0: |
| 727 | |
| 728 | PyNumber_Remainder:PyObject*::+1: |
| 729 | PyNumber_Remainder:PyObject*:o1:0: |
| 730 | PyNumber_Remainder:PyObject*:o2:0: |
| 731 | |
| 732 | PyNumber_Rshift:PyObject*::+1: |
| 733 | PyNumber_Rshift:PyObject*:o1:0: |
| 734 | PyNumber_Rshift:PyObject*:o2:0: |
| 735 | |
| 736 | PyNumber_Subtract:PyObject*::+1: |
| 737 | PyNumber_Subtract:PyObject*:o1:0: |
| 738 | PyNumber_Subtract:PyObject*:o2:0: |
| 739 | |
Fred Drake | 03590c6 | 2001-08-08 18:50:18 +0000 | [diff] [blame] | 740 | PyNumber_TrueDivide:PyObject*::+1: |
| 741 | PyNumber_TrueDivide:PyObject*:v:0: |
| 742 | PyNumber_TrueDivide:PyObject*:w:0: |
| 743 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 744 | PyNumber_Xor:PyObject*::+1: |
| 745 | PyNumber_Xor:PyObject*:o1:0: |
| 746 | PyNumber_Xor:PyObject*:o2:0: |
| 747 | |
| 748 | PyOS_GetLastModificationTime:long::: |
| 749 | PyOS_GetLastModificationTime:char*:filename:: |
| 750 | |
Andrew M. Kuchling | 8c46b30 | 2000-07-13 23:58:16 +0000 | [diff] [blame] | 751 | PyObject_AsFileDescriptor:int::: |
| 752 | PyObject_AsFileDescriptor:PyObject*:o:0: |
| 753 | |
Fredrik Lundh | 118be0c | 2005-12-18 19:39:59 +0000 | [diff] [blame] | 754 | PyObject_Call:PyObject*::+1: |
| 755 | PyObject_Call:PyObject*:callable_object:0: |
| 756 | PyObject_Call:PyObject*:args:0: |
| 757 | PyObject_Call:PyObject*:kw:0: |
| 758 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 759 | PyObject_CallFunction:PyObject*::+1: |
| 760 | PyObject_CallFunction:PyObject*:callable_object:0: |
| 761 | PyObject_CallFunction:char*:format:: |
| 762 | PyObject_CallFunction::...:: |
| 763 | |
Fred Drake | b0c079e | 2001-10-28 02:39:03 +0000 | [diff] [blame] | 764 | PyObject_CallFunctionObjArgs:PyObject*::+1: |
| 765 | PyObject_CallFunctionObjArgs:PyObject*:callable:0: |
| 766 | PyObject_CallFunctionObjArgs::...:: |
Fred Drake | 81c7aa2 | 2001-10-26 16:29:22 +0000 | [diff] [blame] | 767 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 768 | PyObject_CallMethod:PyObject*::+1: |
| 769 | PyObject_CallMethod:PyObject*:o:0: |
| 770 | PyObject_CallMethod:char*:m:: |
| 771 | PyObject_CallMethod:char*:format:: |
| 772 | PyObject_CallMethod::...:: |
| 773 | |
Fred Drake | b0c079e | 2001-10-28 02:39:03 +0000 | [diff] [blame] | 774 | PyObject_CallMethodObjArgs:PyObject*::+1: |
| 775 | PyObject_CallMethodObjArgs:PyObject*:o:0: |
| 776 | PyObject_CallMethodObjArgs:char*:name:: |
| 777 | PyObject_CallMethodObjArgs::...:: |
Fred Drake | 81c7aa2 | 2001-10-26 16:29:22 +0000 | [diff] [blame] | 778 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 779 | PyObject_CallObject:PyObject*::+1: |
| 780 | PyObject_CallObject:PyObject*:callable_object:0: |
| 781 | PyObject_CallObject:PyObject*:args:0: |
| 782 | |
| 783 | PyObject_Cmp:int::: |
| 784 | PyObject_Cmp:PyObject*:o1:0: |
| 785 | PyObject_Cmp:PyObject*:o2:0: |
| 786 | PyObject_Cmp:int*:result:: |
| 787 | |
| 788 | PyObject_Compare:int::: |
| 789 | PyObject_Compare:PyObject*:o1:0: |
| 790 | PyObject_Compare:PyObject*:o2:0: |
| 791 | |
| 792 | PyObject_DelAttr:int::: |
| 793 | PyObject_DelAttr:PyObject*:o:0: |
| 794 | PyObject_DelAttr:PyObject*:attr_name:0: |
| 795 | |
| 796 | PyObject_DelAttrString:int::: |
| 797 | PyObject_DelAttrString:PyObject*:o:0: |
| 798 | PyObject_DelAttrString:char*:attr_name:: |
| 799 | |
| 800 | PyObject_DelItem:int::: |
| 801 | PyObject_DelItem:PyObject*:o:0: |
| 802 | PyObject_DelItem:PyObject*:key:0: |
| 803 | |
Fred Drake | 9c75ff7 | 2001-09-06 18:06:46 +0000 | [diff] [blame] | 804 | PyObject_Dir:PyObject*::+1: |
| 805 | PyObject_Dir:PyObject*:o:0: |
| 806 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 807 | PyObject_GetAttr:PyObject*::+1: |
| 808 | PyObject_GetAttr:PyObject*:o:0: |
| 809 | PyObject_GetAttr:PyObject*:attr_name:0: |
| 810 | |
| 811 | PyObject_GetAttrString:PyObject*::+1: |
| 812 | PyObject_GetAttrString:PyObject*:o:0: |
| 813 | PyObject_GetAttrString:char*:attr_name:: |
| 814 | |
| 815 | PyObject_GetItem:PyObject*::+1: |
| 816 | PyObject_GetItem:PyObject*:o:0: |
| 817 | PyObject_GetItem:PyObject*:key:0: |
| 818 | |
Fred Drake | b915a38 | 2002-10-04 18:58:58 +0000 | [diff] [blame] | 819 | PyObject_GetIter:PyObject*::+1: |
| 820 | PyObject_GetIter:PyObject*:o:0: |
| 821 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 822 | PyObject_HasAttr:int::: |
| 823 | PyObject_HasAttr:PyObject*:o:0: |
| 824 | PyObject_HasAttr:PyObject*:attr_name:0: |
| 825 | |
| 826 | PyObject_HasAttrString:int::: |
| 827 | PyObject_HasAttrString:PyObject*:o:0: |
| 828 | PyObject_HasAttrString:char*:attr_name:0: |
| 829 | |
| 830 | PyObject_Hash:int::: |
| 831 | PyObject_Hash:PyObject*:o:0: |
| 832 | |
| 833 | PyObject_IsTrue:int::: |
| 834 | PyObject_IsTrue:PyObject*:o:0: |
| 835 | |
Fred Drake | f913e54 | 2000-09-12 20:17:17 +0000 | [diff] [blame] | 836 | PyObject_Init:PyObject*::0: |
| 837 | PyObject_Init:PyObject*:op:0: |
| 838 | |
| 839 | PyObject_InitVar:PyVarObject*::0: |
| 840 | PyObject_InitVar:PyVarObject*:op:0: |
| 841 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 842 | PyObject_Length:int::: |
| 843 | PyObject_Length:PyObject*:o:0: |
| 844 | |
Fred Drake | 8e0c09d | 2001-07-06 23:31:49 +0000 | [diff] [blame] | 845 | PyObject_NEW:PyObject*::+1: |
| 846 | |
| 847 | PyObject_New:PyObject*::+1: |
| 848 | |
| 849 | PyObject_NEW_VAR:PyObject*::+1: |
| 850 | |
| 851 | PyObject_NewVar:PyObject*::+1: |
| 852 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 853 | PyObject_Print:int::: |
| 854 | PyObject_Print:PyObject*:o:0: |
| 855 | PyObject_Print:FILE*:fp:: |
| 856 | PyObject_Print:int:flags:: |
| 857 | |
| 858 | PyObject_Repr:PyObject*::+1: |
| 859 | PyObject_Repr:PyObject*:o:0: |
| 860 | |
Fred Drake | a0c5e9f | 2002-06-14 14:35:56 +0000 | [diff] [blame] | 861 | PyObject_RichCompare:PyObject*::+1: |
| 862 | PyObject_RichCompare:PyObject*:o1:0: |
| 863 | PyObject_RichCompare:PyObject*:o2:0: |
| 864 | PyObject_RichCompare:int:opid:: |
| 865 | |
| 866 | PyObject_RichCompareBool:int::: |
| 867 | PyObject_RichCompareBool:PyObject*:o1:0: |
| 868 | PyObject_RichCompareBool:PyObject*:o2:0: |
| 869 | PyObject_RichCompareBool:int:opid:: |
| 870 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 871 | PyObject_SetAttr:int::: |
| 872 | PyObject_SetAttr:PyObject*:o:0: |
| 873 | PyObject_SetAttr:PyObject*:attr_name:0: |
| 874 | PyObject_SetAttr:PyObject*:v:+1: |
| 875 | |
| 876 | PyObject_SetAttrString:int::: |
| 877 | PyObject_SetAttrString:PyObject*:o:0: |
| 878 | PyObject_SetAttrString:char*:attr_name:: |
| 879 | PyObject_SetAttrString:PyObject*:v:+1: |
| 880 | |
| 881 | PyObject_SetItem:int::: |
| 882 | PyObject_SetItem:PyObject*:o:0: |
| 883 | PyObject_SetItem:PyObject*:key:0: |
| 884 | PyObject_SetItem:PyObject*:v:+1: |
| 885 | |
| 886 | PyObject_Str:PyObject*::+1: |
| 887 | PyObject_Str:PyObject*:o:0: |
| 888 | |
| 889 | PyObject_Type:PyObject*::+1: |
| 890 | PyObject_Type:PyObject*:o:0: |
| 891 | |
Fred Drake | b2625eb | 2001-05-29 15:34:06 +0000 | [diff] [blame] | 892 | PyObject_Unicode:PyObject*::+1: |
| 893 | PyObject_Unicode:PyObject*:o:0: |
| 894 | |
Fred Drake | 805bf1b | 1999-10-20 16:03:38 +0000 | [diff] [blame] | 895 | PyParser_SimpleParseFile:struct _node*::: |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 896 | PyParser_SimpleParseFile:FILE*:fp:: |
| 897 | PyParser_SimpleParseFile:char*:filename:: |
| 898 | PyParser_SimpleParseFile:int:start:: |
| 899 | |
Fred Drake | 805bf1b | 1999-10-20 16:03:38 +0000 | [diff] [blame] | 900 | PyParser_SimpleParseString:struct _node*::: |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 901 | PyParser_SimpleParseString:char*:str:: |
| 902 | PyParser_SimpleParseString:int:start:: |
| 903 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 904 | PyRun_AnyFile:int::: |
| 905 | PyRun_AnyFile:FILE*:fp:: |
| 906 | PyRun_AnyFile:char*:filename:: |
| 907 | |
Fred Drake | 4ca744c | 2000-08-12 03:39:47 +0000 | [diff] [blame] | 908 | PyRun_File:PyObject*::+1:??? -- same as eval_code2() |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 909 | PyRun_File:FILE*:fp:: |
| 910 | PyRun_File:char*:filename:: |
| 911 | PyRun_File:int:start:: |
| 912 | PyRun_File:PyObject*:globals:0: |
| 913 | PyRun_File:PyObject*:locals:0: |
| 914 | |
| 915 | PyRun_InteractiveLoop:int::: |
| 916 | PyRun_InteractiveLoop:FILE*:fp:: |
| 917 | PyRun_InteractiveLoop:char*:filename:: |
| 918 | |
| 919 | PyRun_InteractiveOne:int::: |
| 920 | PyRun_InteractiveOne:FILE*:fp:: |
| 921 | PyRun_InteractiveOne:char*:filename:: |
| 922 | |
| 923 | PyRun_SimpleFile:int::: |
| 924 | PyRun_SimpleFile:FILE*:fp:: |
| 925 | PyRun_SimpleFile:char*:filename:: |
| 926 | |
| 927 | PyRun_SimpleString:int::: |
| 928 | PyRun_SimpleString:char*:command:: |
| 929 | |
Fred Drake | 4ca744c | 2000-08-12 03:39:47 +0000 | [diff] [blame] | 930 | PyRun_String:PyObject*::+1:??? -- same as eval_code2() |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 931 | PyRun_String:char*:str:: |
| 932 | PyRun_String:int:start:: |
| 933 | PyRun_String:PyObject*:globals:0: |
| 934 | PyRun_String:PyObject*:locals:0: |
| 935 | |
Fred Drake | d61d0d3 | 2001-09-23 02:05:26 +0000 | [diff] [blame] | 936 | PySeqIter_New:PyObject*::+1: |
| 937 | PySeqIter_New:PyObject*:seq:: |
| 938 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 939 | PySequence_Check:int::: |
| 940 | PySequence_Check:PyObject*:o:0: |
| 941 | |
| 942 | PySequence_Concat:PyObject*::+1: |
| 943 | PySequence_Concat:PyObject*:o1:0: |
| 944 | PySequence_Concat:PyObject*:o2:0: |
| 945 | |
| 946 | PySequence_Count:int::: |
| 947 | PySequence_Count:PyObject*:o:0: |
| 948 | PySequence_Count:PyObject*:value:0: |
| 949 | |
| 950 | PySequence_DelItem:int::: |
| 951 | PySequence_DelItem:PyObject*:o:0: |
| 952 | PySequence_DelItem:int:i:: |
| 953 | |
| 954 | PySequence_DelSlice:int::: |
| 955 | PySequence_DelSlice:PyObject*:o:0: |
| 956 | PySequence_DelSlice:int:i1:: |
| 957 | PySequence_DelSlice:int:i2:: |
| 958 | |
Fred Drake | 81cccb7 | 2000-09-12 15:22:05 +0000 | [diff] [blame] | 959 | PySequence_Fast:PyObject*::+1: |
| 960 | PySequence_Fast:PyObject*:v:0: |
| 961 | PySequence_Fast:const char*:m:: |
| 962 | |
| 963 | PySequence_Fast_GET_ITEM:PyObject*::0: |
| 964 | PySequence_Fast_GET_ITEM:PyObject*:o:0: |
| 965 | PySequence_Fast_GET_ITEM:int:i:: |
| 966 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 967 | PySequence_GetItem:PyObject*::+1: |
| 968 | PySequence_GetItem:PyObject*:o:0: |
| 969 | PySequence_GetItem:int:i:: |
| 970 | |
| 971 | PySequence_GetSlice:PyObject*::+1: |
| 972 | PySequence_GetSlice:PyObject*:o:0: |
| 973 | PySequence_GetSlice:int:i1:: |
| 974 | PySequence_GetSlice:int:i2:: |
| 975 | |
| 976 | PySequence_In:int::: |
| 977 | PySequence_In:PyObject*:o:0: |
| 978 | PySequence_In:PyObject*:value:0: |
| 979 | |
| 980 | PySequence_Index:int::: |
| 981 | PySequence_Index:PyObject*:o:0: |
| 982 | PySequence_Index:PyObject*:value:0: |
| 983 | |
Fred Drake | 1fa9365 | 2000-09-22 18:19:37 +0000 | [diff] [blame] | 984 | PySequence_InPlaceConcat:PyObject*::+1: |
| 985 | PySequence_InPlaceConcat:PyObject*:s:0: |
| 986 | PySequence_InPlaceConcat:PyObject*:o:0: |
| 987 | |
| 988 | PySequence_InPlaceRepeat:PyObject*::+1: |
| 989 | PySequence_InPlaceRepeat:PyObject*:s:0: |
| 990 | PySequence_InPlaceRepeat:PyObject*:o:0: |
| 991 | |
Fred Drake | ffb294b | 2002-05-23 16:03:16 +0000 | [diff] [blame] | 992 | PySequence_ITEM:PyObject*::+1: |
| 993 | PySequence_ITEM:PyObject*:o:0: |
| 994 | PySequence_ITEM:int:i:: |
| 995 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 996 | PySequence_Repeat:PyObject*::+1: |
| 997 | PySequence_Repeat:PyObject*:o:0: |
| 998 | PySequence_Repeat:int:count:: |
| 999 | |
| 1000 | PySequence_SetItem:int::: |
| 1001 | PySequence_SetItem:PyObject*:o:0: |
| 1002 | PySequence_SetItem:int:i:: |
| 1003 | PySequence_SetItem:PyObject*:v:+1: |
| 1004 | |
| 1005 | PySequence_SetSlice:int::: |
| 1006 | PySequence_SetSlice:PyObject*:o:0: |
| 1007 | PySequence_SetSlice:int:i1:: |
| 1008 | PySequence_SetSlice:int:i2:: |
| 1009 | PySequence_SetSlice:PyObject*:v:+1: |
| 1010 | |
Fred Drake | 1c2d06a | 2000-06-16 20:00:04 +0000 | [diff] [blame] | 1011 | PySequence_List:PyObject*::+1: |
| 1012 | PySequence_List:PyObject*:o:0: |
| 1013 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 1014 | PySequence_Tuple:PyObject*::+1: |
| 1015 | PySequence_Tuple:PyObject*:o:0: |
| 1016 | |
Raymond Hettinger | 0cbf400 | 2005-08-20 23:52:30 +0000 | [diff] [blame] | 1017 | PySet_Append:int::: |
| 1018 | PySet_Append:PyObject*:set:0: |
| 1019 | PySet_Append:PyObject*:key:+1: |
| 1020 | |
| 1021 | PySet_Contains:int::: |
| 1022 | PySet_Contains:PyObject*:anyset:0: |
| 1023 | PySet_Contains:PyObject*:key:0: |
| 1024 | |
| 1025 | PySet_Discard:int::: |
| 1026 | PySet_Discard:PyObject*:set:0: |
| 1027 | PySet_Discard:PyObject*:key:-1:no effect if key not found |
| 1028 | |
Raymond Hettinger | 7638249 | 2005-08-21 00:08:36 +0000 | [diff] [blame] | 1029 | PySet_Pop:PyObject*::0:or returns NULL and raises KeyError if set is empty |
Raymond Hettinger | 0cbf400 | 2005-08-20 23:52:30 +0000 | [diff] [blame] | 1030 | PySet_Pop:PyObject*:set:0: |
Raymond Hettinger | 0cbf400 | 2005-08-20 23:52:30 +0000 | [diff] [blame] | 1031 | |
| 1032 | PySet_Size:int::: |
| 1033 | PySet_Size:PyObject*:anyset:0: |
| 1034 | |
Fred Drake | 23a78cf | 2001-09-24 15:29:47 +0000 | [diff] [blame] | 1035 | PySlice_Check:int::: |
| 1036 | PySlice_Check:PyObject*:ob:0: |
| 1037 | |
| 1038 | PySlice_New:PyObject*::+1: |
| 1039 | PySlice_New:PyObject*:start:0: |
| 1040 | PySlice_New:PyObject*:stop:0: |
| 1041 | PySlice_New:PyObject*:step:0: |
| 1042 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 1043 | PyString_AS_STRING:char*::: |
| 1044 | PyString_AS_STRING:PyObject*:string:0: |
| 1045 | |
Fred Drake | b2625eb | 2001-05-29 15:34:06 +0000 | [diff] [blame] | 1046 | PyString_AsDecodedObject:PyObject*::+1: |
| 1047 | PyString_AsDecodedObject:PyObject*:str:0: |
| 1048 | PyString_AsDecodedObject:const char*:encoding:: |
| 1049 | PyString_AsDecodedObject:const char*:errors:: |
| 1050 | |
| 1051 | PyString_AsEncodedObject:PyObject*::+1: |
| 1052 | PyString_AsEncodedObject:PyObject*:str:0: |
| 1053 | PyString_AsEncodedObject:const char*:encoding:: |
| 1054 | PyString_AsEncodedObject:const char*:errors:: |
| 1055 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 1056 | PyString_AsString:char*::: |
| 1057 | PyString_AsString:PyObject*:string:0: |
| 1058 | |
Marc-André Lemburg | d1ba443 | 2000-09-19 21:04:18 +0000 | [diff] [blame] | 1059 | PyString_AsStringAndSize:int::: |
| 1060 | PyString_AsStringAndSize:PyObject*:obj:0: |
| 1061 | PyString_AsStringAndSize:char**:buffer:: |
| 1062 | PyString_AsStringAndSize:int*:length:: |
| 1063 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 1064 | PyString_Check:int::: |
| 1065 | PyString_Check:PyObject*:o:0: |
| 1066 | |
| 1067 | PyString_Concat:void::: |
Fred Drake | 805bf1b | 1999-10-20 16:03:38 +0000 | [diff] [blame] | 1068 | PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 1069 | PyString_Concat:PyObject*:newpart:0: |
| 1070 | |
| 1071 | PyString_ConcatAndDel:void::: |
Fred Drake | 805bf1b | 1999-10-20 16:03:38 +0000 | [diff] [blame] | 1072 | PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 1073 | PyString_ConcatAndDel:PyObject*:newpart:-1: |
| 1074 | |
| 1075 | PyString_Format:PyObject*::+1: |
| 1076 | PyString_Format:PyObject*:format:0: |
| 1077 | PyString_Format:PyObject*:args:0: |
| 1078 | |
| 1079 | PyString_FromString:PyObject*::+1: |
| 1080 | PyString_FromString:const char*:v:: |
| 1081 | |
| 1082 | PyString_FromStringAndSize:PyObject*::+1: |
| 1083 | PyString_FromStringAndSize:const char*:v:: |
| 1084 | PyString_FromStringAndSize:int:len:: |
| 1085 | |
Barry Warsaw | 8c64a54 | 2001-08-28 02:32:04 +0000 | [diff] [blame] | 1086 | PyString_FromFormat:PyObject*::+1: |
| 1087 | PyString_FromFormat:const char*:format:: |
| 1088 | PyString_FromFormat::...:: |
| 1089 | |
| 1090 | PyString_FromFormatV:PyObject*::+1: |
| 1091 | PyString_FromFormatV:const char*:format:: |
| 1092 | PyString_FromFormatV:va_list:vargs:: |
| 1093 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 1094 | PyString_GET_SIZE:int::: |
| 1095 | PyString_GET_SIZE:PyObject*:string:0: |
| 1096 | |
| 1097 | PyString_InternFromString:PyObject*::+1: |
| 1098 | PyString_InternFromString:const char*:v:: |
| 1099 | |
| 1100 | PyString_InternInPlace:void::: |
| 1101 | PyString_InternInPlace:PyObject**:string:+1:??? |
| 1102 | |
| 1103 | PyString_Size:int::: |
| 1104 | PyString_Size:PyObject*:string:0: |
| 1105 | |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1106 | PyString_Decode:PyObject*::+1: |
| 1107 | PyString_Decode:const char*:s:: |
| 1108 | PyString_Decode:int:size:: |
| 1109 | PyString_Decode:const char*:encoding:: |
| 1110 | PyString_Decode:const char*:errors:: |
| 1111 | |
| 1112 | PyString_Encode:PyObject*::+1: |
| 1113 | PyString_Encode:const char*:s:: |
| 1114 | PyString_Encode:int:size:: |
| 1115 | PyString_Encode:const char*:encoding:: |
| 1116 | PyString_Encode:const char*:errors:: |
| 1117 | |
| 1118 | PyString_AsEncodedString:PyObject*::+1: |
| 1119 | PyString_AsEncodedString:PyObject*:str:: |
| 1120 | PyString_AsEncodedString:const char*:encoding:: |
| 1121 | PyString_AsEncodedString:const char*:errors:: |
| 1122 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 1123 | PySys_SetArgv:int::: |
| 1124 | PySys_SetArgv:int:argc:: |
| 1125 | PySys_SetArgv:char**:argv:: |
| 1126 | |
| 1127 | PyThreadState_Clear:void::: |
| 1128 | PyThreadState_Clear:PyThreadState*:tstate:: |
| 1129 | |
| 1130 | PyThreadState_Delete:void::: |
| 1131 | PyThreadState_Delete:PyThreadState*:tstate:: |
| 1132 | |
| 1133 | PyThreadState_Get:PyThreadState*::: |
| 1134 | |
Fred Drake | b2625eb | 2001-05-29 15:34:06 +0000 | [diff] [blame] | 1135 | PyThreadState_GetDict:PyObject*::0: |
| 1136 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 1137 | PyThreadState_New:PyThreadState*::: |
| 1138 | PyThreadState_New:PyInterpreterState*:interp:: |
| 1139 | |
| 1140 | PyThreadState_Swap:PyThreadState*::: |
| 1141 | PyThreadState_Swap:PyThreadState*:tstate:: |
| 1142 | |
| 1143 | PyTuple_Check:int::: |
| 1144 | PyTuple_Check:PyObject*:p:0: |
| 1145 | |
| 1146 | PyTuple_GET_ITEM:PyObject*::0: |
| 1147 | PyTuple_GET_ITEM:PyTupleObject*:p:0: |
| 1148 | PyTuple_GET_ITEM:int:pos:: |
| 1149 | |
| 1150 | PyTuple_GetItem:PyObject*::0: |
| 1151 | PyTuple_GetItem:PyTupleObject*:p:0: |
| 1152 | PyTuple_GetItem:int:pos:: |
| 1153 | |
| 1154 | PyTuple_GetSlice:PyObject*::+1: |
| 1155 | PyTuple_GetSlice:PyTupleObject*:p:0: |
| 1156 | PyTuple_GetSlice:int:low:: |
| 1157 | PyTuple_GetSlice:int:high:: |
| 1158 | |
| 1159 | PyTuple_New:PyObject*::+1: |
| 1160 | PyTuple_New:int:len:: |
| 1161 | |
| 1162 | PyTuple_SET_ITEM:void::: |
| 1163 | PyTuple_SET_ITEM:PyTupleObject*:p:0: |
| 1164 | PyTuple_SET_ITEM:int:pos:: |
| 1165 | PyTuple_SET_ITEM:PyObject*:o:0: |
| 1166 | |
| 1167 | PyTuple_SetItem:int::: |
| 1168 | PyTuple_SetItem:PyTupleObject*:p:0: |
| 1169 | PyTuple_SetItem:int:pos:: |
| 1170 | PyTuple_SetItem:PyObject*:o:0: |
| 1171 | |
| 1172 | PyTuple_Size:int::: |
| 1173 | PyTuple_Size:PyTupleObject*:p:0: |
| 1174 | |
Fred Drake | 1b58bff | 2001-10-29 17:43:14 +0000 | [diff] [blame] | 1175 | PyType_GenericAlloc:PyObject*::+1: |
| 1176 | PyType_GenericAlloc:PyObject*:type:0: |
| 1177 | PyType_GenericAlloc:int:nitems:0: |
| 1178 | |
| 1179 | PyType_GenericNew:PyObject*::+1: |
| 1180 | PyType_GenericNew:PyObject*:type:0: |
| 1181 | PyType_GenericNew:PyObject*:args:0: |
| 1182 | PyType_GenericNew:PyObject*:kwds:0: |
| 1183 | |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1184 | PyUnicode_Check:int::: |
| 1185 | PyUnicode_Check:PyObject*:o:0: |
| 1186 | |
| 1187 | PyUnicode_GET_SIZE:int::: |
| 1188 | PyUnicode_GET_SIZE:PyObject*:o:0: |
| 1189 | |
| 1190 | PyUnicode_GET_DATA_SIZE:int::: |
| 1191 | PyUnicode_GET_DATA_SIZE:PyObject*:o:0: |
| 1192 | |
| 1193 | PyUnicode_AS_UNICODE:Py_UNICODE*::: |
| 1194 | PyUnicode_AS_UNICODE:PyObject*:o:0: |
| 1195 | |
| 1196 | PyUnicode_AS_DATA:const char*::: |
| 1197 | PyUnicode_AS_DATA:PyObject*:o:0: |
| 1198 | |
| 1199 | Py_UNICODE_ISSPACE:int::: |
| 1200 | Py_UNICODE_ISSPACE:Py_UNICODE:ch:: |
| 1201 | |
| 1202 | Py_UNICODE_ISLOWER:int::: |
| 1203 | Py_UNICODE_ISLOWER:Py_UNICODE:ch:: |
| 1204 | |
| 1205 | Py_UNICODE_ISUPPER:int::: |
| 1206 | Py_UNICODE_ISUPPER:Py_UNICODE:ch:: |
| 1207 | |
| 1208 | Py_UNICODE_ISTITLE:int::: |
| 1209 | Py_UNICODE_ISTITLE:Py_UNICODE:ch:: |
| 1210 | |
| 1211 | Py_UNICODE_ISLINEBREAK:int::: |
| 1212 | Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch:: |
| 1213 | |
| 1214 | Py_UNICODE_ISDECIMAL:int::: |
| 1215 | Py_UNICODE_ISDECIMAL:Py_UNICODE:ch:: |
| 1216 | |
| 1217 | Py_UNICODE_ISDIGIT:int::: |
| 1218 | Py_UNICODE_ISDIGIT:Py_UNICODE:ch:: |
| 1219 | |
| 1220 | Py_UNICODE_ISNUMERIC:int::: |
| 1221 | Py_UNICODE_ISNUMERIC:Py_UNICODE:ch:: |
| 1222 | |
| 1223 | Py_UNICODE_TOLOWER:Py_UNICODE::: |
| 1224 | Py_UNICODE_TOLOWER:Py_UNICODE:ch:: |
| 1225 | |
| 1226 | Py_UNICODE_TOUPPER:Py_UNICODE::: |
| 1227 | Py_UNICODE_TOUPPER:Py_UNICODE:ch:: |
| 1228 | |
| 1229 | Py_UNICODE_TOTITLE:Py_UNICODE::: |
| 1230 | Py_UNICODE_TOTITLE:Py_UNICODE:ch:: |
| 1231 | |
| 1232 | Py_UNICODE_TODECIMAL:int::: |
| 1233 | Py_UNICODE_TODECIMAL:Py_UNICODE:ch:: |
| 1234 | |
| 1235 | Py_UNICODE_TODIGIT:int::: |
| 1236 | Py_UNICODE_TODIGIT:Py_UNICODE:ch:: |
| 1237 | |
| 1238 | Py_UNICODE_TONUMERIC:double::: |
| 1239 | Py_UNICODE_TONUMERIC:Py_UNICODE:ch:: |
| 1240 | |
| 1241 | PyUnicode_FromUnicode:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1242 | PyUnicode_FromUnicode:const Py_UNICODE*:u:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1243 | PyUnicode_FromUnicode:int:size:: |
| 1244 | |
| 1245 | PyUnicode_AsUnicode:Py_UNICODE*::: |
| 1246 | PyUnicode_AsUnicode:PyObject :*unicode:0: |
| 1247 | |
| 1248 | PyUnicode_GetSize:int::: |
| 1249 | PyUnicode_GetSize:PyObject :*unicode:0: |
| 1250 | |
| 1251 | PyUnicode_FromObject:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1252 | PyUnicode_FromObject:PyObject*:*obj:0: |
| 1253 | |
| 1254 | PyUnicode_FromEncodedObject:PyObject*::+1: |
| 1255 | PyUnicode_FromEncodedObject:PyObject*:*obj:0: |
| 1256 | PyUnicode_FromEncodedObject:const char*:encoding:: |
| 1257 | PyUnicode_FromEncodedObject:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1258 | |
| 1259 | PyUnicode_FromWideChar:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1260 | PyUnicode_FromWideChar:const wchar_t*:w:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1261 | PyUnicode_FromWideChar:int:size:: |
| 1262 | |
| 1263 | PyUnicode_AsWideChar:int::: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1264 | PyUnicode_AsWideChar:PyObject*:*unicode:0: |
| 1265 | PyUnicode_AsWideChar:wchar_t*:w:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1266 | PyUnicode_AsWideChar:int:size:: |
| 1267 | |
| 1268 | PyUnicode_Decode:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1269 | PyUnicode_Decode:const char*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1270 | PyUnicode_Decode:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1271 | PyUnicode_Decode:const char*:encoding:: |
| 1272 | PyUnicode_Decode:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1273 | |
| 1274 | PyUnicode_Encode:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1275 | PyUnicode_Encode:const Py_UNICODE*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1276 | PyUnicode_Encode:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1277 | PyUnicode_Encode:const char*:encoding:: |
| 1278 | PyUnicode_Encode:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1279 | |
| 1280 | PyUnicode_AsEncodedString:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1281 | PyUnicode_AsEncodedString:PyObject*:unicode:: |
| 1282 | PyUnicode_AsEncodedString:const char*:encoding:: |
| 1283 | PyUnicode_AsEncodedString:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1284 | |
| 1285 | PyUnicode_DecodeUTF8:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1286 | PyUnicode_DecodeUTF8:const char*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1287 | PyUnicode_DecodeUTF8:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1288 | PyUnicode_DecodeUTF8:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1289 | |
| 1290 | PyUnicode_EncodeUTF8:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1291 | PyUnicode_EncodeUTF8:const Py_UNICODE*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1292 | PyUnicode_EncodeUTF8:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1293 | PyUnicode_EncodeUTF8:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1294 | |
| 1295 | PyUnicode_AsUTF8String:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1296 | PyUnicode_AsUTF8String:PyObject*:unicode:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1297 | |
| 1298 | PyUnicode_DecodeUTF16:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1299 | PyUnicode_DecodeUTF16:const char*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1300 | PyUnicode_DecodeUTF16:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1301 | PyUnicode_DecodeUTF16:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1302 | PyUnicode_DecodeUTF16:int*:byteorder:: |
| 1303 | |
| 1304 | PyUnicode_EncodeUTF16:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1305 | PyUnicode_EncodeUTF16:const Py_UNICODE*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1306 | PyUnicode_EncodeUTF16:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1307 | PyUnicode_EncodeUTF16:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1308 | PyUnicode_EncodeUTF16:int:byteorder:: |
| 1309 | |
| 1310 | PyUnicode_AsUTF16String:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1311 | PyUnicode_AsUTF16String:PyObject*:unicode:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1312 | |
| 1313 | PyUnicode_DecodeUnicodeEscape:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1314 | PyUnicode_DecodeUnicodeEscape:const char*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1315 | PyUnicode_DecodeUnicodeEscape:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1316 | PyUnicode_DecodeUnicodeEscape:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1317 | |
| 1318 | PyUnicode_EncodeUnicodeEscape:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1319 | PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1320 | PyUnicode_EncodeUnicodeEscape:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1321 | PyUnicode_EncodeUnicodeEscape:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1322 | |
| 1323 | PyUnicode_AsUnicodeEscapeString:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1324 | PyUnicode_AsUnicodeEscapeString:PyObject*:unicode:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1325 | |
| 1326 | PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1327 | PyUnicode_DecodeRawUnicodeEscape:const char*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1328 | PyUnicode_DecodeRawUnicodeEscape:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1329 | PyUnicode_DecodeRawUnicodeEscape:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1330 | |
| 1331 | PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1332 | PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1333 | PyUnicode_EncodeRawUnicodeEscape:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1334 | PyUnicode_EncodeRawUnicodeEscape:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1335 | |
| 1336 | PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1337 | PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1338 | |
| 1339 | PyUnicode_DecodeLatin1:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1340 | PyUnicode_DecodeLatin1:const char*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1341 | PyUnicode_DecodeLatin1:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1342 | PyUnicode_DecodeLatin1:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1343 | |
| 1344 | PyUnicode_EncodeLatin1:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1345 | PyUnicode_EncodeLatin1:const Py_UNICODE*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1346 | PyUnicode_EncodeLatin1:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1347 | PyUnicode_EncodeLatin1:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1348 | |
| 1349 | PyUnicode_AsLatin1String:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1350 | PyUnicode_AsLatin1String:PyObject*:unicode:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1351 | |
| 1352 | PyUnicode_DecodeASCII:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1353 | PyUnicode_DecodeASCII:const char*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1354 | PyUnicode_DecodeASCII:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1355 | PyUnicode_DecodeASCII:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1356 | |
| 1357 | PyUnicode_EncodeASCII:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1358 | PyUnicode_EncodeASCII:const Py_UNICODE*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1359 | PyUnicode_EncodeASCII:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1360 | PyUnicode_EncodeASCII:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1361 | |
| 1362 | PyUnicode_AsASCIIString:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1363 | PyUnicode_AsASCIIString:PyObject*:unicode:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1364 | |
| 1365 | PyUnicode_DecodeCharmap:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1366 | PyUnicode_DecodeCharmap:const char*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1367 | PyUnicode_DecodeCharmap:int:size:: |
| 1368 | PyUnicode_DecodeCharmap:PyObject*:mapping:0: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1369 | PyUnicode_DecodeCharmap:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1370 | |
| 1371 | PyUnicode_EncodeCharmap:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1372 | PyUnicode_EncodeCharmap:const Py_UNICODE*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1373 | PyUnicode_EncodeCharmap:int:size:: |
| 1374 | PyUnicode_EncodeCharmap:PyObject*:mapping:0: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1375 | PyUnicode_EncodeCharmap:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1376 | |
| 1377 | PyUnicode_AsCharmapString:PyObject*::+1: |
| 1378 | PyUnicode_AsCharmapString:PyObject*:unicode:0: |
| 1379 | PyUnicode_AsCharmapString:PyObject*:mapping:0: |
| 1380 | |
| 1381 | PyUnicode_TranslateCharmap:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1382 | PyUnicode_TranslateCharmap:const Py_UNICODE*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1383 | PyUnicode_TranslateCharmap:int:size:: |
| 1384 | PyUnicode_TranslateCharmap:PyObject*:table:0: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1385 | PyUnicode_TranslateCharmap:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1386 | |
| 1387 | PyUnicode_DecodeMBCS:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1388 | PyUnicode_DecodeMBCS:const char*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1389 | PyUnicode_DecodeMBCS:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1390 | PyUnicode_DecodeMBCS:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1391 | |
| 1392 | PyUnicode_EncodeMBCS:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1393 | PyUnicode_EncodeMBCS:const Py_UNICODE*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1394 | PyUnicode_EncodeMBCS:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1395 | PyUnicode_EncodeMBCS:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1396 | |
| 1397 | PyUnicode_AsMBCSString:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1398 | PyUnicode_AsMBCSString:PyObject*:unicode:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1399 | |
| 1400 | PyUnicode_Concat:PyObject*::+1: |
| 1401 | PyUnicode_Concat:PyObject*:left:0: |
| 1402 | PyUnicode_Concat:PyObject*:right:0: |
| 1403 | |
| 1404 | PyUnicode_Split:PyObject*::+1: |
| 1405 | PyUnicode_Split:PyObject*:left:0: |
| 1406 | PyUnicode_Split:PyObject*:right:0: |
| 1407 | PyUnicode_Split:int:maxsplit:: |
| 1408 | |
| 1409 | PyUnicode_Splitlines:PyObject*::+1: |
| 1410 | PyUnicode_Splitlines:PyObject*:s:0: |
| 1411 | PyUnicode_Splitlines:int:maxsplit:: |
| 1412 | |
| 1413 | PyUnicode_Translate:PyObject*::+1: |
| 1414 | PyUnicode_Translate:PyObject*:str:0: |
| 1415 | PyUnicode_Translate:PyObject*:table:0: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1416 | PyUnicode_Translate:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1417 | |
| 1418 | PyUnicode_Join:PyObject*::+1: |
| 1419 | PyUnicode_Join:PyObject*:separator:0: |
| 1420 | PyUnicode_Join:PyObject*:seq:0: |
| 1421 | |
| 1422 | PyUnicode_Tailmatch:PyObject*::+1: |
| 1423 | PyUnicode_Tailmatch:PyObject*:str:0: |
| 1424 | PyUnicode_Tailmatch:PyObject*:substr:0: |
| 1425 | PyUnicode_Tailmatch:int:start:: |
| 1426 | PyUnicode_Tailmatch:int:end:: |
| 1427 | PyUnicode_Tailmatch:int:direction:: |
| 1428 | |
Fred Drake | 1d1e1db | 2002-06-20 22:07:04 +0000 | [diff] [blame] | 1429 | PyUnicode_Find:int::: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1430 | PyUnicode_Find:PyObject*:str:0: |
| 1431 | PyUnicode_Find:PyObject*:substr:0: |
| 1432 | PyUnicode_Find:int:start:: |
| 1433 | PyUnicode_Find:int:end:: |
| 1434 | PyUnicode_Find:int:direction:: |
| 1435 | |
Fred Drake | 1d1e1db | 2002-06-20 22:07:04 +0000 | [diff] [blame] | 1436 | PyUnicode_Count:int::: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1437 | PyUnicode_Count:PyObject*:str:0: |
| 1438 | PyUnicode_Count:PyObject*:substr:0: |
| 1439 | PyUnicode_Count:int:start:: |
| 1440 | PyUnicode_Count:int:end:: |
| 1441 | |
| 1442 | PyUnicode_Replace:PyObject*::+1: |
| 1443 | PyUnicode_Replace:PyObject*:str:0: |
| 1444 | PyUnicode_Replace:PyObject*:substr:0: |
| 1445 | PyUnicode_Replace:PyObject*:replstr:0: |
| 1446 | PyUnicode_Replace:int:maxcount:: |
| 1447 | |
| 1448 | PyUnicode_Compare:int::: |
| 1449 | PyUnicode_Compare:PyObject*:left:0: |
| 1450 | PyUnicode_Compare:PyObject*:right:0: |
| 1451 | |
| 1452 | PyUnicode_Format:PyObject*::+1: |
| 1453 | PyUnicode_Format:PyObject*:format:0: |
| 1454 | PyUnicode_Format:PyObject*:args:0: |
| 1455 | |
| 1456 | PyUnicode_Contains:int::: |
| 1457 | PyUnicode_Contains:PyObject*:container:0: |
| 1458 | PyUnicode_Contains:PyObject*:element:0: |
| 1459 | |
Fred Drake | 1b58bff | 2001-10-29 17:43:14 +0000 | [diff] [blame] | 1460 | PyWeakref_GET_OBJECT:PyObject*::0: |
| 1461 | PyWeakref_GET_OBJECT:PyObject*:ref:0: |
| 1462 | |
Fred Drake | 8371e84 | 2002-02-20 05:07:36 +0000 | [diff] [blame] | 1463 | PyWeakref_GetObject:PyObject*::0: |
Fred Drake | 1b58bff | 2001-10-29 17:43:14 +0000 | [diff] [blame] | 1464 | PyWeakref_GetObject:PyObject*:ref:0: |
| 1465 | |
| 1466 | PyWeakref_NewProxy:PyObject*::+1: |
| 1467 | PyWeakref_NewProxy:PyObject*:ob:0: |
| 1468 | PyWeakref_NewProxy:PyObject*:callback:0: |
| 1469 | |
| 1470 | PyWeakref_NewRef:PyObject*::+1: |
| 1471 | PyWeakref_NewRef:PyObject*:ob:0: |
| 1472 | PyWeakref_NewRef:PyObject*:callback:0: |
| 1473 | |
| 1474 | PyWrapper_New:PyObject*::+1: |
| 1475 | PyWrapper_New:PyObject*:d:0: |
| 1476 | PyWrapper_New:PyObject*:self:0: |
| 1477 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 1478 | Py_AtExit:int::: |
| 1479 | Py_AtExit:void (*)():func:: |
| 1480 | |
Fred Drake | 6d98855 | 2001-07-20 20:55:31 +0000 | [diff] [blame] | 1481 | Py_BuildValue:PyObject*::+1: |
| 1482 | Py_BuildValue:char*:format:: |
| 1483 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 1484 | Py_CompileString:PyObject*::+1: |
| 1485 | Py_CompileString:char*:str:: |
| 1486 | Py_CompileString:char*:filename:: |
| 1487 | Py_CompileString:int:start:: |
| 1488 | |
| 1489 | Py_DECREF:void::: |
| 1490 | Py_DECREF:PyObject*:o:-1: |
| 1491 | |
| 1492 | Py_EndInterpreter:void::: |
| 1493 | Py_EndInterpreter:PyThreadState*:tstate:: |
| 1494 | |
| 1495 | Py_Exit:void::: |
| 1496 | Py_Exit:int:status:: |
| 1497 | |
| 1498 | Py_FatalError:void::: |
| 1499 | Py_FatalError:char*:message:: |
| 1500 | |
| 1501 | Py_FdIsInteractive:int::: |
| 1502 | Py_FdIsInteractive:FILE*:fp:: |
| 1503 | Py_FdIsInteractive:char*:filename:: |
| 1504 | |
| 1505 | Py_Finalize:void::: |
| 1506 | |
Fred Drake | 8520cc2 | 2000-04-10 19:38:24 +0000 | [diff] [blame] | 1507 | Py_FindMethod:PyObject*::+1: |
| 1508 | Py_FindMethod:PyMethodDef[]:methods:: |
| 1509 | Py_FindMethod:PyObject*:self:+1: |
| 1510 | Py_FindMethod:char*:name:: |
| 1511 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 1512 | Py_GetBuildInfoconst:char*::: |
| 1513 | |
| 1514 | Py_GetCompilerconst:char*::: |
| 1515 | |
| 1516 | Py_GetCopyrightconst:char*::: |
| 1517 | |
| 1518 | Py_GetExecPrefix:char*::: |
| 1519 | |
| 1520 | Py_GetPath:char*::: |
| 1521 | |
| 1522 | Py_GetPlatformconst:char*::: |
| 1523 | |
| 1524 | Py_GetPrefix:char*::: |
| 1525 | |
| 1526 | Py_GetProgramFullPath:char*::: |
| 1527 | |
| 1528 | Py_GetProgramName:char*::: |
| 1529 | |
| 1530 | Py_GetVersionconst:char*::: |
| 1531 | |
| 1532 | Py_INCREF:void::: |
| 1533 | Py_INCREF:PyObject*:o:+1: |
| 1534 | |
| 1535 | Py_Initialize:void::: |
| 1536 | |
| 1537 | Py_IsInitialized:int::: |
| 1538 | |
| 1539 | Py_NewInterpreter:PyThreadState*::: |
| 1540 | |
| 1541 | Py_SetProgramName:void::: |
| 1542 | Py_SetProgramName:char*:name:: |
| 1543 | |
| 1544 | Py_XDECREF:void::: |
| 1545 | Py_XDECREF:PyObject*:o:-1:if o is not NULL |
| 1546 | |
| 1547 | Py_XINCREF:void::: |
| 1548 | Py_XINCREF:PyObject*:o:+1:if o is not NULL |
| 1549 | |
| 1550 | _PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule |
| 1551 | _PyImport_FindExtension:char*::: |
| 1552 | _PyImport_FindExtension:char*::: |
| 1553 | |
| 1554 | _PyImport_Fini:void::: |
| 1555 | |
| 1556 | _PyImport_FixupExtension:PyObject*:::??? |
| 1557 | _PyImport_FixupExtension:char*::: |
| 1558 | _PyImport_FixupExtension:char*::: |
| 1559 | |
| 1560 | _PyImport_Init:void::: |
| 1561 | |
Fred Drake | f913e54 | 2000-09-12 20:17:17 +0000 | [diff] [blame] | 1562 | _PyObject_Del:void::: |
| 1563 | _PyObject_Del:PyObject*:op:0: |
| 1564 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 1565 | _PyObject_New:PyObject*::+1: |
| 1566 | _PyObject_New:PyTypeObject*:type:0: |
| 1567 | |
Fred Drake | 8e0c09d | 2001-07-06 23:31:49 +0000 | [diff] [blame] | 1568 | _PyObject_NewVar:PyObject*::+1: |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 1569 | _PyObject_NewVar:PyTypeObject*:type:0: |
| 1570 | _PyObject_NewVar:int:size:: |
| 1571 | |
| 1572 | _PyString_Resize:int::: |
| 1573 | _PyString_Resize:PyObject**:string:+1: |
| 1574 | _PyString_Resize:int:newsize:: |
| 1575 | |
| 1576 | _PyTuple_Resize:int::: |
| 1577 | _PyTuple_Resize:PyTupleObject**:p:+1: |
| 1578 | _PyTuple_Resize:int:new:: |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 1579 | |
| 1580 | _Py_c_diff:Py_complex::: |
| 1581 | _Py_c_diff:Py_complex:left:: |
| 1582 | _Py_c_diff:Py_complex:right:: |
| 1583 | |
| 1584 | _Py_c_neg:Py_complex::: |
| 1585 | _Py_c_neg:Py_complex:complex:: |
| 1586 | |
| 1587 | _Py_c_pow:Py_complex::: |
| 1588 | _Py_c_pow:Py_complex:num:: |
| 1589 | _Py_c_pow:Py_complex:exp:: |
| 1590 | |
| 1591 | _Py_c_prod:Py_complex::: |
| 1592 | _Py_c_prod:Py_complex:left:: |
| 1593 | _Py_c_prod:Py_complex:right:: |
| 1594 | |
| 1595 | _Py_c_quot:Py_complex::: |
| 1596 | _Py_c_quot:Py_complex:dividend:: |
| 1597 | _Py_c_quot:Py_complex:divisor:: |
| 1598 | |
| 1599 | _Py_c_sum:Py_complex::: |
| 1600 | _Py_c_sum:Py_complex:left:: |
| 1601 | _Py_c_sum:Py_complex:right:: |