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