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