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