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