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