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