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 | |
| 496 | PyNumber_Int:PyObject*::+1: |
| 497 | PyNumber_Int:PyObject*:o:0: |
| 498 | |
| 499 | PyNumber_Invert:PyObject*::+1: |
| 500 | PyNumber_Invert:PyObject*:o:0: |
| 501 | |
| 502 | PyNumber_Long:PyObject*::+1: |
| 503 | PyNumber_Long:PyObject*:o:0: |
| 504 | |
| 505 | PyNumber_Lshift:PyObject*::+1: |
| 506 | PyNumber_Lshift:PyObject*:o1:0: |
| 507 | PyNumber_Lshift:PyObject*:o2:0: |
| 508 | |
| 509 | PyNumber_Multiply:PyObject*::+1: |
| 510 | PyNumber_Multiply:PyObject*:o1:0: |
| 511 | PyNumber_Multiply:PyObject*:o2:0: |
| 512 | |
| 513 | PyNumber_Negative:PyObject*::+1: |
| 514 | PyNumber_Negative:PyObject*:o:0: |
| 515 | |
| 516 | PyNumber_Or:PyObject*::+1: |
| 517 | PyNumber_Or:PyObject*:o1:0: |
| 518 | PyNumber_Or:PyObject*:o2:0: |
| 519 | |
| 520 | PyNumber_Positive:PyObject*::+1: |
| 521 | PyNumber_Positive:PyObject*:o:0: |
| 522 | |
| 523 | PyNumber_Power:PyObject*::+1: |
| 524 | PyNumber_Power:PyObject*:o1:0: |
| 525 | PyNumber_Power:PyObject*:o2:0: |
| 526 | PyNumber_Power:PyObject*:o3:0: |
| 527 | |
| 528 | PyNumber_Remainder:PyObject*::+1: |
| 529 | PyNumber_Remainder:PyObject*:o1:0: |
| 530 | PyNumber_Remainder:PyObject*:o2:0: |
| 531 | |
| 532 | PyNumber_Rshift:PyObject*::+1: |
| 533 | PyNumber_Rshift:PyObject*:o1:0: |
| 534 | PyNumber_Rshift:PyObject*:o2:0: |
| 535 | |
| 536 | PyNumber_Subtract:PyObject*::+1: |
| 537 | PyNumber_Subtract:PyObject*:o1:0: |
| 538 | PyNumber_Subtract:PyObject*:o2:0: |
| 539 | |
| 540 | PyNumber_Xor:PyObject*::+1: |
| 541 | PyNumber_Xor:PyObject*:o1:0: |
| 542 | PyNumber_Xor:PyObject*:o2:0: |
| 543 | |
| 544 | PyOS_GetLastModificationTime:long::: |
| 545 | PyOS_GetLastModificationTime:char*:filename:: |
| 546 | |
Andrew M. Kuchling | 8c46b30 | 2000-07-13 23:58:16 +0000 | [diff] [blame] | 547 | PyObject_AsFileDescriptor:int::: |
| 548 | PyObject_AsFileDescriptor:PyObject*:o:0: |
| 549 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 550 | PyObject_CallFunction:PyObject*::+1: |
| 551 | PyObject_CallFunction:PyObject*:callable_object:0: |
| 552 | PyObject_CallFunction:char*:format:: |
| 553 | PyObject_CallFunction::...:: |
| 554 | |
| 555 | PyObject_CallMethod:PyObject*::+1: |
| 556 | PyObject_CallMethod:PyObject*:o:0: |
| 557 | PyObject_CallMethod:char*:m:: |
| 558 | PyObject_CallMethod:char*:format:: |
| 559 | PyObject_CallMethod::...:: |
| 560 | |
| 561 | PyObject_CallObject:PyObject*::+1: |
| 562 | PyObject_CallObject:PyObject*:callable_object:0: |
| 563 | PyObject_CallObject:PyObject*:args:0: |
| 564 | |
| 565 | PyObject_Cmp:int::: |
| 566 | PyObject_Cmp:PyObject*:o1:0: |
| 567 | PyObject_Cmp:PyObject*:o2:0: |
| 568 | PyObject_Cmp:int*:result:: |
| 569 | |
| 570 | PyObject_Compare:int::: |
| 571 | PyObject_Compare:PyObject*:o1:0: |
| 572 | PyObject_Compare:PyObject*:o2:0: |
| 573 | |
| 574 | PyObject_DelAttr:int::: |
| 575 | PyObject_DelAttr:PyObject*:o:0: |
| 576 | PyObject_DelAttr:PyObject*:attr_name:0: |
| 577 | |
| 578 | PyObject_DelAttrString:int::: |
| 579 | PyObject_DelAttrString:PyObject*:o:0: |
| 580 | PyObject_DelAttrString:char*:attr_name:: |
| 581 | |
| 582 | PyObject_DelItem:int::: |
| 583 | PyObject_DelItem:PyObject*:o:0: |
| 584 | PyObject_DelItem:PyObject*:key:0: |
| 585 | |
| 586 | PyObject_GetAttr:PyObject*::+1: |
| 587 | PyObject_GetAttr:PyObject*:o:0: |
| 588 | PyObject_GetAttr:PyObject*:attr_name:0: |
| 589 | |
| 590 | PyObject_GetAttrString:PyObject*::+1: |
| 591 | PyObject_GetAttrString:PyObject*:o:0: |
| 592 | PyObject_GetAttrString:char*:attr_name:: |
| 593 | |
| 594 | PyObject_GetItem:PyObject*::+1: |
| 595 | PyObject_GetItem:PyObject*:o:0: |
| 596 | PyObject_GetItem:PyObject*:key:0: |
| 597 | |
| 598 | PyObject_HasAttr:int::: |
| 599 | PyObject_HasAttr:PyObject*:o:0: |
| 600 | PyObject_HasAttr:PyObject*:attr_name:0: |
| 601 | |
| 602 | PyObject_HasAttrString:int::: |
| 603 | PyObject_HasAttrString:PyObject*:o:0: |
| 604 | PyObject_HasAttrString:char*:attr_name:0: |
| 605 | |
| 606 | PyObject_Hash:int::: |
| 607 | PyObject_Hash:PyObject*:o:0: |
| 608 | |
| 609 | PyObject_IsTrue:int::: |
| 610 | PyObject_IsTrue:PyObject*:o:0: |
| 611 | |
Fred Drake | f913e54 | 2000-09-12 20:17:17 +0000 | [diff] [blame] | 612 | PyObject_Init:PyObject*::0: |
| 613 | PyObject_Init:PyObject*:op:0: |
| 614 | |
| 615 | PyObject_InitVar:PyVarObject*::0: |
| 616 | PyObject_InitVar:PyVarObject*:op:0: |
| 617 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 618 | PyObject_Length:int::: |
| 619 | PyObject_Length:PyObject*:o:0: |
| 620 | |
| 621 | PyObject_Print:int::: |
| 622 | PyObject_Print:PyObject*:o:0: |
| 623 | PyObject_Print:FILE*:fp:: |
| 624 | PyObject_Print:int:flags:: |
| 625 | |
| 626 | PyObject_Repr:PyObject*::+1: |
| 627 | PyObject_Repr:PyObject*:o:0: |
| 628 | |
| 629 | PyObject_SetAttr:int::: |
| 630 | PyObject_SetAttr:PyObject*:o:0: |
| 631 | PyObject_SetAttr:PyObject*:attr_name:0: |
| 632 | PyObject_SetAttr:PyObject*:v:+1: |
| 633 | |
| 634 | PyObject_SetAttrString:int::: |
| 635 | PyObject_SetAttrString:PyObject*:o:0: |
| 636 | PyObject_SetAttrString:char*:attr_name:: |
| 637 | PyObject_SetAttrString:PyObject*:v:+1: |
| 638 | |
| 639 | PyObject_SetItem:int::: |
| 640 | PyObject_SetItem:PyObject*:o:0: |
| 641 | PyObject_SetItem:PyObject*:key:0: |
| 642 | PyObject_SetItem:PyObject*:v:+1: |
| 643 | |
| 644 | PyObject_Str:PyObject*::+1: |
| 645 | PyObject_Str:PyObject*:o:0: |
| 646 | |
| 647 | PyObject_Type:PyObject*::+1: |
| 648 | PyObject_Type:PyObject*:o:0: |
| 649 | |
Fred Drake | 805bf1b | 1999-10-20 16:03:38 +0000 | [diff] [blame] | 650 | PyParser_SimpleParseFile:struct _node*::: |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 651 | PyParser_SimpleParseFile:FILE*:fp:: |
| 652 | PyParser_SimpleParseFile:char*:filename:: |
| 653 | PyParser_SimpleParseFile:int:start:: |
| 654 | |
Fred Drake | 805bf1b | 1999-10-20 16:03:38 +0000 | [diff] [blame] | 655 | PyParser_SimpleParseString:struct _node*::: |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 656 | PyParser_SimpleParseString:char*:str:: |
| 657 | PyParser_SimpleParseString:int:start:: |
| 658 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 659 | PyRun_AnyFile:int::: |
| 660 | PyRun_AnyFile:FILE*:fp:: |
| 661 | PyRun_AnyFile:char*:filename:: |
| 662 | |
Fred Drake | 4ca744c | 2000-08-12 03:39:47 +0000 | [diff] [blame] | 663 | PyRun_File:PyObject*::+1:??? -- same as eval_code2() |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 664 | PyRun_File:FILE*:fp:: |
| 665 | PyRun_File:char*:filename:: |
| 666 | PyRun_File:int:start:: |
| 667 | PyRun_File:PyObject*:globals:0: |
| 668 | PyRun_File:PyObject*:locals:0: |
| 669 | |
| 670 | PyRun_InteractiveLoop:int::: |
| 671 | PyRun_InteractiveLoop:FILE*:fp:: |
| 672 | PyRun_InteractiveLoop:char*:filename:: |
| 673 | |
| 674 | PyRun_InteractiveOne:int::: |
| 675 | PyRun_InteractiveOne:FILE*:fp:: |
| 676 | PyRun_InteractiveOne:char*:filename:: |
| 677 | |
| 678 | PyRun_SimpleFile:int::: |
| 679 | PyRun_SimpleFile:FILE*:fp:: |
| 680 | PyRun_SimpleFile:char*:filename:: |
| 681 | |
| 682 | PyRun_SimpleString:int::: |
| 683 | PyRun_SimpleString:char*:command:: |
| 684 | |
Fred Drake | 4ca744c | 2000-08-12 03:39:47 +0000 | [diff] [blame] | 685 | PyRun_String:PyObject*::+1:??? -- same as eval_code2() |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 686 | PyRun_String:char*:str:: |
| 687 | PyRun_String:int:start:: |
| 688 | PyRun_String:PyObject*:globals:0: |
| 689 | PyRun_String:PyObject*:locals:0: |
| 690 | |
| 691 | PySequence_Check:int::: |
| 692 | PySequence_Check:PyObject*:o:0: |
| 693 | |
| 694 | PySequence_Concat:PyObject*::+1: |
| 695 | PySequence_Concat:PyObject*:o1:0: |
| 696 | PySequence_Concat:PyObject*:o2:0: |
| 697 | |
| 698 | PySequence_Count:int::: |
| 699 | PySequence_Count:PyObject*:o:0: |
| 700 | PySequence_Count:PyObject*:value:0: |
| 701 | |
| 702 | PySequence_DelItem:int::: |
| 703 | PySequence_DelItem:PyObject*:o:0: |
| 704 | PySequence_DelItem:int:i:: |
| 705 | |
| 706 | PySequence_DelSlice:int::: |
| 707 | PySequence_DelSlice:PyObject*:o:0: |
| 708 | PySequence_DelSlice:int:i1:: |
| 709 | PySequence_DelSlice:int:i2:: |
| 710 | |
Fred Drake | 81cccb7 | 2000-09-12 15:22:05 +0000 | [diff] [blame] | 711 | PySequence_Fast:PyObject*::+1: |
| 712 | PySequence_Fast:PyObject*:v:0: |
| 713 | PySequence_Fast:const char*:m:: |
| 714 | |
| 715 | PySequence_Fast_GET_ITEM:PyObject*::0: |
| 716 | PySequence_Fast_GET_ITEM:PyObject*:o:0: |
| 717 | PySequence_Fast_GET_ITEM:int:i:: |
| 718 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 719 | PySequence_GetItem:PyObject*::+1: |
| 720 | PySequence_GetItem:PyObject*:o:0: |
| 721 | PySequence_GetItem:int:i:: |
| 722 | |
| 723 | PySequence_GetSlice:PyObject*::+1: |
| 724 | PySequence_GetSlice:PyObject*:o:0: |
| 725 | PySequence_GetSlice:int:i1:: |
| 726 | PySequence_GetSlice:int:i2:: |
| 727 | |
| 728 | PySequence_In:int::: |
| 729 | PySequence_In:PyObject*:o:0: |
| 730 | PySequence_In:PyObject*:value:0: |
| 731 | |
| 732 | PySequence_Index:int::: |
| 733 | PySequence_Index:PyObject*:o:0: |
| 734 | PySequence_Index:PyObject*:value:0: |
| 735 | |
| 736 | PySequence_Repeat:PyObject*::+1: |
| 737 | PySequence_Repeat:PyObject*:o:0: |
| 738 | PySequence_Repeat:int:count:: |
| 739 | |
| 740 | PySequence_SetItem:int::: |
| 741 | PySequence_SetItem:PyObject*:o:0: |
| 742 | PySequence_SetItem:int:i:: |
| 743 | PySequence_SetItem:PyObject*:v:+1: |
| 744 | |
| 745 | PySequence_SetSlice:int::: |
| 746 | PySequence_SetSlice:PyObject*:o:0: |
| 747 | PySequence_SetSlice:int:i1:: |
| 748 | PySequence_SetSlice:int:i2:: |
| 749 | PySequence_SetSlice:PyObject*:v:+1: |
| 750 | |
Fred Drake | 1c2d06a | 2000-06-16 20:00:04 +0000 | [diff] [blame] | 751 | PySequence_List:PyObject*::+1: |
| 752 | PySequence_List:PyObject*:o:0: |
| 753 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 754 | PySequence_Tuple:PyObject*::+1: |
| 755 | PySequence_Tuple:PyObject*:o:0: |
| 756 | |
| 757 | PyString_AS_STRING:char*::: |
| 758 | PyString_AS_STRING:PyObject*:string:0: |
| 759 | |
| 760 | PyString_AsString:char*::: |
| 761 | PyString_AsString:PyObject*:string:0: |
| 762 | |
Marc-André Lemburg | d1ba443 | 2000-09-19 21:04:18 +0000 | [diff] [blame] | 763 | PyString_AsStringAndSize:int::: |
| 764 | PyString_AsStringAndSize:PyObject*:obj:0: |
| 765 | PyString_AsStringAndSize:char**:buffer:: |
| 766 | PyString_AsStringAndSize:int*:length:: |
| 767 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 768 | PyString_Check:int::: |
| 769 | PyString_Check:PyObject*:o:0: |
| 770 | |
| 771 | PyString_Concat:void::: |
Fred Drake | 805bf1b | 1999-10-20 16:03:38 +0000 | [diff] [blame] | 772 | PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 773 | PyString_Concat:PyObject*:newpart:0: |
| 774 | |
| 775 | PyString_ConcatAndDel:void::: |
Fred Drake | 805bf1b | 1999-10-20 16:03:38 +0000 | [diff] [blame] | 776 | PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 777 | PyString_ConcatAndDel:PyObject*:newpart:-1: |
| 778 | |
| 779 | PyString_Format:PyObject*::+1: |
| 780 | PyString_Format:PyObject*:format:0: |
| 781 | PyString_Format:PyObject*:args:0: |
| 782 | |
| 783 | PyString_FromString:PyObject*::+1: |
| 784 | PyString_FromString:const char*:v:: |
| 785 | |
| 786 | PyString_FromStringAndSize:PyObject*::+1: |
| 787 | PyString_FromStringAndSize:const char*:v:: |
| 788 | PyString_FromStringAndSize:int:len:: |
| 789 | |
| 790 | PyString_GET_SIZE:int::: |
| 791 | PyString_GET_SIZE:PyObject*:string:0: |
| 792 | |
| 793 | PyString_InternFromString:PyObject*::+1: |
| 794 | PyString_InternFromString:const char*:v:: |
| 795 | |
| 796 | PyString_InternInPlace:void::: |
| 797 | PyString_InternInPlace:PyObject**:string:+1:??? |
| 798 | |
| 799 | PyString_Size:int::: |
| 800 | PyString_Size:PyObject*:string:0: |
| 801 | |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 802 | PyString_Decode:PyObject*::+1: |
| 803 | PyString_Decode:const char*:s:: |
| 804 | PyString_Decode:int:size:: |
| 805 | PyString_Decode:const char*:encoding:: |
| 806 | PyString_Decode:const char*:errors:: |
| 807 | |
| 808 | PyString_Encode:PyObject*::+1: |
| 809 | PyString_Encode:const char*:s:: |
| 810 | PyString_Encode:int:size:: |
| 811 | PyString_Encode:const char*:encoding:: |
| 812 | PyString_Encode:const char*:errors:: |
| 813 | |
| 814 | PyString_AsEncodedString:PyObject*::+1: |
| 815 | PyString_AsEncodedString:PyObject*:str:: |
| 816 | PyString_AsEncodedString:const char*:encoding:: |
| 817 | PyString_AsEncodedString:const char*:errors:: |
| 818 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 819 | PySys_SetArgv:int::: |
| 820 | PySys_SetArgv:int:argc:: |
| 821 | PySys_SetArgv:char**:argv:: |
| 822 | |
| 823 | PyThreadState_Clear:void::: |
| 824 | PyThreadState_Clear:PyThreadState*:tstate:: |
| 825 | |
| 826 | PyThreadState_Delete:void::: |
| 827 | PyThreadState_Delete:PyThreadState*:tstate:: |
| 828 | |
| 829 | PyThreadState_Get:PyThreadState*::: |
| 830 | |
| 831 | PyThreadState_New:PyThreadState*::: |
| 832 | PyThreadState_New:PyInterpreterState*:interp:: |
| 833 | |
| 834 | PyThreadState_Swap:PyThreadState*::: |
| 835 | PyThreadState_Swap:PyThreadState*:tstate:: |
| 836 | |
| 837 | PyTuple_Check:int::: |
| 838 | PyTuple_Check:PyObject*:p:0: |
| 839 | |
| 840 | PyTuple_GET_ITEM:PyObject*::0: |
| 841 | PyTuple_GET_ITEM:PyTupleObject*:p:0: |
| 842 | PyTuple_GET_ITEM:int:pos:: |
| 843 | |
| 844 | PyTuple_GetItem:PyObject*::0: |
| 845 | PyTuple_GetItem:PyTupleObject*:p:0: |
| 846 | PyTuple_GetItem:int:pos:: |
| 847 | |
| 848 | PyTuple_GetSlice:PyObject*::+1: |
| 849 | PyTuple_GetSlice:PyTupleObject*:p:0: |
| 850 | PyTuple_GetSlice:int:low:: |
| 851 | PyTuple_GetSlice:int:high:: |
| 852 | |
| 853 | PyTuple_New:PyObject*::+1: |
| 854 | PyTuple_New:int:len:: |
| 855 | |
| 856 | PyTuple_SET_ITEM:void::: |
| 857 | PyTuple_SET_ITEM:PyTupleObject*:p:0: |
| 858 | PyTuple_SET_ITEM:int:pos:: |
| 859 | PyTuple_SET_ITEM:PyObject*:o:0: |
| 860 | |
| 861 | PyTuple_SetItem:int::: |
| 862 | PyTuple_SetItem:PyTupleObject*:p:0: |
| 863 | PyTuple_SetItem:int:pos:: |
| 864 | PyTuple_SetItem:PyObject*:o:0: |
| 865 | |
| 866 | PyTuple_Size:int::: |
| 867 | PyTuple_Size:PyTupleObject*:p:0: |
| 868 | |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 869 | PyUnicode_Check:int::: |
| 870 | PyUnicode_Check:PyObject*:o:0: |
| 871 | |
| 872 | PyUnicode_GET_SIZE:int::: |
| 873 | PyUnicode_GET_SIZE:PyObject*:o:0: |
| 874 | |
| 875 | PyUnicode_GET_DATA_SIZE:int::: |
| 876 | PyUnicode_GET_DATA_SIZE:PyObject*:o:0: |
| 877 | |
| 878 | PyUnicode_AS_UNICODE:Py_UNICODE*::: |
| 879 | PyUnicode_AS_UNICODE:PyObject*:o:0: |
| 880 | |
| 881 | PyUnicode_AS_DATA:const char*::: |
| 882 | PyUnicode_AS_DATA:PyObject*:o:0: |
| 883 | |
| 884 | Py_UNICODE_ISSPACE:int::: |
| 885 | Py_UNICODE_ISSPACE:Py_UNICODE:ch:: |
| 886 | |
| 887 | Py_UNICODE_ISLOWER:int::: |
| 888 | Py_UNICODE_ISLOWER:Py_UNICODE:ch:: |
| 889 | |
| 890 | Py_UNICODE_ISUPPER:int::: |
| 891 | Py_UNICODE_ISUPPER:Py_UNICODE:ch:: |
| 892 | |
| 893 | Py_UNICODE_ISTITLE:int::: |
| 894 | Py_UNICODE_ISTITLE:Py_UNICODE:ch:: |
| 895 | |
| 896 | Py_UNICODE_ISLINEBREAK:int::: |
| 897 | Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch:: |
| 898 | |
| 899 | Py_UNICODE_ISDECIMAL:int::: |
| 900 | Py_UNICODE_ISDECIMAL:Py_UNICODE:ch:: |
| 901 | |
| 902 | Py_UNICODE_ISDIGIT:int::: |
| 903 | Py_UNICODE_ISDIGIT:Py_UNICODE:ch:: |
| 904 | |
| 905 | Py_UNICODE_ISNUMERIC:int::: |
| 906 | Py_UNICODE_ISNUMERIC:Py_UNICODE:ch:: |
| 907 | |
| 908 | Py_UNICODE_TOLOWER:Py_UNICODE::: |
| 909 | Py_UNICODE_TOLOWER:Py_UNICODE:ch:: |
| 910 | |
| 911 | Py_UNICODE_TOUPPER:Py_UNICODE::: |
| 912 | Py_UNICODE_TOUPPER:Py_UNICODE:ch:: |
| 913 | |
| 914 | Py_UNICODE_TOTITLE:Py_UNICODE::: |
| 915 | Py_UNICODE_TOTITLE:Py_UNICODE:ch:: |
| 916 | |
| 917 | Py_UNICODE_TODECIMAL:int::: |
| 918 | Py_UNICODE_TODECIMAL:Py_UNICODE:ch:: |
| 919 | |
| 920 | Py_UNICODE_TODIGIT:int::: |
| 921 | Py_UNICODE_TODIGIT:Py_UNICODE:ch:: |
| 922 | |
| 923 | Py_UNICODE_TONUMERIC:double::: |
| 924 | Py_UNICODE_TONUMERIC:Py_UNICODE:ch:: |
| 925 | |
| 926 | PyUnicode_FromUnicode:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 927 | PyUnicode_FromUnicode:const Py_UNICODE*:u:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 928 | PyUnicode_FromUnicode:int:size:: |
| 929 | |
| 930 | PyUnicode_AsUnicode:Py_UNICODE*::: |
| 931 | PyUnicode_AsUnicode:PyObject :*unicode:0: |
| 932 | |
| 933 | PyUnicode_GetSize:int::: |
| 934 | PyUnicode_GetSize:PyObject :*unicode:0: |
| 935 | |
| 936 | PyUnicode_FromObject:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 937 | PyUnicode_FromObject:PyObject*:*obj:0: |
| 938 | |
| 939 | PyUnicode_FromEncodedObject:PyObject*::+1: |
| 940 | PyUnicode_FromEncodedObject:PyObject*:*obj:0: |
| 941 | PyUnicode_FromEncodedObject:const char*:encoding:: |
| 942 | PyUnicode_FromEncodedObject:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 943 | |
| 944 | PyUnicode_FromWideChar:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 945 | PyUnicode_FromWideChar:const wchar_t*:w:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 946 | PyUnicode_FromWideChar:int:size:: |
| 947 | |
| 948 | PyUnicode_AsWideChar:int::: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 949 | PyUnicode_AsWideChar:PyObject*:*unicode:0: |
| 950 | PyUnicode_AsWideChar:wchar_t*:w:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 951 | PyUnicode_AsWideChar:int:size:: |
| 952 | |
| 953 | PyUnicode_Decode:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 954 | PyUnicode_Decode:const char*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 955 | PyUnicode_Decode:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 956 | PyUnicode_Decode:const char*:encoding:: |
| 957 | PyUnicode_Decode:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 958 | |
| 959 | PyUnicode_Encode:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 960 | PyUnicode_Encode:const Py_UNICODE*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 961 | PyUnicode_Encode:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 962 | PyUnicode_Encode:const char*:encoding:: |
| 963 | PyUnicode_Encode:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 964 | |
| 965 | PyUnicode_AsEncodedString:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 966 | PyUnicode_AsEncodedString:PyObject*:unicode:: |
| 967 | PyUnicode_AsEncodedString:const char*:encoding:: |
| 968 | PyUnicode_AsEncodedString:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 969 | |
| 970 | PyUnicode_DecodeUTF8:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 971 | PyUnicode_DecodeUTF8:const char*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 972 | PyUnicode_DecodeUTF8:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 973 | PyUnicode_DecodeUTF8:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 974 | |
| 975 | PyUnicode_EncodeUTF8:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 976 | PyUnicode_EncodeUTF8:const Py_UNICODE*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 977 | PyUnicode_EncodeUTF8:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 978 | PyUnicode_EncodeUTF8:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 979 | |
| 980 | PyUnicode_AsUTF8String:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 981 | PyUnicode_AsUTF8String:PyObject*:unicode:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 982 | |
| 983 | PyUnicode_DecodeUTF16:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 984 | PyUnicode_DecodeUTF16:const char*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 985 | PyUnicode_DecodeUTF16:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 986 | PyUnicode_DecodeUTF16:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 987 | PyUnicode_DecodeUTF16:int*:byteorder:: |
| 988 | |
| 989 | PyUnicode_EncodeUTF16:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 990 | PyUnicode_EncodeUTF16:const Py_UNICODE*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 991 | PyUnicode_EncodeUTF16:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 992 | PyUnicode_EncodeUTF16:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 993 | PyUnicode_EncodeUTF16:int:byteorder:: |
| 994 | |
| 995 | PyUnicode_AsUTF16String:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 996 | PyUnicode_AsUTF16String:PyObject*:unicode:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 997 | |
| 998 | PyUnicode_DecodeUnicodeEscape:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 999 | PyUnicode_DecodeUnicodeEscape:const char*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1000 | PyUnicode_DecodeUnicodeEscape:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1001 | PyUnicode_DecodeUnicodeEscape:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1002 | |
| 1003 | PyUnicode_EncodeUnicodeEscape:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1004 | PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1005 | PyUnicode_EncodeUnicodeEscape:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1006 | PyUnicode_EncodeUnicodeEscape:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1007 | |
| 1008 | PyUnicode_AsUnicodeEscapeString:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1009 | PyUnicode_AsUnicodeEscapeString:PyObject*:unicode:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1010 | |
| 1011 | PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1012 | PyUnicode_DecodeRawUnicodeEscape:const char*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1013 | PyUnicode_DecodeRawUnicodeEscape:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1014 | PyUnicode_DecodeRawUnicodeEscape:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1015 | |
| 1016 | PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1017 | PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1018 | PyUnicode_EncodeRawUnicodeEscape:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1019 | PyUnicode_EncodeRawUnicodeEscape:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1020 | |
| 1021 | PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1022 | PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1023 | |
| 1024 | PyUnicode_DecodeLatin1:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1025 | PyUnicode_DecodeLatin1:const char*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1026 | PyUnicode_DecodeLatin1:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1027 | PyUnicode_DecodeLatin1:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1028 | |
| 1029 | PyUnicode_EncodeLatin1:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1030 | PyUnicode_EncodeLatin1:const Py_UNICODE*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1031 | PyUnicode_EncodeLatin1:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1032 | PyUnicode_EncodeLatin1:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1033 | |
| 1034 | PyUnicode_AsLatin1String:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1035 | PyUnicode_AsLatin1String:PyObject*:unicode:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1036 | |
| 1037 | PyUnicode_DecodeASCII:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1038 | PyUnicode_DecodeASCII:const char*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1039 | PyUnicode_DecodeASCII:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1040 | PyUnicode_DecodeASCII:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1041 | |
| 1042 | PyUnicode_EncodeASCII:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1043 | PyUnicode_EncodeASCII:const Py_UNICODE*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1044 | PyUnicode_EncodeASCII:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1045 | PyUnicode_EncodeASCII:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1046 | |
| 1047 | PyUnicode_AsASCIIString:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1048 | PyUnicode_AsASCIIString:PyObject*:unicode:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1049 | |
| 1050 | PyUnicode_DecodeCharmap:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1051 | PyUnicode_DecodeCharmap:const char*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1052 | PyUnicode_DecodeCharmap:int:size:: |
| 1053 | PyUnicode_DecodeCharmap:PyObject*:mapping:0: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1054 | PyUnicode_DecodeCharmap:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1055 | |
| 1056 | PyUnicode_EncodeCharmap:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1057 | PyUnicode_EncodeCharmap:const Py_UNICODE*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1058 | PyUnicode_EncodeCharmap:int:size:: |
| 1059 | PyUnicode_EncodeCharmap:PyObject*:mapping:0: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1060 | PyUnicode_EncodeCharmap:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1061 | |
| 1062 | PyUnicode_AsCharmapString:PyObject*::+1: |
| 1063 | PyUnicode_AsCharmapString:PyObject*:unicode:0: |
| 1064 | PyUnicode_AsCharmapString:PyObject*:mapping:0: |
| 1065 | |
| 1066 | PyUnicode_TranslateCharmap:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1067 | PyUnicode_TranslateCharmap:const Py_UNICODE*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1068 | PyUnicode_TranslateCharmap:int:size:: |
| 1069 | PyUnicode_TranslateCharmap:PyObject*:table:0: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1070 | PyUnicode_TranslateCharmap:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1071 | |
| 1072 | PyUnicode_DecodeMBCS:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1073 | PyUnicode_DecodeMBCS:const char*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1074 | PyUnicode_DecodeMBCS:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1075 | PyUnicode_DecodeMBCS:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1076 | |
| 1077 | PyUnicode_EncodeMBCS:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1078 | PyUnicode_EncodeMBCS:const Py_UNICODE*:s:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1079 | PyUnicode_EncodeMBCS:int:size:: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1080 | PyUnicode_EncodeMBCS:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1081 | |
| 1082 | PyUnicode_AsMBCSString:PyObject*::+1: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1083 | PyUnicode_AsMBCSString:PyObject*:unicode:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1084 | |
| 1085 | PyUnicode_Concat:PyObject*::+1: |
| 1086 | PyUnicode_Concat:PyObject*:left:0: |
| 1087 | PyUnicode_Concat:PyObject*:right:0: |
| 1088 | |
| 1089 | PyUnicode_Split:PyObject*::+1: |
| 1090 | PyUnicode_Split:PyObject*:left:0: |
| 1091 | PyUnicode_Split:PyObject*:right:0: |
| 1092 | PyUnicode_Split:int:maxsplit:: |
| 1093 | |
| 1094 | PyUnicode_Splitlines:PyObject*::+1: |
| 1095 | PyUnicode_Splitlines:PyObject*:s:0: |
| 1096 | PyUnicode_Splitlines:int:maxsplit:: |
| 1097 | |
| 1098 | PyUnicode_Translate:PyObject*::+1: |
| 1099 | PyUnicode_Translate:PyObject*:str:0: |
| 1100 | PyUnicode_Translate:PyObject*:table:0: |
Marc-André Lemburg | 4707320 | 2000-07-07 15:48:54 +0000 | [diff] [blame] | 1101 | PyUnicode_Translate:const char*:errors:: |
Fred Drake | 992fe5a | 2000-06-16 21:04:15 +0000 | [diff] [blame] | 1102 | |
| 1103 | PyUnicode_Join:PyObject*::+1: |
| 1104 | PyUnicode_Join:PyObject*:separator:0: |
| 1105 | PyUnicode_Join:PyObject*:seq:0: |
| 1106 | |
| 1107 | PyUnicode_Tailmatch:PyObject*::+1: |
| 1108 | PyUnicode_Tailmatch:PyObject*:str:0: |
| 1109 | PyUnicode_Tailmatch:PyObject*:substr:0: |
| 1110 | PyUnicode_Tailmatch:int:start:: |
| 1111 | PyUnicode_Tailmatch:int:end:: |
| 1112 | PyUnicode_Tailmatch:int:direction:: |
| 1113 | |
| 1114 | PyUnicode_Find:PyObject*::+1: |
| 1115 | PyUnicode_Find:PyObject*:str:0: |
| 1116 | PyUnicode_Find:PyObject*:substr:0: |
| 1117 | PyUnicode_Find:int:start:: |
| 1118 | PyUnicode_Find:int:end:: |
| 1119 | PyUnicode_Find:int:direction:: |
| 1120 | |
| 1121 | PyUnicode_Count:PyObject*::+1: |
| 1122 | PyUnicode_Count:PyObject*:str:0: |
| 1123 | PyUnicode_Count:PyObject*:substr:0: |
| 1124 | PyUnicode_Count:int:start:: |
| 1125 | PyUnicode_Count:int:end:: |
| 1126 | |
| 1127 | PyUnicode_Replace:PyObject*::+1: |
| 1128 | PyUnicode_Replace:PyObject*:str:0: |
| 1129 | PyUnicode_Replace:PyObject*:substr:0: |
| 1130 | PyUnicode_Replace:PyObject*:replstr:0: |
| 1131 | PyUnicode_Replace:int:maxcount:: |
| 1132 | |
| 1133 | PyUnicode_Compare:int::: |
| 1134 | PyUnicode_Compare:PyObject*:left:0: |
| 1135 | PyUnicode_Compare:PyObject*:right:0: |
| 1136 | |
| 1137 | PyUnicode_Format:PyObject*::+1: |
| 1138 | PyUnicode_Format:PyObject*:format:0: |
| 1139 | PyUnicode_Format:PyObject*:args:0: |
| 1140 | |
| 1141 | PyUnicode_Contains:int::: |
| 1142 | PyUnicode_Contains:PyObject*:container:0: |
| 1143 | PyUnicode_Contains:PyObject*:element:0: |
| 1144 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 1145 | Py_AtExit:int::: |
| 1146 | Py_AtExit:void (*)():func:: |
| 1147 | |
| 1148 | Py_CompileString:PyObject*::+1: |
| 1149 | Py_CompileString:char*:str:: |
| 1150 | Py_CompileString:char*:filename:: |
| 1151 | Py_CompileString:int:start:: |
| 1152 | |
| 1153 | Py_DECREF:void::: |
| 1154 | Py_DECREF:PyObject*:o:-1: |
| 1155 | |
| 1156 | Py_EndInterpreter:void::: |
| 1157 | Py_EndInterpreter:PyThreadState*:tstate:: |
| 1158 | |
| 1159 | Py_Exit:void::: |
| 1160 | Py_Exit:int:status:: |
| 1161 | |
| 1162 | Py_FatalError:void::: |
| 1163 | Py_FatalError:char*:message:: |
| 1164 | |
| 1165 | Py_FdIsInteractive:int::: |
| 1166 | Py_FdIsInteractive:FILE*:fp:: |
| 1167 | Py_FdIsInteractive:char*:filename:: |
| 1168 | |
| 1169 | Py_Finalize:void::: |
| 1170 | |
Fred Drake | 8520cc2 | 2000-04-10 19:38:24 +0000 | [diff] [blame] | 1171 | Py_FindMethod:PyObject*::+1: |
| 1172 | Py_FindMethod:PyMethodDef[]:methods:: |
| 1173 | Py_FindMethod:PyObject*:self:+1: |
| 1174 | Py_FindMethod:char*:name:: |
| 1175 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 1176 | Py_GetBuildInfoconst:char*::: |
| 1177 | |
| 1178 | Py_GetCompilerconst:char*::: |
| 1179 | |
| 1180 | Py_GetCopyrightconst:char*::: |
| 1181 | |
| 1182 | Py_GetExecPrefix:char*::: |
| 1183 | |
| 1184 | Py_GetPath:char*::: |
| 1185 | |
| 1186 | Py_GetPlatformconst:char*::: |
| 1187 | |
| 1188 | Py_GetPrefix:char*::: |
| 1189 | |
| 1190 | Py_GetProgramFullPath:char*::: |
| 1191 | |
| 1192 | Py_GetProgramName:char*::: |
| 1193 | |
| 1194 | Py_GetVersionconst:char*::: |
| 1195 | |
| 1196 | Py_INCREF:void::: |
| 1197 | Py_INCREF:PyObject*:o:+1: |
| 1198 | |
| 1199 | Py_Initialize:void::: |
| 1200 | |
| 1201 | Py_IsInitialized:int::: |
| 1202 | |
| 1203 | Py_NewInterpreter:PyThreadState*::: |
| 1204 | |
| 1205 | Py_SetProgramName:void::: |
| 1206 | Py_SetProgramName:char*:name:: |
| 1207 | |
| 1208 | Py_XDECREF:void::: |
| 1209 | Py_XDECREF:PyObject*:o:-1:if o is not NULL |
| 1210 | |
| 1211 | Py_XINCREF:void::: |
| 1212 | Py_XINCREF:PyObject*:o:+1:if o is not NULL |
| 1213 | |
| 1214 | _PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule |
| 1215 | _PyImport_FindExtension:char*::: |
| 1216 | _PyImport_FindExtension:char*::: |
| 1217 | |
| 1218 | _PyImport_Fini:void::: |
| 1219 | |
| 1220 | _PyImport_FixupExtension:PyObject*:::??? |
| 1221 | _PyImport_FixupExtension:char*::: |
| 1222 | _PyImport_FixupExtension:char*::: |
| 1223 | |
| 1224 | _PyImport_Init:void::: |
| 1225 | |
Fred Drake | f913e54 | 2000-09-12 20:17:17 +0000 | [diff] [blame] | 1226 | _PyObject_Del:void::: |
| 1227 | _PyObject_Del:PyObject*:op:0: |
| 1228 | |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 1229 | _PyObject_New:PyObject*::+1: |
| 1230 | _PyObject_New:PyTypeObject*:type:0: |
| 1231 | |
Fred Drake | f913e54 | 2000-09-12 20:17:17 +0000 | [diff] [blame] | 1232 | _PyObject_NewVar:PyVarObject*::+1: |
Fred Drake | 7b7dc6b | 1999-10-20 15:06:24 +0000 | [diff] [blame] | 1233 | _PyObject_NewVar:PyTypeObject*:type:0: |
| 1234 | _PyObject_NewVar:int:size:: |
| 1235 | |
| 1236 | _PyString_Resize:int::: |
| 1237 | _PyString_Resize:PyObject**:string:+1: |
| 1238 | _PyString_Resize:int:newsize:: |
| 1239 | |
| 1240 | _PyTuple_Resize:int::: |
| 1241 | _PyTuple_Resize:PyTupleObject**:p:+1: |
| 1242 | _PyTuple_Resize:int:new:: |
| 1243 | _PyTuple_Resize:int:last_is_sticky:: |
| 1244 | |
| 1245 | _Py_c_diff:Py_complex::: |
| 1246 | _Py_c_diff:Py_complex:left:: |
| 1247 | _Py_c_diff:Py_complex:right:: |
| 1248 | |
| 1249 | _Py_c_neg:Py_complex::: |
| 1250 | _Py_c_neg:Py_complex:complex:: |
| 1251 | |
| 1252 | _Py_c_pow:Py_complex::: |
| 1253 | _Py_c_pow:Py_complex:num:: |
| 1254 | _Py_c_pow:Py_complex:exp:: |
| 1255 | |
| 1256 | _Py_c_prod:Py_complex::: |
| 1257 | _Py_c_prod:Py_complex:left:: |
| 1258 | _Py_c_prod:Py_complex:right:: |
| 1259 | |
| 1260 | _Py_c_quot:Py_complex::: |
| 1261 | _Py_c_quot:Py_complex:dividend:: |
| 1262 | _Py_c_quot:Py_complex:divisor:: |
| 1263 | |
| 1264 | _Py_c_sum:Py_complex::: |
| 1265 | _Py_c_sum:Py_complex:left:: |
| 1266 | _Py_c_sum:Py_complex:right:: |