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