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 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 34 | PyAnySet_Check:int::: |
| 35 | PyAnySet_Check:PyObject*:p:0: |
| 36 | |
| 37 | PyAnySet_CheckExact:int::: |
| 38 | PyAnySet_CheckExact:PyObject*:p:0: |
| 39 | |
| 40 | PyBool_Check:int::: |
| 41 | PyBool_Check:PyObject*:o:0: |
| 42 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 43 | PyBool_FromLong:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 44 | PyBool_FromLong:long:v:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 45 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 46 | PyBuffer_FillContiguousStrides:void::: |
| 47 | PyBuffer_FillContiguousStrides:int:ndims:: |
| 48 | PyBuffer_FillContiguousStrides:Py_ssize_t*:shape:: |
| 49 | PyBuffer_FillContiguousStrides:Py_ssize_t*:strides:: |
| 50 | PyBuffer_FillContiguousStrides:int:itemsize:: |
| 51 | PyBuffer_FillContiguousStrides:char:order:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 52 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 53 | PyBuffer_FillInfo:int::: |
| 54 | PyBuffer_FillInfo:Py_buffer*:view:: |
| 55 | PyBuffer_FillInfo:PyObject*:exporter:0: |
| 56 | PyBuffer_FillInfo:void*:buf:: |
| 57 | PyBuffer_FillInfo:Py_ssize_t:len:: |
| 58 | PyBuffer_FillInfo:int:readonly:: |
| 59 | PyBuffer_FillInfo:int:flags:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 60 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 61 | PyBuffer_IsContiguous:int::: |
| 62 | PyBuffer_IsContiguous:Py_buffer*:view:: |
| 63 | PyBuffer_IsContiguous:char:order:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 64 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 65 | PyBuffer_Release:void::: |
| 66 | PyBuffer_Release:Py_buffer*:view:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 67 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 68 | PyBuffer_ToContiguous:int::: |
| 69 | PyBuffer_ToContiguous:void*:buf:: |
| 70 | PyBuffer_ToContiguous:Py_buffer*:src:: |
| 71 | PyBuffer_ToContiguous:Py_ssize_t:len:: |
| 72 | PyBuffer_ToContiguous:char:order:: |
| 73 | |
| 74 | PyByteArray_AS_STRING:char*::: |
| 75 | PyByteArray_AS_STRING:PyObject*:bytearray:0: |
| 76 | |
| 77 | PyByteArray_AsString:char*::: |
| 78 | PyByteArray_AsString:PyObject*:bytearray:0: |
| 79 | |
| 80 | PyByteArray_Check:int::: |
| 81 | PyByteArray_Check:PyObject*:o:0: |
| 82 | |
| 83 | PyByteArray_CheckExact:int::: |
| 84 | PyByteArray_CheckExact:PyObject*:o:0: |
| 85 | |
| 86 | PyByteArray_Concat:PyObject*::+1: |
| 87 | PyByteArray_Concat:PyObject*:a:0: |
| 88 | PyByteArray_Concat:PyObject*:b:0: |
| 89 | |
| 90 | PyByteArray_FromObject:PyObject*::+1: |
| 91 | PyByteArray_FromObject:PyObject*:o:0: |
| 92 | |
| 93 | PyByteArray_FromStringAndSize:PyObject*::+1: |
| 94 | PyByteArray_FromStringAndSize:const char*:string:: |
| 95 | PyByteArray_FromStringAndSize:Py_ssize_t:len:: |
| 96 | |
| 97 | PyByteArray_GET_SIZE:Py_ssize_t::: |
| 98 | PyByteArray_GET_SIZE:PyObject*:bytearray:0: |
| 99 | |
| 100 | PyByteArray_Resize:int::: |
| 101 | PyByteArray_Resize:PyObject*:bytearray:0: |
| 102 | PyByteArray_Resize:Py_ssize_t:len:: |
| 103 | |
| 104 | PyByteArray_Size:Py_ssize_t::: |
| 105 | PyByteArray_Size:PyObject*:bytearray:0: |
| 106 | |
| 107 | PyBytes_AS_STRING:char*::: |
| 108 | PyBytes_AS_STRING:PyObject*:string:0: |
| 109 | |
| 110 | PyBytes_AsString:char*::: |
| 111 | PyBytes_AsString:PyObject*:o:0: |
| 112 | |
| 113 | PyBytes_AsStringAndSize:int::: |
| 114 | PyBytes_AsStringAndSize:PyObject*:obj:0: |
| 115 | PyBytes_AsStringAndSize:char**:buffer:: |
| 116 | PyBytes_AsStringAndSize:Py_ssize_t*:length:: |
| 117 | |
| 118 | PyBytes_Check:int::: |
| 119 | PyBytes_Check:PyObject*:o:0: |
| 120 | |
| 121 | PyBytes_CheckExact:int::: |
| 122 | PyBytes_CheckExact:PyObject*:o:0: |
| 123 | |
| 124 | PyBytes_Concat:void::: |
| 125 | PyBytes_Concat:PyObject**:bytes:0: |
| 126 | PyBytes_Concat:PyObject*:newpart:0: |
| 127 | |
| 128 | PyBytes_ConcatAndDel:void::: |
| 129 | PyBytes_ConcatAndDel:PyObject**:bytes:0: |
| 130 | PyBytes_ConcatAndDel:PyObject*:newpart:-1: |
| 131 | |
| 132 | PyBytes_FromString:PyObject*::+1: |
| 133 | PyBytes_FromString:const char*:v:: |
| 134 | |
| 135 | PyBytes_FromStringAndSize:PyObject*::+1: |
| 136 | PyBytes_FromStringAndSize:const char*:v:: |
| 137 | PyBytes_FromStringAndSize:Py_ssize_t:len:: |
| 138 | |
| 139 | PyBytes_FromFormat:PyObject*::+1: |
| 140 | PyBytes_FromFormat:const char*:format:: |
| 141 | PyBytes_FromFormat::...:: |
| 142 | |
| 143 | PyBytes_FromFormatV:PyObject*::+1: |
| 144 | PyBytes_FromFormatV:const char*:format:: |
| 145 | PyBytes_FromFormatV:va_list:vargs:: |
| 146 | |
| 147 | PyBytes_FromObject:PyObject*::+1: |
| 148 | PyBytes_FromObject:PyObject*:o:0: |
| 149 | |
| 150 | PyBytes_GET_SIZE:Py_ssize_t::: |
| 151 | PyBytes_GET_SIZE:PyObject*:o:0: |
| 152 | |
| 153 | PyBytes_Size:Py_ssize_t::: |
| 154 | PyBytes_Size:PyObject*:o:0: |
| 155 | |
| 156 | PyCapsule_CheckExact:int::: |
| 157 | PyCapsule_CheckExact:PyObject*:p:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 158 | |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 159 | PyCapsule_GetContext:void *::: |
| 160 | PyCapsule_GetContext:PyObject*:self:0: |
| 161 | |
| 162 | PyCapsule_GetDestructor:void (*)(PyObject *)::: |
| 163 | PyCapsule_GetDestructor:PyObject*:self:0: |
| 164 | |
| 165 | PyCapsule_GetName:const char *::: |
| 166 | PyCapsule_GetName:PyObject*:self:0: |
| 167 | |
| 168 | PyCapsule_GetPointer:void*::: |
| 169 | PyCapsule_GetPointer:PyObject*:self:0: |
| 170 | PyCapsule_GetPointer:const char *:name:: |
| 171 | |
| 172 | PyCapsule_Import:void *::: |
| 173 | PyCapsule_Import:const char *:name:: |
| 174 | PyCapsule_Import:int:no_block:: |
| 175 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 176 | PyCapsule_IsValid:int::: |
| 177 | PyCapsule_IsValid:PyObject*:capsule:0: |
| 178 | PyCapsule_IsValid:const char*:name:: |
| 179 | |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 180 | PyCapsule_New:PyObject*::+1: |
| 181 | PyCapsule_New:void*:pointer:: |
| 182 | PyCapsule_New:const char *:name:: |
| 183 | PyCapsule_New::void (* destructor)(PyObject* ):: |
| 184 | |
| 185 | PyCapsule_SetContext:int::: |
| 186 | PyCapsule_SetContext:PyObject*:self:0: |
| 187 | PyCapsule_SetContext:void *:context:: |
| 188 | |
| 189 | PyCapsule_SetDestructor:int::: |
| 190 | PyCapsule_SetDestructor:PyObject*:self:0: |
| 191 | PyCapsule_SetDestructor:void (*)(PyObject *):destructor:: |
| 192 | |
| 193 | PyCapsule_SetName:int::: |
| 194 | PyCapsule_SetName:PyObject*:self:0: |
| 195 | PyCapsule_SetName:const char *:name:: |
| 196 | |
| 197 | PyCapsule_SetPointer:int::: |
| 198 | PyCapsule_SetPointer:PyObject*:self:0: |
| 199 | PyCapsule_SetPointer:void*:pointer:: |
| 200 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 201 | PyCell_Check:int::: |
| 202 | PyCell_Check::ob:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 203 | |
| 204 | PyCell_New:PyObject*::+1: |
| 205 | PyCell_New:PyObject*:ob:0: |
| 206 | |
| 207 | PyCell_GET:PyObject*::0: |
| 208 | PyCell_GET:PyObject*:ob:0: |
| 209 | |
| 210 | PyCell_Get:PyObject*::+1: |
| 211 | PyCell_Get:PyObject*:cell:0: |
| 212 | |
| 213 | PyCell_SET:void::: |
| 214 | PyCell_SET:PyObject*:cell:0: |
| 215 | PyCell_SET:PyObject*:value:0: |
| 216 | |
| 217 | PyCell_Set:int::: |
| 218 | PyCell_Set:PyObject*:cell:0: |
| 219 | PyCell_Set:PyObject*:value:0: |
| 220 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 221 | PyCallIter_Check:int::: |
| 222 | PyCallIter_Check::op:: |
| 223 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 224 | PyCallIter_New:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 225 | PyCallIter_New:PyObject*:callable:+1: |
| 226 | PyCallIter_New:PyObject*:sentinel:+1: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 227 | |
| 228 | PyCallable_Check:int::: |
| 229 | PyCallable_Check:PyObject*:o:0: |
| 230 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 231 | PyCode_Check:int::: |
| 232 | PyCode_Check:PyObject*:co:0: |
| 233 | |
| 234 | PyCode_GetNumFree:int::: |
| 235 | PyCode_GetNumFree:PyCodeObject*:co:0: |
| 236 | |
| 237 | PyCode_New:PyCodeObject*::+1: |
| 238 | PyCode_New:int:argcount:: |
| 239 | PyCode_New:int:kwonlyargcount:: |
| 240 | PyCode_New:int:nlocals:: |
| 241 | PyCode_New:int:stacksize:: |
| 242 | PyCode_New:int:flags:: |
| 243 | PyCode_New:PyObject*:code:0: |
| 244 | PyCode_New:PyObject*:consts:0: |
| 245 | PyCode_New:PyObject*:names:0: |
| 246 | PyCode_New:PyObject*:varnames:0: |
| 247 | PyCode_New:PyObject*:freevars:0: |
| 248 | PyCode_New:PyObject*:cellvars:0: |
| 249 | PyCode_New:PyObject*:filename:0: |
| 250 | PyCode_New:PyObject*:name:0: |
| 251 | PyCode_New:int:firstlineno:: |
| 252 | PyCode_New:PyObject*:lnotab:0: |
| 253 | |
| 254 | PyCode_NewEmpty:PyCodeObject*::+1: |
| 255 | PyCode_NewEmpty:const char*:filename:: |
| 256 | PyCode_NewEmpty:const char*:funcname:: |
| 257 | PyCode_NewEmpty:int:firstlineno:: |
| 258 | |
| 259 | PyCodec_Register:int::: |
| 260 | PyCodec_Register:PyObject*:search_function:+1: |
| 261 | |
| 262 | PyCodec_KnownEncoding:int::: |
| 263 | PyCodec_KnownEncoding:const char*:encoding:: |
| 264 | |
| 265 | PyCodec_Encode:PyObject*::+1: |
| 266 | PyCodec_Encode:PyObject*:object:0: |
| 267 | PyCodec_Encode:const char*:encoding:: |
| 268 | PyCodec_Encode:const char*:errors:: |
| 269 | |
| 270 | PyCodec_Decode:PyObject*::+1: |
| 271 | PyCodec_Decode:PyObject*:object:0: |
| 272 | PyCodec_Decode:const char*:encoding:: |
| 273 | PyCodec_Decode:const char*:errors:: |
| 274 | |
| 275 | PyCodec_Encoder:PyObject*::+1: |
| 276 | PyCodec_Encoder:const char*:encoding:: |
| 277 | |
| 278 | PyCodec_Decoder:PyObject*::+1: |
| 279 | PyCodec_Decoder:const char*:encoding:: |
| 280 | |
| 281 | PyCodec_IncrementalEncoder:PyObject*::+1: |
| 282 | PyCodec_IncrementalEncoder:const char*:encoding:: |
| 283 | PyCodec_IncrementalEncoder:const char*:errors:: |
| 284 | |
| 285 | PyCodec_IncrementalDecoder:PyObject*::+1: |
| 286 | PyCodec_IncrementalDecoder:const char*:encoding:: |
| 287 | PyCodec_IncrementalDecoder:const char*:errors:: |
| 288 | |
| 289 | PyCodec_StreamReader:PyObject*::+1: |
| 290 | PyCodec_StreamReader:const char*:encoding:: |
| 291 | PyCodec_StreamReader:PyObject*:stream:0: |
| 292 | PyCodec_StreamReader:const char*:errors:: |
| 293 | |
| 294 | PyCodec_StreamWriter:PyObject*::+1: |
| 295 | PyCodec_StreamWriter:const char*:encoding:: |
| 296 | PyCodec_StreamWriter:PyObject*:stream:0: |
| 297 | PyCodec_StreamWriter:const char*:errors:: |
| 298 | |
| 299 | PyCodec_RegisterError:int::: |
| 300 | PyCodec_RegisterError:const char*:name:: |
| 301 | PyCodec_RegisterError:PyObject*:error:+1: |
| 302 | |
| 303 | PyCodec_LookupError:PyObject*::+1: |
| 304 | PyCodec_LookupError:const char*:name:: |
| 305 | |
| 306 | PyCodec_StrictErrors:PyObject*::null: |
| 307 | PyCodec_StrictErrors:PyObject*:exc:0: |
| 308 | |
| 309 | PyCodec_IgnoreErrors:PyObject*::+1: |
| 310 | PyCodec_IgnoreErrors:PyObject*:exc:0: |
| 311 | |
| 312 | PyCodec_ReplaceErrors:PyObject*::+1: |
| 313 | PyCodec_ReplaceErrors:PyObject*:exc:0: |
| 314 | |
| 315 | PyCodec_XMLCharRefReplaceErrors:PyObject*::+1: |
| 316 | PyCodec_XMLCharRefReplaceErrors:PyObject*:exc:0: |
| 317 | |
| 318 | PyCodec_BackslashReplaceErrors:PyObject*::+1: |
| 319 | PyCodec_BackslashReplaceErrors:PyObject*:exc:0: |
| 320 | |
| 321 | PyCodec_NameReplaceErrors:PyObject*::+1: |
| 322 | PyCodec_NameReplaceErrors:PyObject*:exc:0: |
| 323 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 324 | PyComplex_AsCComplex:Py_complex::: |
| 325 | PyComplex_AsCComplex:PyObject*:op:0: |
| 326 | |
| 327 | PyComplex_Check:int::: |
| 328 | PyComplex_Check:PyObject*:p:0: |
| 329 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 330 | PyComplex_CheckExact:int::: |
| 331 | PyComplex_CheckExact:PyObject*:p:0: |
| 332 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 333 | PyComplex_FromCComplex:PyObject*::+1: |
| 334 | PyComplex_FromCComplex::Py_complex v:: |
| 335 | |
| 336 | PyComplex_FromDoubles:PyObject*::+1: |
| 337 | PyComplex_FromDoubles::double real:: |
| 338 | PyComplex_FromDoubles::double imag:: |
| 339 | |
| 340 | PyComplex_ImagAsDouble:double::: |
| 341 | PyComplex_ImagAsDouble:PyObject*:op:0: |
| 342 | |
| 343 | PyComplex_RealAsDouble:double::: |
| 344 | PyComplex_RealAsDouble:PyObject*:op:0: |
| 345 | |
Serhiy Storchaka | 4e29f56 | 2018-05-22 20:59:42 +0300 | [diff] [blame] | 346 | PyContext_CheckExact:int::: |
| 347 | PyContext_CheckExact:PyObject*:o:0: |
| 348 | |
| 349 | PyContext_ClearFreeList:int::: |
| 350 | |
| 351 | PyContext_Copy:PyObject*::+1: |
| 352 | PyContext_Copy:PyObject*:ctx:0: |
| 353 | |
| 354 | PyContext_CopyCurrent:PyObject*::+1: |
| 355 | |
| 356 | PyContext_Enter:int::: |
| 357 | PyContext_Enter:PyObject*:ctx:+1: |
| 358 | |
| 359 | PyContext_Exit:int::: |
| 360 | PyContext_Exit:PyObject*:ctx:-1: |
| 361 | |
| 362 | PyContext_New:PyObject*::+1: |
| 363 | |
| 364 | PyContextToken_CheckExact:int::: |
| 365 | PyContextToken_CheckExact:PyObject*:o:0: |
| 366 | |
| 367 | PyContextVar_CheckExact:int::: |
| 368 | PyContextVar_CheckExact:PyObject*:o:0: |
| 369 | |
| 370 | PyContextVar_Get:int::: |
| 371 | PyContextVar_Get:PyObject*:var:0: |
| 372 | PyContextVar_Get:PyObject*:default_value:0: |
| 373 | PyContextVar_Get:PyObject**:value:+1:??? |
| 374 | |
| 375 | PyContextVar_New:PyObject*::+1: |
| 376 | PyContextVar_New:const char*:name:: |
| 377 | PyContextVar_New:PyObject*:def:+1: |
| 378 | |
| 379 | PyContextVar_Set:PyObject*::+1: |
| 380 | PyContextVar_Set:PyObject*:var:0: |
| 381 | PyContextVar_Set:PyObject*:value:+1: |
| 382 | |
| 383 | PyContextVar_Reset:int::: |
| 384 | PyContextVar_Reset:PyObject*:var:0: |
| 385 | PyContextVar_Reset:PyObject*:token:-1: |
| 386 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 387 | PyDate_Check:int::: |
| 388 | PyDate_Check:PyObject*:ob:0: |
| 389 | |
| 390 | PyDate_CheckExact:int::: |
| 391 | PyDate_CheckExact:PyObject*:ob:0: |
| 392 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 393 | PyDate_FromDate:PyObject*::+1: |
| 394 | PyDate_FromDate:int:year:: |
| 395 | PyDate_FromDate:int:month:: |
| 396 | PyDate_FromDate:int:day:: |
| 397 | |
| 398 | PyDate_FromTimestamp:PyObject*::+1: |
| 399 | PyDate_FromTimestamp:PyObject*:args:0: |
| 400 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 401 | PyDateTime_Check:int::: |
| 402 | PyDateTime_Check:PyObject*:ob:0: |
| 403 | |
| 404 | PyDateTime_CheckExact:int::: |
| 405 | PyDateTime_CheckExact:PyObject*:ob:0: |
| 406 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 407 | PyDateTime_FromDateAndTime:PyObject*::+1: |
| 408 | PyDateTime_FromDateAndTime:int:year:: |
| 409 | PyDateTime_FromDateAndTime:int:month:: |
| 410 | PyDateTime_FromDateAndTime:int:day:: |
| 411 | PyDateTime_FromDateAndTime:int:hour:: |
| 412 | PyDateTime_FromDateAndTime:int:minute:: |
| 413 | PyDateTime_FromDateAndTime:int:second:: |
| 414 | PyDateTime_FromDateAndTime:int:usecond:: |
| 415 | |
Edison A | d28772a | 2019-05-13 00:23:38 -0700 | [diff] [blame] | 416 | PyDateTime_FromDateAndTimeAndFold:PyObject*::+1: |
| 417 | PyDateTime_FromDateAndTimeAndFold:int:year:: |
| 418 | PyDateTime_FromDateAndTimeAndFold:int:month:: |
| 419 | PyDateTime_FromDateAndTimeAndFold:int:day:: |
| 420 | PyDateTime_FromDateAndTimeAndFold:int:hour:: |
| 421 | PyDateTime_FromDateAndTimeAndFold:int:minute:: |
| 422 | PyDateTime_FromDateAndTimeAndFold:int:second:: |
| 423 | PyDateTime_FromDateAndTimeAndFold:int:usecond:: |
| 424 | PyDateTime_FromDateAndTimeAndFold:int:fold:: |
| 425 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 426 | PyDateTime_FromTimestamp:PyObject*::+1: |
| 427 | PyDateTime_FromTimestamp:PyObject*:args:0: |
| 428 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 429 | PyDelta_Check:int::: |
| 430 | PyDelta_Check:PyObject*:ob:0: |
| 431 | |
| 432 | PyDelta_CheckExact:int::: |
| 433 | PyDelta_CheckExact:PyObject*:ob:0: |
| 434 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 435 | PyDelta_FromDSU:PyObject*::+1: |
| 436 | PyDelta_FromDSU:int:days:: |
| 437 | PyDelta_FromDSU:int:seconds:: |
| 438 | PyDelta_FromDSU:int:useconds:: |
| 439 | |
Paul Ganssle | 04af5b1 | 2018-01-24 17:29:30 -0500 | [diff] [blame] | 440 | PyTimeZone_FromOffset:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 441 | PyTimeZone_FromOffset:PyObject*:offset:+1:Reference count not increased if offset is +00:00 |
Paul Ganssle | 04af5b1 | 2018-01-24 17:29:30 -0500 | [diff] [blame] | 442 | |
| 443 | PyTimeZone_FromOffsetAndName:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 444 | PyTimeZone_FromOffsetAndName:PyObject*:offset:+1:Reference count not increased if offset is +00:00 and name == NULL |
| 445 | PyTimeZone_FromOffsetAndName:PyObject*:name:+1: |
Paul Ganssle | 04af5b1 | 2018-01-24 17:29:30 -0500 | [diff] [blame] | 446 | |
| 447 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 448 | PyDescr_IsData:int::: |
| 449 | PyDescr_IsData:PyObject*:descr:0: |
| 450 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 451 | PyDescr_NewClassMethod:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 452 | PyDescr_NewClassMethod:PyTypeObject*:type:+1: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 453 | PyDescr_NewClassMethod:PyMethodDef*:method:: |
| 454 | |
| 455 | PyDescr_NewGetSet:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 456 | PyDescr_NewGetSet:PyTypeObject*:type:+1: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 457 | PyDescr_NewGetSet:PyGetSetDef*:getset:: |
| 458 | |
| 459 | PyDescr_NewMember:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 460 | PyDescr_NewMember:PyTypeObject*:type:+1: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 461 | PyDescr_NewMember:PyMemberDef*:member:: |
| 462 | |
| 463 | PyDescr_NewMethod:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 464 | PyDescr_NewMethod:PyTypeObject*:type:+1: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 465 | PyDescr_NewMethod:PyMethodDef*:meth:: |
| 466 | |
| 467 | PyDescr_NewWrapper:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 468 | PyDescr_NewWrapper:PyTypeObject*:type:+1: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 469 | PyDescr_NewWrapper:struct wrapperbase*:base:: |
| 470 | PyDescr_NewWrapper:void*:wrapped:: |
| 471 | |
| 472 | PyDict_Check:int::: |
| 473 | PyDict_Check:PyObject*:p:0: |
| 474 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 475 | PyDict_CheckExact:int::: |
| 476 | PyDict_CheckExact:PyObject*:p:0: |
| 477 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 478 | PyDict_Clear:void::: |
| 479 | PyDict_Clear:PyObject*:p:0: |
| 480 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 481 | PyDict_Contains:int::: |
| 482 | PyDict_Contains:PyObject*:p:0: |
| 483 | PyDict_Contains:PyObject*:key:0: |
| 484 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 485 | PyDict_DelItem:int::: |
| 486 | PyDict_DelItem:PyObject*:p:0: |
| 487 | PyDict_DelItem:PyObject*:key:0: |
| 488 | |
| 489 | PyDict_DelItemString:int::: |
| 490 | PyDict_DelItemString:PyObject*:p:0: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 491 | PyDict_DelItemString:const char*:key:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 492 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 493 | PyDict_GetItem:PyObject*::0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 494 | PyDict_GetItem:PyObject*:p:0: |
| 495 | PyDict_GetItem:PyObject*:key:0: |
| 496 | |
Eric Snow | b63530a | 2017-06-01 12:29:13 -0600 | [diff] [blame] | 497 | PyDict_GetItemWithError:PyObject*::0:0 |
| 498 | PyDict_GetItemWithError:PyObject*:p:0: |
| 499 | PyDict_GetItemWithError:PyObject*:key:0: |
| 500 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 501 | PyDict_GetItemString:PyObject*::0: |
| 502 | PyDict_GetItemString:PyObject*:p:0: |
Serhiy Storchaka | 1cfebc7 | 2013-05-29 18:50:54 +0300 | [diff] [blame] | 503 | PyDict_GetItemString:const char*:key:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 504 | |
Benjamin Peterson | 00e9886 | 2013-03-07 22:16:29 -0500 | [diff] [blame] | 505 | PyDict_SetDefault:PyObject*::0: |
| 506 | PyDict_SetDefault:PyObject*:p:0: |
| 507 | PyDict_SetDefault:PyObject*:key:0:conditionally +1 if inserted into the dict |
| 508 | PyDict_SetDefault:PyObject*:default:0:conditionally +1 if inserted into the dict |
| 509 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 510 | PyDict_Items:PyObject*::+1: |
| 511 | PyDict_Items:PyObject*:p:0: |
| 512 | |
| 513 | PyDict_Keys:PyObject*::+1: |
| 514 | PyDict_Keys:PyObject*:p:0: |
| 515 | |
| 516 | PyDict_New:PyObject*::+1: |
| 517 | |
| 518 | PyDict_Copy:PyObject*::+1: |
| 519 | PyDict_Copy:PyObject*:p:0: |
| 520 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 521 | PyDict_Merge:int::: |
| 522 | PyDict_Merge:PyObject*:a:0: |
| 523 | PyDict_Merge:PyObject*:b:0: |
| 524 | PyDict_Merge:int:override:: |
| 525 | |
| 526 | PyDict_MergeFromSeq2:int::: |
| 527 | PyDict_MergeFromSeq2:PyObject*:a:0: |
| 528 | PyDict_MergeFromSeq2:PyObject*:seq2:0: |
| 529 | PyDict_MergeFromSeq2:int:override:: |
| 530 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 531 | PyDict_Next:int::: |
| 532 | PyDict_Next:PyObject*:p:0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 533 | PyDict_Next:Py_ssize_t:ppos:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 534 | PyDict_Next:PyObject**:pkey:0: |
| 535 | PyDict_Next:PyObject**:pvalue:0: |
| 536 | |
| 537 | PyDict_SetItem:int::: |
| 538 | PyDict_SetItem:PyObject*:p:0: |
| 539 | PyDict_SetItem:PyObject*:key:+1: |
| 540 | PyDict_SetItem:PyObject*:val:+1: |
| 541 | |
| 542 | PyDict_SetItemString:int::: |
| 543 | PyDict_SetItemString:PyObject*:p:0: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 544 | PyDict_SetItemString:const char*:key:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 545 | PyDict_SetItemString:PyObject*:val:+1: |
| 546 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 547 | PyDict_Size:Py_ssize_t::: |
| 548 | PyDict_Size:PyObject*:p:0: |
| 549 | |
| 550 | PyDict_Update:int::: |
| 551 | PyDict_Update:PyObject*:a:0: |
| 552 | PyDict_Update:PyObject*:b:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 553 | |
| 554 | PyDict_Values:PyObject*::+1: |
| 555 | PyDict_Values:PyObject*:p:0: |
| 556 | |
| 557 | PyDictProxy_New:PyObject*::+1: |
| 558 | PyDictProxy_New:PyObject*:dict:0: |
| 559 | |
| 560 | PyErr_BadArgument:int::: |
| 561 | |
| 562 | PyErr_BadInternalCall:void::: |
| 563 | |
| 564 | PyErr_CheckSignals:int::: |
| 565 | |
| 566 | PyErr_Clear:void::: |
| 567 | |
| 568 | PyErr_ExceptionMatches:int::: |
| 569 | PyErr_ExceptionMatches:PyObject*:exc:0: |
| 570 | |
| 571 | PyErr_Fetch:void::: |
| 572 | PyErr_Fetch:PyObject**:ptype:0: |
| 573 | PyErr_Fetch:PyObject**:pvalue:0: |
| 574 | PyErr_Fetch:PyObject**:ptraceback:0: |
| 575 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 576 | PyErr_Format:PyObject*::null: |
| 577 | PyErr_Format:PyObject*:exception:+1: |
| 578 | PyErr_Format:const char*:format:: |
| 579 | PyErr_Format::...:: |
| 580 | |
| 581 | PyErr_FormatV:PyObject*::null: |
| 582 | PyErr_FormatV:PyObject*:exception:+1: |
| 583 | PyErr_FormatV:const char*:format:: |
| 584 | PyErr_FormatV:va_list:vargs:: |
| 585 | |
| 586 | PyErr_GetExcInfo:void::: |
| 587 | PyErr_GetExcInfo:PyObject**:ptype:+1: |
| 588 | PyErr_GetExcInfo:PyObject**:pvalue:+1: |
| 589 | PyErr_GetExcInfo:PyObject**:ptraceback:+1: |
| 590 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 591 | PyErr_GivenExceptionMatches:int::: |
| 592 | PyErr_GivenExceptionMatches:PyObject*:given:0: |
| 593 | PyErr_GivenExceptionMatches:PyObject*:exc:0: |
| 594 | |
| 595 | PyErr_NewException:PyObject*::+1: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 596 | PyErr_NewException:const char*:name:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 597 | PyErr_NewException:PyObject*:base:0: |
| 598 | PyErr_NewException:PyObject*:dict:0: |
| 599 | |
Georg Brandl | 1e28a27 | 2009-12-28 08:41:01 +0000 | [diff] [blame] | 600 | PyErr_NewExceptionWithDoc:PyObject*::+1: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 601 | PyErr_NewExceptionWithDoc:const char*:name:: |
| 602 | PyErr_NewExceptionWithDoc:const char*:doc:: |
Georg Brandl | 1e28a27 | 2009-12-28 08:41:01 +0000 | [diff] [blame] | 603 | PyErr_NewExceptionWithDoc:PyObject*:base:0: |
| 604 | PyErr_NewExceptionWithDoc:PyObject*:dict:0: |
| 605 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 606 | PyErr_NoMemory:PyObject*::null: |
| 607 | |
| 608 | PyErr_NormalizeException:void::: |
| 609 | PyErr_NormalizeException:PyObject**:exc::??? |
| 610 | PyErr_NormalizeException:PyObject**:val::??? |
| 611 | PyErr_NormalizeException:PyObject**:tb::??? |
| 612 | |
| 613 | PyErr_Occurred:PyObject*::0: |
| 614 | |
| 615 | PyErr_Print:void::: |
| 616 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 617 | PyErr_PrintEx:void::: |
| 618 | PyErr_PrintEx:int:set_sys_last_vars:: |
| 619 | |
| 620 | PyErr_ResourceWarning:int::: |
| 621 | PyErr_ResourceWarning:PyObject*:source:0: |
| 622 | PyErr_ResourceWarning:Py_ssize_t:stack_level:: |
| 623 | PyErr_ResourceWarning:const char*:format:: |
| 624 | PyErr_ResourceWarning::...:: |
| 625 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 626 | PyErr_Restore:void::: |
| 627 | PyErr_Restore:PyObject*:type:-1: |
| 628 | PyErr_Restore:PyObject*:value:-1: |
| 629 | PyErr_Restore:PyObject*:traceback:-1: |
| 630 | |
| 631 | PyErr_SetExcFromWindowsErr:PyObject*::null: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 632 | PyErr_SetExcFromWindowsErr:PyObject*:type:+1: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 633 | PyErr_SetExcFromWindowsErr:int:ierr:: |
| 634 | |
| 635 | PyErr_SetExcFromWindowsErrWithFilename:PyObject*::null: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 636 | PyErr_SetExcFromWindowsErrWithFilename:PyObject*:type:+1: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 637 | PyErr_SetExcFromWindowsErrWithFilename:int:ierr:: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 638 | PyErr_SetExcFromWindowsErrWithFilename:const char*:filename:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 639 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 640 | PyErr_SetExcFromWindowsErrWithFilenameObject:PyObject*::null: |
| 641 | PyErr_SetExcFromWindowsErrWithFilenameObject:PyObject*:type:+1: |
| 642 | PyErr_SetExcFromWindowsErrWithFilenameObject:int:ierr:: |
| 643 | PyErr_SetExcFromWindowsErrWithFilenameObject:PyObject*:filename:+1: |
| 644 | |
| 645 | PyErr_SetExcFromWindowsErrWithFilenameObjects:PyObject*::null: |
| 646 | PyErr_SetExcFromWindowsErrWithFilenameObjects:PyObject*:type:+1: |
| 647 | PyErr_SetExcFromWindowsErrWithFilenameObjects:int:ierr:: |
| 648 | PyErr_SetExcFromWindowsErrWithFilenameObjects:PyObject*:filename:+1: |
| 649 | PyErr_SetExcFromWindowsErrWithFilenameObjects:PyObject*:filename2:+1: |
| 650 | |
| 651 | PyErr_SetExcInfo:void::: |
| 652 | PyErr_SetExcInfo:PyObject*:type:0: |
| 653 | PyErr_SetExcInfo:PyObject*:value:0: |
| 654 | PyErr_SetExcInfo:PyObject*:traceback:0: |
| 655 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 656 | PyErr_SetFromErrno:PyObject*::null: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 657 | PyErr_SetFromErrno:PyObject*:type:+1: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 658 | |
| 659 | PyErr_SetFromErrnoWithFilename:PyObject*::null: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 660 | PyErr_SetFromErrnoWithFilename:PyObject*:type:+1: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 661 | PyErr_SetFromErrnoWithFilename:const char*:filename:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 662 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 663 | PyErr_SetFromErrnoWithFilenameObject:PyObject*::null: |
| 664 | PyErr_SetFromErrnoWithFilenameObject:PyObject*:type:+1: |
| 665 | PyErr_SetFromErrnoWithFilenameObject:PyObject*:filenameObject:+1: |
| 666 | |
| 667 | PyErr_SetFromErrnoWithFilenameObjects:PyObject*::null: |
| 668 | PyErr_SetFromErrnoWithFilenameObjects:PyObject*:type:+1: |
| 669 | PyErr_SetFromErrnoWithFilenameObjects:PyObject*:filenameObject:+1: |
| 670 | PyErr_SetFromErrnoWithFilenameObjects:PyObject*:filenameObject2:+1: |
| 671 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 672 | PyErr_SetFromWindowsErr:PyObject*::null: |
| 673 | PyErr_SetFromWindowsErr:int:ierr:: |
| 674 | |
| 675 | PyErr_SetFromWindowsErrWithFilename:PyObject*::null: |
| 676 | PyErr_SetFromWindowsErrWithFilename:int:ierr:: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 677 | PyErr_SetFromWindowsErrWithFilename:const char*:filename:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 678 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 679 | PyErr_SetImportError:PyObject*::null: |
| 680 | PyErr_SetImportError:PyObject*:msg:+1: |
| 681 | PyErr_SetImportError:PyObject*:name:+1: |
| 682 | PyErr_SetImportError:PyObject*:path:+1: |
| 683 | |
| 684 | PyErr_SetImportErrorSubclass:PyObject*::null: |
| 685 | PyErr_SetImportErrorSubclass:PyObject*:msg:+1: |
| 686 | PyErr_SetImportErrorSubclass:PyObject*:name:+1: |
| 687 | PyErr_SetImportErrorSubclass:PyObject*:path:+1: |
| 688 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 689 | PyErr_SetInterrupt:void::: |
| 690 | |
| 691 | PyErr_SetNone:void::: |
| 692 | PyErr_SetNone:PyObject*:type:+1: |
| 693 | |
| 694 | PyErr_SetObject:void::: |
| 695 | PyErr_SetObject:PyObject*:type:+1: |
| 696 | PyErr_SetObject:PyObject*:value:+1: |
| 697 | |
| 698 | PyErr_SetString:void::: |
| 699 | PyErr_SetString:PyObject*:type:+1: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 700 | PyErr_SetString:const char*:message:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 701 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 702 | PyErr_SyntaxLocation:void::: |
| 703 | PyErr_SyntaxLocation:const char*:filename:: |
| 704 | PyErr_SyntaxLocation:int:lineno:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 705 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 706 | PyErr_SyntaxLocationEx:void::: |
| 707 | PyErr_SyntaxLocationEx:const char*:filename:: |
| 708 | PyErr_SyntaxLocationEx:int:lineno:: |
| 709 | PyErr_SyntaxLocationEx:int:col_offset:: |
| 710 | |
| 711 | PyErr_SyntaxLocationObject:void::: |
| 712 | PyErr_SyntaxLocationObject:PyObject*:filename:+1: |
| 713 | PyErr_SyntaxLocationObject:int:lineno:: |
| 714 | PyErr_SyntaxLocationObject:int:col_offset:: |
Antoine Pitrou | 0676a40 | 2014-09-30 21:16:27 +0200 | [diff] [blame] | 715 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 716 | PyErr_WarnEx:int::: |
| 717 | PyErr_WarnEx:PyObject*:category:0: |
| 718 | PyErr_WarnEx:const char*:message:: |
| 719 | PyErr_WarnEx:Py_ssize_t:stack_level:: |
| 720 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 721 | PyErr_WarnExplicit:int::: |
| 722 | PyErr_WarnExplicit:PyObject*:category:0: |
| 723 | PyErr_WarnExplicit:const char*:message:: |
| 724 | PyErr_WarnExplicit:const char*:filename:: |
| 725 | PyErr_WarnExplicit:int:lineno:: |
| 726 | PyErr_WarnExplicit:const char*:module:: |
| 727 | PyErr_WarnExplicit:PyObject*:registry:0: |
| 728 | |
| 729 | PyErr_WarnExplicitObject:int::: |
| 730 | PyErr_WarnExplicitObject:PyObject*:category:0: |
| 731 | PyErr_WarnExplicitObject:PyObject*:message:0: |
| 732 | PyErr_WarnExplicitObject:PyObject*:filename:0: |
| 733 | PyErr_WarnExplicitObject:int:lineno:: |
| 734 | PyErr_WarnExplicitObject:PyObject*:module:0: |
| 735 | PyErr_WarnExplicitObject:PyObject*:registry:0: |
| 736 | |
| 737 | PyErr_WarnFormat:int::: |
| 738 | PyErr_WarnFormat:PyObject*:category:0: |
| 739 | PyErr_WarnFormat:Py_ssize_t:stack_level:: |
| 740 | PyErr_WarnFormat:const char*:format:: |
| 741 | PyErr_WarnFormat::...:: |
| 742 | |
| 743 | PyErr_WriteUnraisable:void::: |
| 744 | PyErr_WriteUnraisable:PyObject*:obj:0: |
| 745 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 746 | PyEval_AcquireLock:void::: |
| 747 | |
| 748 | PyEval_AcquireThread:void::: |
| 749 | PyEval_AcquireThread:PyThreadState*:tstate:: |
| 750 | |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 751 | PyEval_GetBuiltins:PyObject*::0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 752 | |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 753 | PyEval_GetLocals:PyObject*::0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 754 | |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 755 | PyEval_GetGlobals:PyObject*::0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 756 | |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 757 | PyEval_GetFrame:PyObject*::0: |
| 758 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 759 | PyEval_GetFuncDesc:const char*::: |
| 760 | PyEval_GetFuncDesc:PyObject*:func:0: |
| 761 | |
| 762 | PyEval_GetFuncName:const char*::: |
| 763 | PyEval_GetFuncName:PyObject*:func:0: |
| 764 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 765 | PyEval_InitThreads:void::: |
| 766 | |
| 767 | PyEval_ReleaseLock:void::: |
| 768 | |
| 769 | PyEval_ReleaseThread:void::: |
| 770 | PyEval_ReleaseThread:PyThreadState*:tstate:: |
| 771 | |
| 772 | PyEval_RestoreThread:void::: |
| 773 | PyEval_RestoreThread:PyThreadState*:tstate:: |
| 774 | |
| 775 | PyEval_SaveThread:PyThreadState*::: |
| 776 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 777 | PyEval_SetProfile:void::: |
| 778 | PyEval_SetProfile:Py_tracefunc:func:: |
| 779 | PyEval_SetProfile:PyObject*:obj:+1: |
| 780 | |
| 781 | PyEval_SetTrace:void::: |
| 782 | PyEval_SetTrace:Py_tracefunc:func:: |
| 783 | PyEval_SetTrace:PyObject*:obj:+1: |
| 784 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 785 | PyEval_EvalCode:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 786 | PyEval_EvalCode:PyObject*:co:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 787 | PyEval_EvalCode:PyObject*:globals:0: |
| 788 | PyEval_EvalCode:PyObject*:locals:0: |
| 789 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 790 | PyEval_EvalCodeEx:PyObject*::+1: |
| 791 | PyEval_EvalCodeEx:PyObject*:co:0: |
| 792 | PyEval_EvalCodeEx:PyObject*:globals:0: |
| 793 | PyEval_EvalCodeEx:PyObject*:locals:0: |
| 794 | PyEval_EvalCodeEx:PyObject*const*:args:: |
| 795 | PyEval_EvalCodeEx:int:argcount:: |
| 796 | PyEval_EvalCodeEx:PyObject*const*:kws:: |
| 797 | PyEval_EvalCodeEx:int:kwcount:: |
| 798 | PyEval_EvalCodeEx:PyObject*const*:defs:: |
| 799 | PyEval_EvalCodeEx:int:defcount:: |
| 800 | PyEval_EvalCodeEx:PyObject*:kwdefs:0: |
| 801 | PyEval_EvalCodeEx:PyObject*:closure:0: |
| 802 | |
| 803 | PyEval_EvalFrame:PyObject*::+1: |
| 804 | PyEval_EvalFrame:PyFrameObject*:f:0: |
| 805 | |
| 806 | PyEval_EvalFrameEx:PyObject*::+1: |
| 807 | PyEval_EvalFrameEx:PyFrameObject*:f:0: |
| 808 | PyEval_EvalFrameEx:int:throwflag:: |
| 809 | |
| 810 | PyEval_MergeCompilerFlags:int::: |
| 811 | PyEval_MergeCompilerFlags:PyCompilerFlags*:cf:: |
| 812 | |
| 813 | PyException_GetCause:PyObject*::+1: |
| 814 | PyException_GetCause:PyObject*:ex:0: |
| 815 | |
| 816 | PyException_GetContext:PyObject*::+1: |
| 817 | PyException_GetContext:PyObject*:ex:0: |
| 818 | |
Petri Lehtinen | ce77037 | 2011-10-23 21:03:33 +0300 | [diff] [blame] | 819 | PyException_GetTraceback:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 820 | PyException_GetTraceback:PyObject*:ex:0: |
Petri Lehtinen | ce77037 | 2011-10-23 21:03:33 +0300 | [diff] [blame] | 821 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 822 | PyException_SetCause:void::: |
| 823 | PyException_SetCause:PyObject*:ex:0: |
| 824 | PyException_SetCause:PyObject*:cause:+1: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 825 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 826 | PyException_SetContext:void::: |
| 827 | PyException_SetContext:PyObject*:ex:0: |
| 828 | PyException_SetContext:PyObject*:ctx:+1: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 829 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 830 | PyException_SetTraceback:int::: |
| 831 | PyException_SetTraceback:PyObject*:ex:0: |
| 832 | PyException_SetTraceback:PyObject*:tb:+1: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 833 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 834 | PyFile_FromFd:PyObject*::+1: |
| 835 | PyFile_FromFd:int:fd:: |
| 836 | PyFile_FromFd:const char*:name:: |
| 837 | PyFile_FromFd:const char*:mode:: |
| 838 | PyFile_FromFd:int:buffering:: |
| 839 | PyFile_FromFd:const char*:encoding:: |
| 840 | PyFile_FromFd:const char*:errors:: |
| 841 | PyFile_FromFd:const char*:newline:: |
| 842 | PyFile_FromFd:int:closefd:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 843 | |
| 844 | PyFile_GetLine:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 845 | PyFile_GetLine:PyObject*:p:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 846 | PyFile_GetLine:int:n:: |
| 847 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 848 | PyFile_WriteObject:int::: |
| 849 | PyFile_WriteObject:PyObject*:obj:0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 850 | PyFile_WriteObject:PyObject*:p:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 851 | PyFile_WriteObject:int:flags:: |
| 852 | |
| 853 | PyFile_WriteString:int::: |
| 854 | PyFile_WriteString:const char*:s:: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 855 | PyFile_WriteString:PyObject*:p:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 856 | PyFile_WriteString:int:flags:: |
| 857 | |
| 858 | PyFloat_AS_DOUBLE:double::: |
| 859 | PyFloat_AS_DOUBLE:PyObject*:pyfloat:0: |
| 860 | |
| 861 | PyFloat_AsDouble:double::: |
| 862 | PyFloat_AsDouble:PyObject*:pyfloat:0: |
| 863 | |
| 864 | PyFloat_Check:int::: |
| 865 | PyFloat_Check:PyObject*:p:0: |
| 866 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 867 | PyFloat_CheckExact:int::: |
| 868 | PyFloat_CheckExact:PyObject*:p:0: |
| 869 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 870 | PyFloat_FromDouble:PyObject*::+1: |
| 871 | PyFloat_FromDouble:double:v:: |
| 872 | |
| 873 | PyFloat_FromString:PyObject*::+1: |
| 874 | PyFloat_FromString:PyObject*:str:0: |
| 875 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 876 | PyFloat_GetInfo:PyObject*::+1: |
| 877 | PyFloat_GetInfo::void:: |
| 878 | |
| 879 | PyFrozenSet_Check:int::: |
| 880 | PyFrozenSet_Check:PyObject*:p:0: |
| 881 | |
| 882 | PyFrozenSet_CheckExact:int::: |
| 883 | PyFrozenSet_CheckExact:PyObject*:p:0: |
| 884 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 885 | PyFrozenSet_New:PyObject*::+1: |
| 886 | PyFrozenSet_New:PyObject*:iterable:0: |
| 887 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 888 | PyFunction_Check:int::: |
| 889 | PyFunction_Check:PyObject*:o:0: |
| 890 | |
| 891 | PyFunction_GetAnnotations:PyObject*::0: |
| 892 | PyFunction_GetAnnotations:PyObject*:op:0: |
| 893 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 894 | PyFunction_GetClosure:PyObject*::0: |
| 895 | PyFunction_GetClosure:PyObject*:op:0: |
| 896 | |
| 897 | PyFunction_GetCode:PyObject*::0: |
| 898 | PyFunction_GetCode:PyObject*:op:0: |
| 899 | |
| 900 | PyFunction_GetDefaults:PyObject*::0: |
| 901 | PyFunction_GetDefaults:PyObject*:op:0: |
| 902 | |
| 903 | PyFunction_GetGlobals:PyObject*::0: |
| 904 | PyFunction_GetGlobals:PyObject*:op:0: |
| 905 | |
| 906 | PyFunction_GetModule:PyObject*::0: |
| 907 | PyFunction_GetModule:PyObject*:op:0: |
| 908 | |
| 909 | PyFunction_New:PyObject*::+1: |
| 910 | PyFunction_New:PyObject*:code:+1: |
| 911 | PyFunction_New:PyObject*:globals:+1: |
| 912 | |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 913 | PyFunction_NewWithQualName:PyObject*::+1: |
| 914 | PyFunction_NewWithQualName:PyObject*:code:+1: |
| 915 | PyFunction_NewWithQualName:PyObject*:globals:+1: |
| 916 | PyFunction_NewWithQualName:PyObject*:qualname:+1: |
| 917 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 918 | PyFunction_SetAnnotations:int::: |
| 919 | PyFunction_SetAnnotations:PyObject*:op:0: |
| 920 | PyFunction_SetAnnotations:PyObject*:annotations:+1: |
| 921 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 922 | PyFunction_SetClosure:int::: |
| 923 | PyFunction_SetClosure:PyObject*:op:0: |
| 924 | PyFunction_SetClosure:PyObject*:closure:+1: |
| 925 | |
| 926 | PyFunction_SetDefaults:int::: |
| 927 | PyFunction_SetDefaults:PyObject*:op:0: |
| 928 | PyFunction_SetDefaults:PyObject*:defaults:+1: |
| 929 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 930 | PyGen_Check:int::: |
| 931 | PyGen_Check:PyObject*:ob:0: |
| 932 | |
| 933 | PyGen_CheckExact:int::: |
| 934 | PyGen_CheckExact:PyObject*:ob:0: |
| 935 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 936 | PyGen_New:PyObject*::+1: |
| 937 | PyGen_New:PyFrameObject*:frame:0: |
| 938 | |
Yury Selivanov | 5376ba9 | 2015-06-22 12:19:30 -0400 | [diff] [blame] | 939 | PyGen_NewWithQualName:PyObject*::+1: |
| 940 | PyGen_NewWithQualName:PyFrameObject*:frame:0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 941 | PyGen_NewWithQualName:PyObject*:name:0: |
| 942 | PyGen_NewWithQualName:PyObject*:qualname:0: |
| 943 | |
| 944 | PyCoro_CheckExact:int::: |
| 945 | PyCoro_CheckExact:PyObject*:ob:0: |
Yury Selivanov | 5376ba9 | 2015-06-22 12:19:30 -0400 | [diff] [blame] | 946 | |
| 947 | PyCoro_New:PyObject*::+1: |
| 948 | PyCoro_New:PyFrameObject*:frame:0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 949 | PyCoro_New:PyObject*:name:0: |
| 950 | PyCoro_New:PyObject*:qualname:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 951 | |
| 952 | PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 953 | PyImport_AddModule:const char*:name:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 954 | |
Serhiy Storchaka | bdabb07 | 2018-12-17 17:30:03 +0200 | [diff] [blame] | 955 | PyImport_AddModuleObject:PyObject*::0:reference borrowed from sys.modules |
| 956 | PyImport_AddModuleObject:PyObject*:name:0: |
| 957 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 958 | PyImport_Cleanup:void::: |
| 959 | |
| 960 | PyImport_ExecCodeModule:PyObject*::+1: |
Serhiy Storchaka | c679227 | 2013-10-19 21:03:34 +0300 | [diff] [blame] | 961 | PyImport_ExecCodeModule:const char*:name:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 962 | PyImport_ExecCodeModule:PyObject*:co:0: |
| 963 | |
Benjamin Peterson | 08bf91c | 2010-04-11 16:12:57 +0000 | [diff] [blame] | 964 | PyImport_ExecCodeModuleEx:PyObject*::+1: |
Serhiy Storchaka | c679227 | 2013-10-19 21:03:34 +0300 | [diff] [blame] | 965 | PyImport_ExecCodeModuleEx:const char*:name:: |
Benjamin Peterson | 08bf91c | 2010-04-11 16:12:57 +0000 | [diff] [blame] | 966 | PyImport_ExecCodeModuleEx:PyObject*:co:0: |
Serhiy Storchaka | c679227 | 2013-10-19 21:03:34 +0300 | [diff] [blame] | 967 | PyImport_ExecCodeModuleEx:const char*:pathname:: |
Benjamin Peterson | 08bf91c | 2010-04-11 16:12:57 +0000 | [diff] [blame] | 968 | |
Serhiy Storchaka | bdabb07 | 2018-12-17 17:30:03 +0200 | [diff] [blame] | 969 | PyImport_ExecCodeModuleObject:PyObject*::+1: |
| 970 | PyImport_ExecCodeModuleObject:const char*:name:: |
| 971 | PyImport_ExecCodeModuleObject:PyObject*:co:0: |
| 972 | PyImport_ExecCodeModuleObject:PyObject*:pathname:0: |
| 973 | PyImport_ExecCodeModuleObject:PyObject*:cpathname:0: |
| 974 | |
| 975 | PyImport_ExecCodeModuleWithPathnames:PyObject*::+1: |
| 976 | PyImport_ExecCodeModuleWithPathnames:const char*:name:: |
| 977 | PyImport_ExecCodeModuleWithPathnames:PyObject*:co:0: |
| 978 | PyImport_ExecCodeModuleWithPathnames:const char*:pathname:: |
| 979 | PyImport_ExecCodeModuleWithPathnames:const char*:cpathname:: |
| 980 | |
| 981 | PyImport_GetImporter:PyObject*::+1: |
| 982 | PyImport_GetImporter:PyObject*:path:0: |
| 983 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 984 | PyImport_GetMagicNumber:long::: |
| 985 | |
Serhiy Storchaka | 4e29f56 | 2018-05-22 20:59:42 +0300 | [diff] [blame] | 986 | PyImport_GetModule:PyObject*::+1: |
| 987 | PyImport_GetModule:PyObject*:name:0: |
| 988 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 989 | PyImport_GetModuleDict:PyObject*::0: |
| 990 | |
| 991 | PyImport_Import:PyObject*::+1: |
| 992 | PyImport_Import:PyObject*:name:0: |
| 993 | |
| 994 | PyImport_ImportFrozenModule:int::: |
Serhiy Storchaka | c679227 | 2013-10-19 21:03:34 +0300 | [diff] [blame] | 995 | PyImport_ImportFrozenModule:const char*::: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 996 | |
Serhiy Storchaka | bdabb07 | 2018-12-17 17:30:03 +0200 | [diff] [blame] | 997 | PyImport_ImportFrozenModuleObject:int::: |
| 998 | PyImport_ImportFrozenModuleObject:PyObject*::+1: |
| 999 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1000 | PyImport_ImportModule:PyObject*::+1: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 1001 | PyImport_ImportModule:const char*:name:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1002 | |
| 1003 | PyImport_ImportModuleEx:PyObject*::+1: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 1004 | PyImport_ImportModuleEx:const char*:name:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1005 | PyImport_ImportModuleEx:PyObject*:globals:0:??? |
| 1006 | PyImport_ImportModuleEx:PyObject*:locals:0:??? |
| 1007 | PyImport_ImportModuleEx:PyObject*:fromlist:0:??? |
| 1008 | |
Benjamin Peterson | 08bf91c | 2010-04-11 16:12:57 +0000 | [diff] [blame] | 1009 | PyImport_ImportModuleLevel:PyObject*::+1: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 1010 | PyImport_ImportModuleLevel:const char*:name:: |
Benjamin Peterson | 08bf91c | 2010-04-11 16:12:57 +0000 | [diff] [blame] | 1011 | PyImport_ImportModuleLevel:PyObject*:globals:0:??? |
| 1012 | PyImport_ImportModuleLevel:PyObject*:locals:0:??? |
| 1013 | PyImport_ImportModuleLevel:PyObject*:fromlist:0:??? |
| 1014 | PyImport_ImportModuleLevel:int:level:: |
| 1015 | |
Serhiy Storchaka | bdabb07 | 2018-12-17 17:30:03 +0200 | [diff] [blame] | 1016 | PyImport_ImportModuleLevelObject:PyObject*::+1: |
| 1017 | PyImport_ImportModuleLevelObject:PyObject*:name:0: |
| 1018 | PyImport_ImportModuleLevelObject:PyObject*:globals:0:??? |
| 1019 | PyImport_ImportModuleLevelObject:PyObject*:locals:0:??? |
| 1020 | PyImport_ImportModuleLevelObject:PyObject*:fromlist:0:??? |
| 1021 | PyImport_ImportModuleLevelObject:int:level:: |
| 1022 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1023 | PyImport_ImportModuleNoBlock:PyObject*::+1: |
| 1024 | PyImport_ImportModuleNoBlock:const char*:name:: |
| 1025 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1026 | PyImport_ReloadModule:PyObject*::+1: |
| 1027 | PyImport_ReloadModule:PyObject*:m:0: |
| 1028 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1029 | PyIndex_Check:int::: |
| 1030 | PyIndex_Check:PyObject*:o:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1031 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1032 | PyInstanceMethod_Check:int::: |
| 1033 | PyInstanceMethod_Check:PyObject*:o:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1034 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1035 | PyInstanceMethod_Function:PyObject*::0: |
| 1036 | PyInstanceMethod_Function:PyObject*:im:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1037 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1038 | PyInstanceMethod_GET_FUNCTION:PyObject*::0: |
| 1039 | PyInstanceMethod_GET_FUNCTION:PyObject*:im:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1040 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1041 | PyInstanceMethod_New:PyObject*::+1: |
| 1042 | PyInstanceMethod_New:PyObject*:func:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1043 | |
| 1044 | PyInterpreterState_Clear:void::: |
| 1045 | PyInterpreterState_Clear:PyInterpreterState*:interp:: |
| 1046 | |
| 1047 | PyInterpreterState_Delete:void::: |
| 1048 | PyInterpreterState_Delete:PyInterpreterState*:interp:: |
| 1049 | |
Serhiy Storchaka | 4e29f56 | 2018-05-22 20:59:42 +0300 | [diff] [blame] | 1050 | PyInterpreterState_GetID:int64_t::: |
| 1051 | PyInterpreterState_GetID:PyInterpreterState*:interp:: |
| 1052 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1053 | PyInterpreterState_New:PyInterpreterState*::: |
| 1054 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1055 | PyIter_Check:int::: |
| 1056 | PyIter_Check:PyObject*:o:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1057 | |
| 1058 | PyIter_Next:PyObject*::+1: |
| 1059 | PyIter_Next:PyObject*:o:0: |
| 1060 | |
| 1061 | PyList_Append:int::: |
| 1062 | PyList_Append:PyObject*:list:0: |
| 1063 | PyList_Append:PyObject*:item:+1: |
| 1064 | |
| 1065 | PyList_AsTuple:PyObject*::+1: |
| 1066 | PyList_AsTuple:PyObject*:list:0: |
| 1067 | |
| 1068 | PyList_Check:int::: |
| 1069 | PyList_Check:PyObject*:p:0: |
| 1070 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1071 | PyList_CheckExact:int::: |
| 1072 | PyList_CheckExact:PyObject*:p:0: |
| 1073 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1074 | PyList_GET_ITEM:PyObject*::0: |
| 1075 | PyList_GET_ITEM:PyObject*:list:0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1076 | PyList_GET_ITEM:Py_ssize_t:i:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1077 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1078 | PyList_GET_SIZE:Py_ssize_t::: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1079 | PyList_GET_SIZE:PyObject*:list:0: |
| 1080 | |
| 1081 | PyList_GetItem:PyObject*::0: |
| 1082 | PyList_GetItem:PyObject*:list:0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1083 | PyList_GetItem:Py_ssize_t:index:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1084 | |
| 1085 | PyList_GetSlice:PyObject*::+1: |
| 1086 | PyList_GetSlice:PyObject*:list:0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1087 | PyList_GetSlice:Py_ssize_t:low:: |
| 1088 | PyList_GetSlice:Py_ssize_t:high:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1089 | |
| 1090 | PyList_Insert:int::: |
| 1091 | PyList_Insert:PyObject*:list:0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1092 | PyList_Insert:Py_ssize_t:index:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1093 | PyList_Insert:PyObject*:item:+1: |
| 1094 | |
| 1095 | PyList_New:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1096 | PyList_New:Py_ssize_t:len:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1097 | |
| 1098 | PyList_Reverse:int::: |
| 1099 | PyList_Reverse:PyObject*:list:0: |
| 1100 | |
| 1101 | PyList_SET_ITEM:void::: |
| 1102 | PyList_SET_ITEM:PyObject*:list:0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1103 | PyList_SET_ITEM:Py_ssize_t:i:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1104 | PyList_SET_ITEM:PyObject*:o:0: |
| 1105 | |
| 1106 | PyList_SetItem:int::: |
| 1107 | PyList_SetItem:PyObject*:list:0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1108 | PyList_SetItem:Py_ssize_t:index:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1109 | PyList_SetItem:PyObject*:item:0: |
| 1110 | |
| 1111 | PyList_SetSlice:int::: |
| 1112 | PyList_SetSlice:PyObject*:list:0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1113 | PyList_SetSlice:Py_ssize_t:low:: |
| 1114 | PyList_SetSlice:Py_ssize_t:high:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1115 | PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements? |
| 1116 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1117 | PyList_Size:Py_ssize_t::: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1118 | PyList_Size:PyObject*:list:0: |
| 1119 | |
| 1120 | PyList_Sort:int::: |
| 1121 | PyList_Sort:PyObject*:list:0: |
| 1122 | |
| 1123 | PyLong_AsDouble:double::: |
| 1124 | PyLong_AsDouble:PyObject*:pylong:0: |
| 1125 | |
| 1126 | PyLong_AsLong:long::: |
| 1127 | PyLong_AsLong:PyObject*:pylong:0: |
| 1128 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1129 | PyLong_AsLongAndOverflow:long::: |
| 1130 | PyLong_AsLongAndOverflow:PyObject*:obj:0: |
| 1131 | PyLong_AsLongAndOverflow:int*:overflow:: |
| 1132 | |
| 1133 | PyLong_AsLongLong:long long::: |
| 1134 | PyLong_AsLongLong:PyObject*:obj:0: |
| 1135 | |
| 1136 | PyLong_AsLongLongAndOverflow:long long::: |
| 1137 | PyLong_AsLongLongAndOverflow:PyObject*:obj:0: |
| 1138 | PyLong_AsLongLongAndOverflow:int*:overflow:: |
| 1139 | |
| 1140 | PyLong_AsSize_t:size_t::: |
| 1141 | PyLong_AsSize_t:PyObject*:pylong:0: |
| 1142 | |
| 1143 | PyLong_AsSsize_t:Py_ssize_t::: |
| 1144 | PyLong_AsSsize_t:PyObject*:pylong:0: |
| 1145 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1146 | PyLong_AsUnsignedLong:unsigned long::: |
| 1147 | PyLong_AsUnsignedLong:PyObject*:pylong:0: |
| 1148 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1149 | PyLong_AsUnsignedLongLong:unsigned long long::: |
| 1150 | PyLong_AsUnsignedLongLong:PyObject*:pylong:0: |
| 1151 | |
| 1152 | PyLong_AsUnsignedLongMask:unsigned long::: |
| 1153 | PyLong_AsUnsignedLongMask:PyObject*:obj:0: |
| 1154 | |
| 1155 | PyLong_AsUnsignedLongLongMask:unsigned long long::: |
| 1156 | PyLong_AsUnsignedLongLongMask:PyObject*:obj:0: |
| 1157 | |
| 1158 | PyLong_AsVoidPtr:void*::: |
| 1159 | PyLong_AsVoidPtr:PyObject*:pylong:0: |
| 1160 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1161 | PyLong_Check:int::: |
| 1162 | PyLong_Check:PyObject*:p:0: |
| 1163 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1164 | PyLong_CheckExact:int::: |
| 1165 | PyLong_CheckExact:PyObject*:p:0: |
| 1166 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1167 | PyLong_FromDouble:PyObject*::+1: |
| 1168 | PyLong_FromDouble:double:v:: |
| 1169 | |
| 1170 | PyLong_FromLong:PyObject*::+1: |
| 1171 | PyLong_FromLong:long:v:: |
| 1172 | |
| 1173 | PyLong_FromLongLong:PyObject*::+1: |
| 1174 | PyLong_FromLongLong:long long:v:: |
| 1175 | |
| 1176 | PyLong_FromUnsignedLongLong:PyObject*::+1: |
| 1177 | PyLong_FromUnsignedLongLong:unsigned long long:v:: |
| 1178 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1179 | PyLong_FromSize_t:PyObject*::+1: |
| 1180 | PyLong_FromSize_t:size_t:v:: |
| 1181 | |
| 1182 | PyLong_FromSsize_t:PyObject*::+1: |
| 1183 | PyLong_FromSsize_t:Py_ssize_t:v:: |
| 1184 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1185 | PyLong_FromString:PyObject*::+1: |
Serhiy Storchaka | c679227 | 2013-10-19 21:03:34 +0300 | [diff] [blame] | 1186 | PyLong_FromString:const char*:str:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1187 | PyLong_FromString:char**:pend:: |
| 1188 | PyLong_FromString:int:base:: |
| 1189 | |
| 1190 | PyLong_FromUnicode:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1191 | PyLong_FromUnicode:Py_UNICODE*:u:: |
| 1192 | PyLong_FromUnicode:Py_ssize_t:length:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1193 | PyLong_FromUnicode:int:base:: |
| 1194 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1195 | PyLong_FromUnicodeObject:PyObject*::+1: |
| 1196 | PyLong_FromUnicodeObject:PyObject*:u:0: |
| 1197 | PyLong_FromUnicodeObject:int:base:: |
| 1198 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1199 | PyLong_FromUnsignedLong:PyObject*::+1: |
| 1200 | PyLong_FromUnsignedLong:unsignedlong:v:: |
| 1201 | |
| 1202 | PyLong_FromVoidPtr:PyObject*::+1: |
| 1203 | PyLong_FromVoidPtr:void*:p:: |
| 1204 | |
| 1205 | PyMapping_Check:int::: |
| 1206 | PyMapping_Check:PyObject*:o:0: |
| 1207 | |
| 1208 | PyMapping_DelItem:int::: |
| 1209 | PyMapping_DelItem:PyObject*:o:0: |
| 1210 | PyMapping_DelItem:PyObject*:key:0: |
| 1211 | |
| 1212 | PyMapping_DelItemString:int::: |
| 1213 | PyMapping_DelItemString:PyObject*:o:0: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 1214 | PyMapping_DelItemString:const char*:key:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1215 | |
| 1216 | PyMapping_GetItemString:PyObject*::+1: |
| 1217 | PyMapping_GetItemString:PyObject*:o:0: |
Serhiy Storchaka | c679227 | 2013-10-19 21:03:34 +0300 | [diff] [blame] | 1218 | PyMapping_GetItemString:const char*:key:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1219 | |
| 1220 | PyMapping_HasKey:int::: |
| 1221 | PyMapping_HasKey:PyObject*:o:0: |
| 1222 | PyMapping_HasKey:PyObject*:key:: |
| 1223 | |
| 1224 | PyMapping_HasKeyString:int::: |
| 1225 | PyMapping_HasKeyString:PyObject*:o:0: |
Serhiy Storchaka | c679227 | 2013-10-19 21:03:34 +0300 | [diff] [blame] | 1226 | PyMapping_HasKeyString:const char*:key:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1227 | |
| 1228 | PyMapping_Items:PyObject*::+1: |
| 1229 | PyMapping_Items:PyObject*:o:0: |
| 1230 | |
| 1231 | PyMapping_Keys:PyObject*::+1: |
| 1232 | PyMapping_Keys:PyObject*:o:0: |
| 1233 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1234 | PyMapping_Length:Py_ssize_t::: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1235 | PyMapping_Length:PyObject*:o:0: |
| 1236 | |
| 1237 | PyMapping_SetItemString:int::: |
| 1238 | PyMapping_SetItemString:PyObject*:o:0: |
Serhiy Storchaka | c679227 | 2013-10-19 21:03:34 +0300 | [diff] [blame] | 1239 | PyMapping_SetItemString:const char*:key:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1240 | PyMapping_SetItemString:PyObject*:v:+1: |
| 1241 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1242 | PyMapping_Size:Py_ssize_t::: |
| 1243 | PyMapping_Size:PyObject*:o:0: |
| 1244 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1245 | PyMapping_Values:PyObject*::+1: |
| 1246 | PyMapping_Values:PyObject*:o:0: |
| 1247 | |
| 1248 | PyMarshal_ReadLastObjectFromFile:PyObject*::+1: |
| 1249 | PyMarshal_ReadLastObjectFromFile:FILE*:file:: |
| 1250 | |
| 1251 | PyMarshal_ReadObjectFromFile:PyObject*::+1: |
| 1252 | PyMarshal_ReadObjectFromFile:FILE*:file:: |
| 1253 | |
| 1254 | PyMarshal_ReadObjectFromString:PyObject*::+1: |
Serhiy Storchaka | c679227 | 2013-10-19 21:03:34 +0300 | [diff] [blame] | 1255 | PyMarshal_ReadObjectFromString:const char*:string:: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1256 | PyMarshal_ReadObjectFromString:Py_ssize_t:len:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1257 | |
| 1258 | PyMarshal_WriteObjectToString:PyObject*::+1: |
| 1259 | PyMarshal_WriteObjectToString:PyObject*:value:0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1260 | PyMarshal_WriteObjectToString:int:version:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1261 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1262 | PyMemoryView_Check:int::: |
| 1263 | PyMemoryView_Check:PyObject*:obj:0: |
| 1264 | |
| 1265 | PyMemoryView_FromBuffer:PyObject*::+1: |
| 1266 | PyMemoryView_FromBuffer:Py_buffer*:view:: |
| 1267 | |
| 1268 | PyMemoryView_FromMemory:PyObject*::+1: |
| 1269 | PyMemoryView_FromMemory:char*:mem:: |
| 1270 | PyMemoryView_FromMemory:Py_ssize_t:size:: |
| 1271 | PyMemoryView_FromMemory:int:flags:: |
| 1272 | |
| 1273 | PyMemoryView_FromObject:PyObject*::+1: |
| 1274 | PyMemoryView_FromObject:PyObject*:obj:0: |
| 1275 | |
| 1276 | PyMemoryView_GET_BASE:Py_buffer*::: |
| 1277 | PyMemoryView_GET_BASE:PyObject*:mview:0: |
| 1278 | |
| 1279 | PyMemoryView_GET_BUFFER:Py_buffer*::: |
| 1280 | PyMemoryView_GET_BUFFER:PyObject*:mview:0: |
| 1281 | |
| 1282 | PyMemoryView_GetContiguous:PyObject*::+1: |
| 1283 | PyMemoryView_GetContiguous:PyObject*:obj:0: |
| 1284 | PyMemoryView_GetContiguous:int:buffertype:: |
| 1285 | PyMemoryView_GetContiguous:char:order:: |
| 1286 | |
| 1287 | PyMethod_Check:int::: |
| 1288 | PyMethod_Check:PyObject*:o:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1289 | |
| 1290 | PyMethod_Function:PyObject*::0: |
| 1291 | PyMethod_Function:PyObject*:im:0: |
| 1292 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1293 | PyMethod_GET_FUNCTION:PyObject*::0: |
| 1294 | PyMethod_GET_FUNCTION:PyObject*:im:0: |
| 1295 | |
| 1296 | PyMethod_GET_SELF:PyObject*::0: |
| 1297 | PyMethod_GET_SELF:PyObject*:im:0: |
| 1298 | |
| 1299 | PyMethod_New:PyObject*::+1: |
| 1300 | PyMethod_New:PyObject*:func:0: |
| 1301 | PyMethod_New:PyObject*:self:0: |
| 1302 | PyMethod_New:PyObject*:class:0: |
| 1303 | |
| 1304 | PyMethod_Self:PyObject*::0: |
| 1305 | PyMethod_Self:PyObject*:im:0: |
| 1306 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1307 | PyModule_AddFunctions:int::: |
| 1308 | PyModule_AddFunctions:PyObject*:module:0: |
| 1309 | PyModule_AddFunctions:PyMethodDef*:functions:: |
| 1310 | |
| 1311 | PyModule_AddIntConstant:int::: |
| 1312 | PyModule_AddIntConstant:PyObject*:module:0: |
| 1313 | PyModule_AddIntConstant:const char*:name:: |
| 1314 | PyModule_AddIntConstant:long:value:: |
| 1315 | |
| 1316 | PyModule_AddIntMacro:int::: |
| 1317 | PyModule_AddIntMacro:PyObject*:module:0: |
| 1318 | PyModule_AddIntMacro::macro:: |
| 1319 | |
| 1320 | PyModule_AddObject:int::: |
| 1321 | PyModule_AddObject:PyObject*:module:0: |
| 1322 | PyModule_AddObject:const char*:name:: |
| 1323 | PyModule_AddObject:PyObject*:value:+1: |
| 1324 | |
| 1325 | PyModule_AddStringConstant:int::: |
| 1326 | PyModule_AddStringConstant:PyObject*:module:0: |
| 1327 | PyModule_AddStringConstant:const char*:name:: |
| 1328 | PyModule_AddStringConstant:const char*:value:: |
| 1329 | |
| 1330 | PyModule_AddStringMacro:int::: |
| 1331 | PyModule_AddStringMacro:PyObject*:module:0: |
| 1332 | PyModule_AddStringMacro::macro:: |
| 1333 | |
| 1334 | PyModule_Check:int::: |
| 1335 | PyModule_Check:PyObject*:p:0: |
| 1336 | |
| 1337 | PyModule_CheckExact:int::: |
| 1338 | PyModule_CheckExact:PyObject*:p:0: |
| 1339 | |
| 1340 | PyModule_Create:PyObject*::+1: |
| 1341 | PyModule_Create:PyModuleDef*:def:: |
| 1342 | |
| 1343 | PyModule_Create2:PyObject*::+1: |
| 1344 | PyModule_Create2:PyModuleDef*:def:: |
| 1345 | PyModule_Create2:int:module_api_version:: |
| 1346 | |
| 1347 | PyModule_ExecDef:int::: |
| 1348 | PyModule_ExecDef:PyObject*:module:0: |
| 1349 | PyModule_ExecDef:PyModuleDef*:def:: |
| 1350 | |
| 1351 | PyModule_FromDefAndSpec:PyObject*::+1: |
| 1352 | PyModule_FromDefAndSpec:PyModuleDef*:def:: |
| 1353 | PyModule_FromDefAndSpec:PyObject*:spec:0: |
| 1354 | |
| 1355 | PyModule_FromDefAndSpec2:PyObject*::+1: |
| 1356 | PyModule_FromDefAndSpec2:PyModuleDef*:def:: |
| 1357 | PyModule_FromDefAndSpec2:PyObject*:spec:0: |
| 1358 | PyModule_FromDefAndSpec2:int:module_api_version:: |
| 1359 | |
| 1360 | PyModule_GetDef:PyModuleDef*::0: |
| 1361 | PyModule_GetDef:PyObject*:module:0: |
| 1362 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1363 | PyModule_GetDict:PyObject*::0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1364 | PyModule_GetDict:PyObject*:module:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1365 | |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 1366 | PyModule_GetFilename:const char*::: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1367 | PyModule_GetFilename:PyObject*:module:0: |
| 1368 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1369 | PyModule_GetFilenameObject:PyObject*::+1: |
| 1370 | PyModule_GetFilenameObject:PyObject*:module:0: |
| 1371 | |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 1372 | PyModule_GetName:const char*::: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1373 | PyModule_GetName:PyObject*:module:0: |
| 1374 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1375 | PyModule_GetNameObject:PyObject*::+1: |
| 1376 | PyModule_GetNameObject:PyObject*:module:0: |
| 1377 | |
| 1378 | PyModule_GetState:void*::: |
| 1379 | PyModule_GetState:PyObject*:module:0: |
| 1380 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1381 | PyModule_New:PyObject*::+1: |
| 1382 | PyModule_New::char* name:: |
| 1383 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1384 | PyModule_NewObject:PyObject*::+1: |
| 1385 | PyModule_NewObject:PyObject*:name:+1: |
| 1386 | |
| 1387 | PyModule_SetDocString:int::: |
| 1388 | PyModule_SetDocString:PyObject*:module:0: |
| 1389 | PyModule_SetDocString:const char*:docstring:: |
| 1390 | |
| 1391 | PyModuleDef_Init:PyObject*::0: |
| 1392 | PyModuleDef_Init:PyModuleDef*:def:0: |
| 1393 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1394 | PyNumber_Absolute:PyObject*::+1: |
| 1395 | PyNumber_Absolute:PyObject*:o:0: |
| 1396 | |
| 1397 | PyNumber_Add:PyObject*::+1: |
| 1398 | PyNumber_Add:PyObject*:o1:0: |
| 1399 | PyNumber_Add:PyObject*:o2:0: |
| 1400 | |
| 1401 | PyNumber_And:PyObject*::+1: |
| 1402 | PyNumber_And:PyObject*:o1:0: |
| 1403 | PyNumber_And:PyObject*:o2:0: |
| 1404 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1405 | PyNumber_AsSsize_t:Py_ssize_t::: |
| 1406 | PyNumber_AsSsize_t:PyObject*:o:0: |
| 1407 | PyNumber_AsSsize_t:PyObject*:exc:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1408 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1409 | PyNumber_Check:int::: |
| 1410 | PyNumber_Check:PyObject*:o:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1411 | |
| 1412 | PyNumber_Divmod:PyObject*::+1: |
| 1413 | PyNumber_Divmod:PyObject*:o1:0: |
| 1414 | PyNumber_Divmod:PyObject*:o2:0: |
| 1415 | |
| 1416 | PyNumber_Float:PyObject*::+1: |
| 1417 | PyNumber_Float:PyObject*:o:0: |
| 1418 | |
| 1419 | PyNumber_FloorDivide:PyObject*::+1: |
| 1420 | PyNumber_FloorDivide:PyObject*:v:0: |
| 1421 | PyNumber_FloorDivide:PyObject*:w:0: |
| 1422 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1423 | PyNumber_Index:PyObject*::+1: |
| 1424 | PyNumber_Index:PyObject*:o:0: |
| 1425 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1426 | PyNumber_InPlaceAdd:PyObject*::+1: |
| 1427 | PyNumber_InPlaceAdd:PyObject*:v:0: |
| 1428 | PyNumber_InPlaceAdd:PyObject*:w:0: |
| 1429 | |
| 1430 | PyNumber_InPlaceAnd:PyObject*::+1: |
| 1431 | PyNumber_InPlaceAnd:PyObject*:v:0: |
| 1432 | PyNumber_InPlaceAnd:PyObject*:w:0: |
| 1433 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1434 | PyNumber_InPlaceFloorDivide:PyObject*::+1: |
| 1435 | PyNumber_InPlaceFloorDivide:PyObject*:v:0: |
| 1436 | PyNumber_InPlaceFloorDivide:PyObject*:w:0: |
| 1437 | |
| 1438 | PyNumber_InPlaceLshift:PyObject*::+1: |
| 1439 | PyNumber_InPlaceLshift:PyObject*:v:0: |
| 1440 | PyNumber_InPlaceLshift:PyObject*:w:0: |
| 1441 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1442 | PyNumber_InPlaceMatrixMultiply:PyObject*::+1: |
| 1443 | PyNumber_InPlaceMatrixMultiply:PyObject*:o1:0: |
| 1444 | PyNumber_InPlaceMatrixMultiply:PyObject*:o2:0: |
| 1445 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1446 | PyNumber_InPlaceMultiply:PyObject*::+1: |
| 1447 | PyNumber_InPlaceMultiply:PyObject*:v:0: |
| 1448 | PyNumber_InPlaceMultiply:PyObject*:w:0: |
| 1449 | |
| 1450 | PyNumber_InPlaceOr:PyObject*::+1: |
| 1451 | PyNumber_InPlaceOr:PyObject*:v:0: |
| 1452 | PyNumber_InPlaceOr:PyObject*:w:0: |
| 1453 | |
| 1454 | PyNumber_InPlacePower:PyObject*::+1: |
| 1455 | PyNumber_InPlacePower:PyObject*:v:0: |
| 1456 | PyNumber_InPlacePower:PyObject*:w:0: |
| 1457 | PyNumber_InPlacePower:PyObject*:z:0: |
| 1458 | |
| 1459 | PyNumber_InPlaceRemainder:PyObject*::+1: |
| 1460 | PyNumber_InPlaceRemainder:PyObject*:v:0: |
| 1461 | PyNumber_InPlaceRemainder:PyObject*:w:0: |
| 1462 | |
| 1463 | PyNumber_InPlaceRshift:PyObject*::+1: |
| 1464 | PyNumber_InPlaceRshift:PyObject*:v:0: |
| 1465 | PyNumber_InPlaceRshift:PyObject*:w:0: |
| 1466 | |
| 1467 | PyNumber_InPlaceSubtract:PyObject*::+1: |
| 1468 | PyNumber_InPlaceSubtract:PyObject*:v:0: |
| 1469 | PyNumber_InPlaceSubtract:PyObject*:w:0: |
| 1470 | |
| 1471 | PyNumber_InPlaceTrueDivide:PyObject*::+1: |
| 1472 | PyNumber_InPlaceTrueDivide:PyObject*:v:0: |
| 1473 | PyNumber_InPlaceTrueDivide:PyObject*:w:0: |
| 1474 | |
| 1475 | PyNumber_InPlaceXor:PyObject*::+1: |
| 1476 | PyNumber_InPlaceXor:PyObject*:v:0: |
| 1477 | PyNumber_InPlaceXor:PyObject*:w:0: |
| 1478 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1479 | PyNumber_Invert:PyObject*::+1: |
| 1480 | PyNumber_Invert:PyObject*:o:0: |
| 1481 | |
| 1482 | PyNumber_Long:PyObject*::+1: |
| 1483 | PyNumber_Long:PyObject*:o:0: |
| 1484 | |
| 1485 | PyNumber_Lshift:PyObject*::+1: |
| 1486 | PyNumber_Lshift:PyObject*:o1:0: |
| 1487 | PyNumber_Lshift:PyObject*:o2:0: |
| 1488 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1489 | PyNumber_MatrixMultiply:PyObject*::+1: |
| 1490 | PyNumber_MatrixMultiply:PyObject*:o1:0: |
| 1491 | PyNumber_MatrixMultiply:PyObject*:o2:0: |
| 1492 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1493 | PyNumber_Multiply:PyObject*::+1: |
| 1494 | PyNumber_Multiply:PyObject*:o1:0: |
| 1495 | PyNumber_Multiply:PyObject*:o2:0: |
| 1496 | |
| 1497 | PyNumber_Negative:PyObject*::+1: |
| 1498 | PyNumber_Negative:PyObject*:o:0: |
| 1499 | |
| 1500 | PyNumber_Or:PyObject*::+1: |
| 1501 | PyNumber_Or:PyObject*:o1:0: |
| 1502 | PyNumber_Or:PyObject*:o2:0: |
| 1503 | |
| 1504 | PyNumber_Positive:PyObject*::+1: |
| 1505 | PyNumber_Positive:PyObject*:o:0: |
| 1506 | |
| 1507 | PyNumber_Power:PyObject*::+1: |
| 1508 | PyNumber_Power:PyObject*:o1:0: |
| 1509 | PyNumber_Power:PyObject*:o2:0: |
| 1510 | PyNumber_Power:PyObject*:o3:0: |
| 1511 | |
| 1512 | PyNumber_Remainder:PyObject*::+1: |
| 1513 | PyNumber_Remainder:PyObject*:o1:0: |
| 1514 | PyNumber_Remainder:PyObject*:o2:0: |
| 1515 | |
| 1516 | PyNumber_Rshift:PyObject*::+1: |
| 1517 | PyNumber_Rshift:PyObject*:o1:0: |
| 1518 | PyNumber_Rshift:PyObject*:o2:0: |
| 1519 | |
| 1520 | PyNumber_Subtract:PyObject*::+1: |
| 1521 | PyNumber_Subtract:PyObject*:o1:0: |
| 1522 | PyNumber_Subtract:PyObject*:o2:0: |
| 1523 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1524 | PyNumber_ToBase:PyObject*::+1: |
| 1525 | PyNumber_ToBase:PyObject*:n:0: |
| 1526 | PyNumber_ToBase:int:base:: |
| 1527 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1528 | PyNumber_TrueDivide:PyObject*::+1: |
| 1529 | PyNumber_TrueDivide:PyObject*:v:0: |
| 1530 | PyNumber_TrueDivide:PyObject*:w:0: |
| 1531 | |
| 1532 | PyNumber_Xor:PyObject*::+1: |
| 1533 | PyNumber_Xor:PyObject*:o1:0: |
| 1534 | PyNumber_Xor:PyObject*:o2:0: |
| 1535 | |
Larry Hastings | b082731 | 2014-02-09 22:05:19 -0800 | [diff] [blame] | 1536 | PyObject_AsFileDescriptor:int::: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1537 | PyObject_AsFileDescriptor:PyObject*:o:0: |
| 1538 | |
Serhiy Storchaka | 4e29f56 | 2018-05-22 20:59:42 +0300 | [diff] [blame] | 1539 | PyOS_AfterFork:void::: |
| 1540 | |
| 1541 | PyOS_AfterFork_Child:void::: |
| 1542 | |
| 1543 | PyOS_AfterFork_Parent:void::: |
| 1544 | |
| 1545 | PyOS_BeforeFork:void::: |
| 1546 | |
Brett Cannon | 746102b | 2016-06-09 16:58:38 -0700 | [diff] [blame] | 1547 | PyOS_FSPath:PyObject*::+1: |
| 1548 | PyOS_FSPath:PyObject*:path:0: |
| 1549 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1550 | PyObject_ASCII:PyObject*::+1: |
| 1551 | PyObject_ASCII:PyObject*:o:0: |
| 1552 | |
| 1553 | PyObject_AsCharBuffer:int::: |
| 1554 | PyObject_AsCharBuffer:PyObject*:obj:0: |
| 1555 | PyObject_AsCharBuffer:const char**:buffer:: |
| 1556 | PyObject_AsCharBuffer:Py_ssize_t*:buffer_len:: |
| 1557 | |
| 1558 | PyObject_AsReadBuffer:int::: |
| 1559 | PyObject_AsReadBuffer:PyObject*:obj:0: |
| 1560 | PyObject_AsReadBuffer:const void**:buffer:: |
| 1561 | PyObject_AsReadBuffer:Py_ssize_t*:buffer_len:: |
| 1562 | |
| 1563 | PyObject_AsWriteBuffer:int::: |
| 1564 | PyObject_AsWriteBuffer:PyObject*:obj:0: |
| 1565 | PyObject_AsWriteBuffer:void**:buffer:: |
| 1566 | PyObject_AsWriteBuffer:Py_ssize_t*:buffer_len:: |
| 1567 | |
| 1568 | PyObject_Bytes:PyObject*::+1: |
| 1569 | PyObject_Bytes:PyObject*:o:0: |
| 1570 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1571 | PyObject_Call:PyObject*::+1: |
| 1572 | PyObject_Call:PyObject*:callable_object:0: |
| 1573 | PyObject_Call:PyObject*:args:0: |
| 1574 | PyObject_Call:PyObject*:kw:0: |
| 1575 | |
| 1576 | PyObject_CallFunction:PyObject*::+1: |
| 1577 | PyObject_CallFunction:PyObject*:callable_object:0: |
Serhiy Storchaka | 1cfebc7 | 2013-05-29 18:50:54 +0300 | [diff] [blame] | 1578 | PyObject_CallFunction:const char*:format:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1579 | PyObject_CallFunction::...:: |
| 1580 | |
| 1581 | PyObject_CallFunctionObjArgs:PyObject*::+1: |
| 1582 | PyObject_CallFunctionObjArgs:PyObject*:callable:0: |
| 1583 | PyObject_CallFunctionObjArgs::...:: |
| 1584 | |
| 1585 | PyObject_CallMethod:PyObject*::+1: |
| 1586 | PyObject_CallMethod:PyObject*:o:0: |
Serhiy Storchaka | 1cfebc7 | 2013-05-29 18:50:54 +0300 | [diff] [blame] | 1587 | PyObject_CallMethod:const char*:m:: |
| 1588 | PyObject_CallMethod:const char*:format:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1589 | PyObject_CallMethod::...:: |
| 1590 | |
| 1591 | PyObject_CallMethodObjArgs:PyObject*::+1: |
| 1592 | PyObject_CallMethodObjArgs:PyObject*:o:0: |
Serhiy Storchaka | dce0550 | 2013-05-28 22:46:15 +0300 | [diff] [blame] | 1593 | PyObject_CallMethodObjArgs:PyObject*:name:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1594 | PyObject_CallMethodObjArgs::...:: |
| 1595 | |
| 1596 | PyObject_CallObject:PyObject*::+1: |
| 1597 | PyObject_CallObject:PyObject*:callable_object:0: |
| 1598 | PyObject_CallObject:PyObject*:args:0: |
| 1599 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1600 | PyObject_CheckBuffer:int::: |
| 1601 | PyObject_CheckBuffer:PyObject*:obj:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1602 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1603 | PyObject_CheckReadBuffer:int::: |
| 1604 | PyObject_CheckReadBuffer:PyObject*:o:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1605 | |
| 1606 | PyObject_DelAttr:int::: |
| 1607 | PyObject_DelAttr:PyObject*:o:0: |
| 1608 | PyObject_DelAttr:PyObject*:attr_name:0: |
| 1609 | |
| 1610 | PyObject_DelAttrString:int::: |
| 1611 | PyObject_DelAttrString:PyObject*:o:0: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 1612 | PyObject_DelAttrString:const char*:attr_name:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1613 | |
| 1614 | PyObject_DelItem:int::: |
| 1615 | PyObject_DelItem:PyObject*:o:0: |
| 1616 | PyObject_DelItem:PyObject*:key:0: |
| 1617 | |
| 1618 | PyObject_Dir:PyObject*::+1: |
| 1619 | PyObject_Dir:PyObject*:o:0: |
| 1620 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1621 | PyObject_GC_Del:void::: |
| 1622 | PyObject_GC_Del:void*:op:: |
| 1623 | |
| 1624 | PyObject_GC_New:TYPE*::+1: |
| 1625 | PyObject_GC_New::TYPE:: |
| 1626 | PyObject_GC_New:PyTypeObject*:type:0: |
| 1627 | |
| 1628 | PyObject_GC_NewVar:TYPE*::+1: |
| 1629 | PyObject_GC_NewVar::TYPE:: |
| 1630 | PyObject_GC_NewVar:PyTypeObject*:type:0: |
| 1631 | PyObject_GC_NewVar:Py_ssize_t:size:: |
| 1632 | |
| 1633 | PyObject_GC_Resize:TYPE*::0: |
| 1634 | PyObject_GC_Resize::TYPE:: |
| 1635 | PyObject_GC_Resize:PyVarObject*:op:0: |
| 1636 | PyObject_GC_Resize:Py_ssize_t:newsize:: |
| 1637 | |
| 1638 | PyObject_GC_Track:void::: |
| 1639 | PyObject_GC_Track:PyObject*:op:0: |
| 1640 | |
| 1641 | PyObject_GC_UnTrack:void::: |
| 1642 | PyObject_GC_UnTrack:void*:op:: |
| 1643 | |
| 1644 | PyObject_GenericGetAttr:PyObject*::+1: |
| 1645 | PyObject_GenericGetAttr:PyObject*:o:0: |
| 1646 | PyObject_GenericGetAttr:PyObject*:name:0: |
| 1647 | |
| 1648 | PyObject_GenericGetDict:PyObject*::+1: |
| 1649 | PyObject_GenericGetDict:PyObject*:o:0: |
| 1650 | PyObject_GenericGetDict:void*:context:: |
| 1651 | |
| 1652 | PyObject_GenericSetAttr:int::: |
| 1653 | PyObject_GenericSetAttr:PyObject*:o:0: |
| 1654 | PyObject_GenericSetAttr:PyObject*:name:0: |
| 1655 | PyObject_GenericSetAttr:PyObject*:value:+1: |
| 1656 | |
| 1657 | PyObject_GenericSetDict:int::: |
| 1658 | PyObject_GenericSetDict:PyObject*:o:+1: |
| 1659 | PyObject_GenericSetDict:void*:context:: |
| 1660 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1661 | PyObject_GetAttr:PyObject*::+1: |
| 1662 | PyObject_GetAttr:PyObject*:o:0: |
| 1663 | PyObject_GetAttr:PyObject*:attr_name:0: |
| 1664 | |
| 1665 | PyObject_GetAttrString:PyObject*::+1: |
| 1666 | PyObject_GetAttrString:PyObject*:o:0: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 1667 | PyObject_GetAttrString:const char*:attr_name:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1668 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1669 | PyObject_GetBuffer:int::: |
| 1670 | PyObject_GetBuffer:PyObject*:exporter:0: |
| 1671 | PyObject_GetBuffer:Py_buffer*:view:: |
| 1672 | PyObject_GetBuffer:int:flags:: |
| 1673 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1674 | PyObject_GetItem:PyObject*::+1: |
| 1675 | PyObject_GetItem:PyObject*:o:0: |
| 1676 | PyObject_GetItem:PyObject*:key:0: |
| 1677 | |
| 1678 | PyObject_GetIter:PyObject*::+1: |
| 1679 | PyObject_GetIter:PyObject*:o:0: |
| 1680 | |
| 1681 | PyObject_HasAttr:int::: |
| 1682 | PyObject_HasAttr:PyObject*:o:0: |
| 1683 | PyObject_HasAttr:PyObject*:attr_name:0: |
| 1684 | |
| 1685 | PyObject_HasAttrString:int::: |
| 1686 | PyObject_HasAttrString:PyObject*:o:0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1687 | PyObject_HasAttrString:const char*:attr_name:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1688 | |
| 1689 | PyObject_Hash:int::: |
| 1690 | PyObject_Hash:PyObject*:o:0: |
| 1691 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1692 | PyObject_HashNotImplemented:Py_hash_t::: |
| 1693 | PyObject_HashNotImplemented:PyObject*:o:0: |
| 1694 | |
| 1695 | PyObject_IsInstance:int::: |
| 1696 | PyObject_IsInstance:PyObject*:inst:0: |
| 1697 | PyObject_IsInstance:PyObject*:cls:0: |
| 1698 | |
| 1699 | PyObject_IsSubclass:int::: |
| 1700 | PyObject_IsSubclass:PyObject*:derived:0: |
| 1701 | PyObject_IsSubclass:PyObject*:cls:0: |
| 1702 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1703 | PyObject_IsTrue:int::: |
| 1704 | PyObject_IsTrue:PyObject*:o:0: |
| 1705 | |
| 1706 | PyObject_Init:PyObject*::0: |
| 1707 | PyObject_Init:PyObject*:op:0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1708 | PyObject_Init:PyTypeObject*:type:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1709 | |
| 1710 | PyObject_InitVar:PyVarObject*::0: |
| 1711 | PyObject_InitVar:PyVarObject*:op:0: |
| 1712 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1713 | PyObject_Length:Py_ssize_t::: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1714 | PyObject_Length:PyObject*:o:0: |
| 1715 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1716 | PyObject_LengthHint:Py_ssize_t::: |
| 1717 | PyObject_LengthHint:PyObject*:o:0: |
| 1718 | PyObject_LengthHint:Py_ssize_t:default:: |
| 1719 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1720 | PyObject_NEW:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1721 | PyObject_NEW::TYPE:: |
| 1722 | PyObject_NEW:PyTypeObject*:type:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1723 | |
| 1724 | PyObject_New:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1725 | PyObject_New::TYPE:: |
| 1726 | PyObject_New:PyTypeObject*:type:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1727 | |
| 1728 | PyObject_NEW_VAR:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1729 | PyObject_NEW_VAR::TYPE:: |
| 1730 | PyObject_NEW_VAR:PyTypeObject*:type:0: |
| 1731 | PyObject_NEW_VAR:Py_ssize_t:size:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1732 | |
| 1733 | PyObject_NewVar:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1734 | PyObject_NewVar::TYPE:: |
| 1735 | PyObject_NewVar:PyTypeObject*:type:0: |
| 1736 | PyObject_NewVar:Py_ssize_t:size:: |
| 1737 | |
| 1738 | PyObject_Not:int::: |
| 1739 | PyObject_Not:PyObject*:o:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1740 | |
| 1741 | PyObject_Print:int::: |
| 1742 | PyObject_Print:PyObject*:o:0: |
| 1743 | PyObject_Print:FILE*:fp:: |
| 1744 | PyObject_Print:int:flags:: |
| 1745 | |
| 1746 | PyObject_Repr:PyObject*::+1: |
| 1747 | PyObject_Repr:PyObject*:o:0: |
| 1748 | |
| 1749 | PyObject_RichCompare:PyObject*::+1: |
| 1750 | PyObject_RichCompare:PyObject*:o1:0: |
| 1751 | PyObject_RichCompare:PyObject*:o2:0: |
| 1752 | PyObject_RichCompare:int:opid:: |
| 1753 | |
| 1754 | PyObject_RichCompareBool:int::: |
| 1755 | PyObject_RichCompareBool:PyObject*:o1:0: |
| 1756 | PyObject_RichCompareBool:PyObject*:o2:0: |
| 1757 | PyObject_RichCompareBool:int:opid:: |
| 1758 | |
| 1759 | PyObject_SetAttr:int::: |
| 1760 | PyObject_SetAttr:PyObject*:o:0: |
| 1761 | PyObject_SetAttr:PyObject*:attr_name:0: |
| 1762 | PyObject_SetAttr:PyObject*:v:+1: |
| 1763 | |
| 1764 | PyObject_SetAttrString:int::: |
| 1765 | PyObject_SetAttrString:PyObject*:o:0: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 1766 | PyObject_SetAttrString:const char*:attr_name:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1767 | PyObject_SetAttrString:PyObject*:v:+1: |
| 1768 | |
| 1769 | PyObject_SetItem:int::: |
| 1770 | PyObject_SetItem:PyObject*:o:0: |
| 1771 | PyObject_SetItem:PyObject*:key:0: |
| 1772 | PyObject_SetItem:PyObject*:v:+1: |
| 1773 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1774 | PyObject_Size:Py_ssize_t::: |
| 1775 | PyObject_Size:PyObject*:o:0: |
| 1776 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1777 | PyObject_Str:PyObject*::+1: |
| 1778 | PyObject_Str:PyObject*:o:0: |
| 1779 | |
| 1780 | PyObject_Type:PyObject*::+1: |
| 1781 | PyObject_Type:PyObject*:o:0: |
| 1782 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1783 | PyObject_TypeCheck:int::: |
| 1784 | PyObject_TypeCheck:PyObject*:o:0: |
| 1785 | PyObject_TypeCheck:PyTypeObject*:type:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1786 | |
| 1787 | PyParser_SimpleParseFile:struct _node*::: |
| 1788 | PyParser_SimpleParseFile:FILE*:fp:: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 1789 | PyParser_SimpleParseFile:const char*:filename:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1790 | PyParser_SimpleParseFile:int:start:: |
| 1791 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1792 | PyParser_SimpleParseFileFlags:struct _node*::: |
| 1793 | PyParser_SimpleParseFileFlags:FILE*:fp:: |
| 1794 | PyParser_SimpleParseFileFlags:const char*:filename:: |
| 1795 | PyParser_SimpleParseFileFlags:int:start:: |
| 1796 | PyParser_SimpleParseFileFlags:int:flags:: |
| 1797 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1798 | PyParser_SimpleParseString:struct _node*::: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 1799 | PyParser_SimpleParseString:const char*:str:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1800 | PyParser_SimpleParseString:int:start:: |
| 1801 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1802 | PyParser_SimpleParseStringFlags:struct _node*::: |
| 1803 | PyParser_SimpleParseStringFlags:const char*:str:: |
| 1804 | PyParser_SimpleParseStringFlags:int:start:: |
| 1805 | PyParser_SimpleParseStringFlags:int:flags:: |
| 1806 | |
| 1807 | PyParser_SimpleParseStringFlagsFilename:struct _node*::: |
| 1808 | PyParser_SimpleParseStringFlagsFilename:const char*:str:: |
| 1809 | PyParser_SimpleParseStringFlagsFilename:const char*:filename:: |
| 1810 | PyParser_SimpleParseStringFlagsFilename:int:start:: |
| 1811 | PyParser_SimpleParseStringFlagsFilename:int:flags:: |
| 1812 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1813 | PyRun_AnyFile:int::: |
| 1814 | PyRun_AnyFile:FILE*:fp:: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 1815 | PyRun_AnyFile:const char*:filename:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1816 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1817 | PyRun_AnyFileFlags:int::: |
| 1818 | PyRun_AnyFileFlags:FILE*:fp:: |
| 1819 | PyRun_AnyFileFlags:const char*:filename:: |
| 1820 | PyRun_AnyFileFlags:PyCompilerFlags*:flags:: |
| 1821 | |
| 1822 | PyRun_AnyFileEx:int::: |
| 1823 | PyRun_AnyFileEx:FILE*:fp:: |
| 1824 | PyRun_AnyFileEx:const char*:filename:: |
| 1825 | PyRun_AnyFileEx:int:closeit:: |
| 1826 | |
| 1827 | PyRun_AnyFileExFlags:int::: |
| 1828 | PyRun_AnyFileExFlags:FILE*:fp:: |
| 1829 | PyRun_AnyFileExFlags:const char*:filename:: |
| 1830 | PyRun_AnyFileExFlags:int:closeit:: |
| 1831 | PyRun_AnyFileExFlags:PyCompilerFlags*:flags:: |
| 1832 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1833 | PyRun_File:PyObject*::+1:??? -- same as eval_code2() |
| 1834 | PyRun_File:FILE*:fp:: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 1835 | PyRun_File:const char*:filename:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1836 | PyRun_File:int:start:: |
| 1837 | PyRun_File:PyObject*:globals:0: |
| 1838 | PyRun_File:PyObject*:locals:0: |
| 1839 | |
| 1840 | PyRun_FileEx:PyObject*::+1:??? -- same as eval_code2() |
| 1841 | PyRun_FileEx:FILE*:fp:: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 1842 | PyRun_FileEx:const char*:filename:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1843 | PyRun_FileEx:int:start:: |
| 1844 | PyRun_FileEx:PyObject*:globals:0: |
| 1845 | PyRun_FileEx:PyObject*:locals:0: |
| 1846 | PyRun_FileEx:int:closeit:: |
| 1847 | |
| 1848 | PyRun_FileFlags:PyObject*::+1:??? -- same as eval_code2() |
| 1849 | PyRun_FileFlags:FILE*:fp:: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 1850 | PyRun_FileFlags:const char*:filename:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1851 | PyRun_FileFlags:int:start:: |
| 1852 | PyRun_FileFlags:PyObject*:globals:0: |
| 1853 | PyRun_FileFlags:PyObject*:locals:0: |
| 1854 | PyRun_FileFlags:PyCompilerFlags*:flags:: |
| 1855 | |
| 1856 | PyRun_FileExFlags:PyObject*::+1:??? -- same as eval_code2() |
| 1857 | PyRun_FileExFlags:FILE*:fp:: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 1858 | PyRun_FileExFlags:const char*:filename:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1859 | PyRun_FileExFlags:int:start:: |
| 1860 | PyRun_FileExFlags:PyObject*:globals:0: |
| 1861 | PyRun_FileExFlags:PyObject*:locals:0: |
| 1862 | PyRun_FileExFlags:int:closeit:: |
| 1863 | PyRun_FileExFlags:PyCompilerFlags*:flags:: |
| 1864 | |
| 1865 | PyRun_InteractiveLoop:int::: |
| 1866 | PyRun_InteractiveLoop:FILE*:fp:: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 1867 | PyRun_InteractiveLoop:const char*:filename:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1868 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1869 | PyRun_InteractiveLoopFlags:int::: |
| 1870 | PyRun_InteractiveLoopFlags:FILE*:fp:: |
| 1871 | PyRun_InteractiveLoopFlags:const char*:filename:: |
| 1872 | PyRun_InteractiveLoopFlags:PyCompilerFlags*:flags:: |
| 1873 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1874 | PyRun_InteractiveOne:int::: |
| 1875 | PyRun_InteractiveOne:FILE*:fp:: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 1876 | PyRun_InteractiveOne:const char*:filename:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1877 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1878 | PyRun_InteractiveOneFlags:int::: |
| 1879 | PyRun_InteractiveOneFlags:FILE*:fp:: |
| 1880 | PyRun_InteractiveOneFlags:const char*:filename:: |
| 1881 | PyRun_InteractiveOneFlags:PyCompilerFlags*:flags:: |
| 1882 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1883 | PyRun_SimpleFile:int::: |
| 1884 | PyRun_SimpleFile:FILE*:fp:: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 1885 | PyRun_SimpleFile:const char*:filename:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1886 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1887 | PyRun_SimpleFileEx:int::: |
| 1888 | PyRun_SimpleFileEx:FILE*:fp:: |
| 1889 | PyRun_SimpleFileEx:const char*:filename:: |
| 1890 | PyRun_SimpleFileEx:int:closeit:: |
| 1891 | |
| 1892 | PyRun_SimpleFileExFlags:int::: |
| 1893 | PyRun_SimpleFileExFlags:FILE*:fp:: |
| 1894 | PyRun_SimpleFileExFlags:const char*:filename:: |
| 1895 | PyRun_SimpleFileExFlags:int:closeit:: |
| 1896 | PyRun_SimpleFileExFlags:PyCompilerFlags*:flags:: |
| 1897 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1898 | PyRun_SimpleString:int::: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 1899 | PyRun_SimpleString:const char*:command:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1900 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1901 | PyRun_SimpleStringFlags:int::: |
| 1902 | PyRun_SimpleStringFlags:const char*:command:: |
| 1903 | PyRun_SimpleStringFlags:PyCompilerFlags*:flags:: |
| 1904 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1905 | PyRun_String:PyObject*::+1:??? -- same as eval_code2() |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 1906 | PyRun_String:const char*:str:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1907 | PyRun_String:int:start:: |
| 1908 | PyRun_String:PyObject*:globals:0: |
| 1909 | PyRun_String:PyObject*:locals:0: |
| 1910 | |
| 1911 | PyRun_StringFlags:PyObject*::+1:??? -- same as eval_code2() |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 1912 | PyRun_StringFlags:const char*:str:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1913 | PyRun_StringFlags:int:start:: |
| 1914 | PyRun_StringFlags:PyObject*:globals:0: |
| 1915 | PyRun_StringFlags:PyObject*:locals:0: |
| 1916 | PyRun_StringFlags:PyCompilerFlags*:flags:: |
| 1917 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1918 | PySeqIter_Check:int::: |
| 1919 | PySeqIter_Check::op:: |
| 1920 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1921 | PySeqIter_New:PyObject*::+1: |
| 1922 | PySeqIter_New:PyObject*:seq:: |
| 1923 | |
| 1924 | PySequence_Check:int::: |
| 1925 | PySequence_Check:PyObject*:o:0: |
| 1926 | |
| 1927 | PySequence_Concat:PyObject*::+1: |
| 1928 | PySequence_Concat:PyObject*:o1:0: |
| 1929 | PySequence_Concat:PyObject*:o2:0: |
| 1930 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1931 | PySequence_Contains:int::: |
| 1932 | PySequence_Contains:PyObject*:o:0: |
| 1933 | PySequence_Contains:PyObject*:value:0: |
| 1934 | |
| 1935 | PySequence_Count:Py_ssize_t::: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1936 | PySequence_Count:PyObject*:o:0: |
| 1937 | PySequence_Count:PyObject*:value:0: |
| 1938 | |
| 1939 | PySequence_DelItem:int::: |
| 1940 | PySequence_DelItem:PyObject*:o:0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1941 | PySequence_DelItem:Py_ssize_t:i:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1942 | |
| 1943 | PySequence_DelSlice:int::: |
| 1944 | PySequence_DelSlice:PyObject*:o:0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1945 | PySequence_DelSlice:Py_ssize_t:i1:: |
| 1946 | PySequence_DelSlice:Py_ssize_t:i2:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1947 | |
| 1948 | PySequence_Fast:PyObject*::+1: |
| 1949 | PySequence_Fast:PyObject*:v:0: |
| 1950 | PySequence_Fast:const char*:m:: |
| 1951 | |
| 1952 | PySequence_Fast_GET_ITEM:PyObject*::0: |
| 1953 | PySequence_Fast_GET_ITEM:PyObject*:o:0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1954 | PySequence_Fast_GET_ITEM:Py_ssize_t:i:: |
| 1955 | |
| 1956 | PySequence_Fast_GET_SIZE:Py_ssize_t::: |
| 1957 | PySequence_Fast_GET_SIZE:PyObject*:o:0: |
| 1958 | |
| 1959 | PySequence_Fast_ITEMS:PyObject**::: |
| 1960 | PySequence_Fast_ITEMS:PyObject*:o:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1961 | |
| 1962 | PySequence_GetItem:PyObject*::+1: |
| 1963 | PySequence_GetItem:PyObject*:o:0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1964 | PySequence_GetItem:Py_ssize_t:i:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1965 | |
| 1966 | PySequence_GetSlice:PyObject*::+1: |
| 1967 | PySequence_GetSlice:PyObject*:o:0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1968 | PySequence_GetSlice:Py_ssize_t:i1:: |
| 1969 | PySequence_GetSlice:Py_ssize_t:i2:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1970 | |
| 1971 | PySequence_In:int::: |
| 1972 | PySequence_In:PyObject*:o:0: |
| 1973 | PySequence_In:PyObject*:value:0: |
| 1974 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1975 | PySequence_Index:Py_ssize_t::: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1976 | PySequence_Index:PyObject*:o:0: |
| 1977 | PySequence_Index:PyObject*:value:0: |
| 1978 | |
| 1979 | PySequence_InPlaceConcat:PyObject*::+1: |
| 1980 | PySequence_InPlaceConcat:PyObject*:s:0: |
| 1981 | PySequence_InPlaceConcat:PyObject*:o:0: |
| 1982 | |
| 1983 | PySequence_InPlaceRepeat:PyObject*::+1: |
| 1984 | PySequence_InPlaceRepeat:PyObject*:s:0: |
| 1985 | PySequence_InPlaceRepeat:PyObject*:o:0: |
| 1986 | |
| 1987 | PySequence_ITEM:PyObject*::+1: |
| 1988 | PySequence_ITEM:PyObject*:o:0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1989 | PySequence_ITEM:Py_ssize_t:i:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1990 | |
| 1991 | PySequence_Repeat:PyObject*::+1: |
| 1992 | PySequence_Repeat:PyObject*:o:0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1993 | PySequence_Repeat:Py_ssize_t:count:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1994 | |
| 1995 | PySequence_SetItem:int::: |
| 1996 | PySequence_SetItem:PyObject*:o:0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 1997 | PySequence_SetItem:Py_ssize_t:i:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1998 | PySequence_SetItem:PyObject*:v:+1: |
| 1999 | |
| 2000 | PySequence_SetSlice:int::: |
| 2001 | PySequence_SetSlice:PyObject*:o:0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2002 | PySequence_SetSlice:Py_ssize_t:i1:: |
| 2003 | PySequence_SetSlice:Py_ssize_t:i2:: |
| 2004 | PySequence_SetSlice:PyObject*:v:0: |
| 2005 | |
| 2006 | PySequence_Size:Py_ssize_t::: |
| 2007 | PySequence_Size:PyObject*:o:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2008 | |
| 2009 | PySequence_List:PyObject*::+1: |
| 2010 | PySequence_List:PyObject*:o:0: |
| 2011 | |
| 2012 | PySequence_Tuple:PyObject*::+1: |
| 2013 | PySequence_Tuple:PyObject*:o:0: |
| 2014 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2015 | PySet_Add:int::: |
| 2016 | PySet_Add:PyObject*:set:0: |
| 2017 | PySet_Add:PyObject*:key:+1: |
| 2018 | |
| 2019 | PySet_Check:int::: |
| 2020 | PySet_Check:PyObject*:p:0: |
| 2021 | |
| 2022 | PySet_Clear:int::: |
| 2023 | PySet_Clear:PyObject*:set:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2024 | |
| 2025 | PySet_Contains:int::: |
| 2026 | PySet_Contains:PyObject*:anyset:0: |
| 2027 | PySet_Contains:PyObject*:key:0: |
| 2028 | |
| 2029 | PySet_Discard:int::: |
| 2030 | PySet_Discard:PyObject*:set:0: |
| 2031 | PySet_Discard:PyObject*:key:-1:no effect if key not found |
| 2032 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2033 | PySet_GET_SIZE:Py_ssize_t::: |
| 2034 | PySet_GET_SIZE:PyObject*:anyset:0: |
| 2035 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2036 | PySet_New:PyObject*::+1: |
| 2037 | PySet_New:PyObject*:iterable:0: |
| 2038 | |
| 2039 | PySet_Pop:PyObject*::+1:or returns NULL and raises KeyError if set is empty |
| 2040 | PySet_Pop:PyObject*:set:0: |
| 2041 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2042 | PySet_Size:Py_ssize_t::: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2043 | PySet_Size:PyObject*:anyset:0: |
| 2044 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2045 | PySignal_SetWakeupFd:int::: |
| 2046 | PySignal_SetWakeupFd:int:fd:: |
| 2047 | |
Serhiy Storchaka | 4e29f56 | 2018-05-22 20:59:42 +0300 | [diff] [blame] | 2048 | PySlice_AdjustIndices:Py_ssize_t::: |
| 2049 | PySlice_AdjustIndices:Py_ssize_t:length:: |
| 2050 | PySlice_AdjustIndices:Py_ssize_t*:start:: |
| 2051 | PySlice_AdjustIndices:Py_ssize_t*:stop:: |
| 2052 | PySlice_AdjustIndices:Py_ssize_t*:step:: |
| 2053 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2054 | PySlice_Check:int::: |
| 2055 | PySlice_Check:PyObject*:ob:0: |
| 2056 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2057 | PySlice_GetIndices:int::: |
| 2058 | PySlice_GetIndices:PyObject*:slice:0: |
| 2059 | PySlice_GetIndices:Py_ssize_t:length:: |
| 2060 | PySlice_GetIndices:Py_ssize_t*:start:: |
| 2061 | PySlice_GetIndices:Py_ssize_t*:stop:: |
| 2062 | PySlice_GetIndices:Py_ssize_t*:step:: |
| 2063 | |
| 2064 | PySlice_GetIndicesEx:int::: |
| 2065 | PySlice_GetIndicesEx:PyObject*:slice:0: |
| 2066 | PySlice_GetIndicesEx:Py_ssize_t:length:: |
| 2067 | PySlice_GetIndicesEx:Py_ssize_t*:start:: |
| 2068 | PySlice_GetIndicesEx:Py_ssize_t*:stop:: |
| 2069 | PySlice_GetIndicesEx:Py_ssize_t*:step:: |
| 2070 | PySlice_GetIndicesEx:Py_ssize_t*:slicelength:: |
| 2071 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2072 | PySlice_New:PyObject*::+1: |
| 2073 | PySlice_New:PyObject*:start:0: |
| 2074 | PySlice_New:PyObject*:stop:0: |
| 2075 | PySlice_New:PyObject*:step:0: |
| 2076 | |
Serhiy Storchaka | 4e29f56 | 2018-05-22 20:59:42 +0300 | [diff] [blame] | 2077 | PySlice_Unpack:int::: |
| 2078 | PySlice_Unpack:PyObject*:slice:0: |
| 2079 | PySlice_Unpack:Py_ssize_t*:start:: |
| 2080 | PySlice_Unpack:Py_ssize_t*:stop:: |
| 2081 | PySlice_Unpack:Py_ssize_t*:step:: |
| 2082 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2083 | PyState_AddModule:int::: |
| 2084 | PyState_AddModule:PyObject*:module:+1: |
| 2085 | PyState_AddModule:PyModuleDef*:def:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2086 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2087 | PyState_FindModule:PyObject*::0: |
| 2088 | PyState_FindModule:PyModuleDef*:def:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2089 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2090 | PyState_RemoveModule:int::: |
| 2091 | PyState_RemoveModule:PyModuleDef*:def:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2092 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2093 | PyStructSequence_GET_ITEM:PyObject*::0: |
| 2094 | PyStructSequence_GET_ITEM:PyObject*:p:0: |
| 2095 | PyStructSequence_GET_ITEM:Py_ssize_t:pos:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2096 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2097 | PyStructSequence_GetItem:PyObject*::0: |
| 2098 | PyStructSequence_GetItem:PyObject*:p:0: |
| 2099 | PyStructSequence_GetItem:Py_ssize_t:pos:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2100 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2101 | PyStructSequence_InitType:void::: |
| 2102 | PyStructSequence_InitType:PyTypeObject*:type:+1: |
| 2103 | PyStructSequence_InitType:PyStructSequence_Desc*:desc:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2104 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2105 | PyStructSequence_InitType2:int::: |
| 2106 | PyStructSequence_InitType2:PyTypeObject*:type:+1: |
| 2107 | PyStructSequence_InitType2:PyStructSequence_Desc*:desc:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2108 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2109 | PyStructSequence_New:PyObject*::+1: |
| 2110 | PyStructSequence_New:PyTypeObject*:type:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2111 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2112 | PyStructSequence_NewType:PyTypeObject*::+1: |
| 2113 | PyStructSequence_NewType:PyStructSequence_Desc*:desc:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2114 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2115 | PyStructSequence_SET_ITEM:void::: |
| 2116 | PyStructSequence_SET_ITEM:PyObject*:p:0: |
| 2117 | PyStructSequence_SET_ITEM:Py_ssize_t*:pos:: |
| 2118 | PyStructSequence_SET_ITEM:PyObject*:o:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2119 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2120 | PyStructSequence_SetItem:void::: |
| 2121 | PyStructSequence_SetItem:PyObject*:p:0: |
| 2122 | PyStructSequence_SetItem:Py_ssize_t:pos:: |
| 2123 | PyStructSequence_SetItem:PyObject*:o:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2124 | |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 2125 | PySys_AddWarnOption:void::: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2126 | PySys_AddWarnOption:const wchar_t*:s:: |
| 2127 | |
| 2128 | PySys_AddWarnOptionUnicode:void::: |
| 2129 | PySys_AddWarnOptionUnicode:PyObject*:unicode:0: |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 2130 | |
Antoine Pitrou | 9583cac | 2010-10-21 13:42:28 +0000 | [diff] [blame] | 2131 | PySys_AddXOption:void::: |
| 2132 | PySys_AddXOption:const wchar_t*:s:: |
| 2133 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2134 | PySys_FormatStderr:void::: |
| 2135 | PySys_FormatStderr:const char*:format:: |
| 2136 | PySys_FormatStderr::...:: |
| 2137 | |
| 2138 | PySys_FormatStdout:void::: |
| 2139 | PySys_FormatStdout:const char*:format:: |
| 2140 | PySys_FormatStdout::...:: |
| 2141 | |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 2142 | PySys_GetObject:PyObject*::0: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 2143 | PySys_GetObject:const char*:name:: |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 2144 | |
Antoine Pitrou | 9583cac | 2010-10-21 13:42:28 +0000 | [diff] [blame] | 2145 | PySys_GetXOptions:PyObject*::0: |
| 2146 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2147 | PySys_SetArgv:void::: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2148 | PySys_SetArgv:int:argc:: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2149 | PySys_SetArgv:wchar_t**:argv:: |
| 2150 | |
| 2151 | PySys_SetArgvEx:void::: |
| 2152 | PySys_SetArgvEx:int:argc:: |
| 2153 | PySys_SetArgvEx:wchar_t**:argv:: |
| 2154 | PySys_SetArgvEx:int:updatepath:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2155 | |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 2156 | PySys_SetObject:int::: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 2157 | PySys_SetObject:const char*:name:: |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 2158 | PySys_SetObject:PyObject*:v:+1: |
| 2159 | |
| 2160 | PySys_ResetWarnOptions:void::: |
| 2161 | |
| 2162 | PySys_WriteStdout:void::: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 2163 | PySys_WriteStdout:const char*:format:: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2164 | PySys_WriteStdout::...:: |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 2165 | |
| 2166 | PySys_WriteStderr:void::: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 2167 | PySys_WriteStderr:const char*:format:: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2168 | PySys_WriteStderr::...:: |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 2169 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2170 | PyThreadState_Clear:void::: |
| 2171 | PyThreadState_Clear:PyThreadState*:tstate:: |
| 2172 | |
| 2173 | PyThreadState_Delete:void::: |
| 2174 | PyThreadState_Delete:PyThreadState*:tstate:: |
| 2175 | |
| 2176 | PyThreadState_Get:PyThreadState*::: |
| 2177 | |
| 2178 | PyThreadState_GetDict:PyObject*::0: |
| 2179 | |
| 2180 | PyThreadState_New:PyThreadState*::: |
| 2181 | PyThreadState_New:PyInterpreterState*:interp:: |
| 2182 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2183 | PyThreadState_SetAsyncExc:int::: |
| 2184 | PyThreadState_SetAsyncExc:unsigned long:id:: |
| 2185 | PyThreadState_SetAsyncExc:PyObject*:exc:+1: |
| 2186 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2187 | PyThreadState_Swap:PyThreadState*::: |
| 2188 | PyThreadState_Swap:PyThreadState*:tstate:: |
| 2189 | |
Masayuki Yamamoto | 55bfe69 | 2018-05-22 17:21:25 +0900 | [diff] [blame] | 2190 | PyThread_tss_alloc:Py_tss_t*::: |
| 2191 | |
| 2192 | PyThread_tss_create:int::: |
| 2193 | PyThread_tss_create:Py_tss_t*:key:: |
| 2194 | |
| 2195 | PyThread_tss_delete:void::: |
| 2196 | PyThread_tss_delete:Py_tss_t*:key:: |
| 2197 | |
| 2198 | PyThread_tss_free:void::: |
| 2199 | PyThread_tss_free:Py_tss_t*:key:: |
| 2200 | |
| 2201 | PyThread_tss_get:void*::: |
| 2202 | PyThread_tss_get:Py_tss_t*:key:: |
| 2203 | |
| 2204 | PyThread_tss_is_created:int::: |
| 2205 | PyThread_tss_is_created:Py_tss_t*:key:: |
| 2206 | |
| 2207 | PyThread_tss_set:int::: |
| 2208 | PyThread_tss_set:Py_tss_t*:key:: |
| 2209 | PyThread_tss_set:void*:value:: |
| 2210 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2211 | PyTime_Check:int::: |
| 2212 | PyTime_Check:PyObject*:ob:0: |
| 2213 | |
| 2214 | PyTime_CheckExact:int::: |
| 2215 | PyTime_CheckExact:PyObject*:ob:0: |
| 2216 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2217 | PyTime_FromTime:PyObject*::+1: |
| 2218 | PyTime_FromTime:int:hour:: |
| 2219 | PyTime_FromTime:int:minute:: |
| 2220 | PyTime_FromTime:int:second:: |
| 2221 | PyTime_FromTime:int:usecond:: |
| 2222 | |
Edison A | d28772a | 2019-05-13 00:23:38 -0700 | [diff] [blame] | 2223 | PyTime_FromTimeAndFold:PyObject*::+1: |
| 2224 | PyTime_FromTimeAndFold:int:hour:: |
| 2225 | PyTime_FromTimeAndFold:int:minute:: |
| 2226 | PyTime_FromTimeAndFold:int:second:: |
| 2227 | PyTime_FromTimeAndFold:int:usecond:: |
| 2228 | PyTime_FromTimeAndFold:int:fold:: |
| 2229 | |
Serhiy Storchaka | 4e29f56 | 2018-05-22 20:59:42 +0300 | [diff] [blame] | 2230 | PyTraceMalloc_Track:int::: |
| 2231 | PyTraceMalloc_Track:unsigned int:domain:: |
| 2232 | PyTraceMalloc_Track:uintptr_t:ptr:: |
| 2233 | PyTraceMalloc_Track:size_t:size:: |
| 2234 | |
| 2235 | PyTraceMalloc_Untrack:int::: |
| 2236 | PyTraceMalloc_Untrack:unsigned int:domain:: |
| 2237 | PyTraceMalloc_Untrack:uintptr_t:ptr:: |
| 2238 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2239 | PyTuple_Check:int::: |
| 2240 | PyTuple_Check:PyObject*:p:0: |
| 2241 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2242 | PyTuple_CheckExact:int::: |
| 2243 | PyTuple_CheckExact:PyObject*:p:0: |
| 2244 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2245 | PyTuple_GET_ITEM:PyObject*::0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2246 | PyTuple_GET_ITEM:PyObject*:p:0: |
| 2247 | PyTuple_GET_ITEM:Py_ssize_t:pos:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2248 | |
| 2249 | PyTuple_GetItem:PyObject*::0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2250 | PyTuple_GetItem:PyObject*:p:0: |
| 2251 | PyTuple_GetItem:Py_ssize_t:pos:: |
| 2252 | |
| 2253 | PyTuple_GET_SIZE:Py_ssize_t::: |
| 2254 | PyTuple_GET_SIZE:PyObject*:p:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2255 | |
| 2256 | PyTuple_GetSlice:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2257 | PyTuple_GetSlice:PyObject*:p:0: |
| 2258 | PyTuple_GetSlice:Py_ssize_t:low:: |
| 2259 | PyTuple_GetSlice:Py_ssize_t:high:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2260 | |
| 2261 | PyTuple_New:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2262 | PyTuple_New:Py_ssize_t:len:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2263 | |
| 2264 | PyTuple_Pack:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2265 | PyTuple_Pack:Py_ssize_t:len:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2266 | PyTuple_Pack:PyObject*:...:0: |
| 2267 | |
| 2268 | PyTuple_SET_ITEM:void::: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2269 | PyTuple_SET_ITEM:PyObject*:p:0: |
| 2270 | PyTuple_SET_ITEM:Py_ssize_t:pos:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2271 | PyTuple_SET_ITEM:PyObject*:o:0: |
| 2272 | |
| 2273 | PyTuple_SetItem:int::: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2274 | PyTuple_SetItem:PyObject*:p:0: |
| 2275 | PyTuple_SetItem:Py_ssize_t:pos:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2276 | PyTuple_SetItem:PyObject*:o:0: |
| 2277 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2278 | PyTuple_Size:Py_ssize_t::: |
| 2279 | PyTuple_Size:PyObject*:p:0: |
| 2280 | |
| 2281 | PyType_Check:int::: |
| 2282 | PyType_Check:PyObject*:o:0: |
| 2283 | |
| 2284 | PyType_CheckExact:int::: |
| 2285 | PyType_CheckExact:PyObject*:o:0: |
| 2286 | |
| 2287 | PyType_FromSpec:PyObject*::+1: |
| 2288 | PyType_FromSpec:PyType_Spec*:spec:: |
| 2289 | |
| 2290 | PyType_FromSpecWithBases:PyObject*::+1: |
| 2291 | PyType_FromSpecWithBases:PyType_Spec*:spec:: |
| 2292 | PyType_FromSpecWithBases:PyObject*:bases:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2293 | |
| 2294 | PyType_GenericAlloc:PyObject*::+1: |
| 2295 | PyType_GenericAlloc:PyObject*:type:0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2296 | PyType_GenericAlloc:Py_ssize_t:nitems:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2297 | |
| 2298 | PyType_GenericNew:PyObject*::+1: |
| 2299 | PyType_GenericNew:PyObject*:type:0: |
| 2300 | PyType_GenericNew:PyObject*:args:0: |
| 2301 | PyType_GenericNew:PyObject*:kwds:0: |
| 2302 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2303 | PyType_GetFlags:unsigned long::: |
| 2304 | PyType_GetFlags:PyTypeObject*:type:0: |
| 2305 | |
| 2306 | PyType_GetSlot:void*::: |
| 2307 | PyType_GetSlot:PyTypeObject*:type:0: |
| 2308 | PyType_GetSlot:int:slot:: |
| 2309 | |
| 2310 | PyType_HasFeature:int::: |
| 2311 | PyType_HasFeature:PyTypeObject*:o:0: |
| 2312 | PyType_HasFeature:int:feature:: |
| 2313 | |
| 2314 | PyType_IS_GC:int::: |
| 2315 | PyType_IS_GC:PyTypeObject*:o:0: |
| 2316 | |
| 2317 | PyType_IsSubtype:int::: |
| 2318 | PyType_IsSubtype:PyTypeObject*:a:0: |
| 2319 | PyType_IsSubtype:PyTypeObject*:b:0: |
| 2320 | |
| 2321 | PyType_Modified:void::: |
| 2322 | PyType_Modified:PyTypeObject*:type:0: |
| 2323 | |
| 2324 | PyType_Ready:int::: |
| 2325 | PyType_Ready:PyTypeObject*:type:0: |
| 2326 | |
| 2327 | PyUnicode_1BYTE_DATA:Py_UCS1*::: |
| 2328 | PyUnicode_1BYTE_DATA:PyObject*:o:0: |
| 2329 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2330 | PyUnicode_Check:int::: |
| 2331 | PyUnicode_Check:PyObject*:o:0: |
| 2332 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2333 | PyUnicode_CheckExact:int::: |
| 2334 | PyUnicode_CheckExact:PyObject*:o:0: |
| 2335 | |
| 2336 | PyUnicode_DATA:void*::: |
| 2337 | PyUnicode_DATA:PyObject*:o:0: |
| 2338 | |
| 2339 | PyUnicode_GET_LENGTH:Py_ssize_t::: |
| 2340 | PyUnicode_GET_LENGTH:PyObject*:o:0: |
| 2341 | |
| 2342 | PyUnicode_GET_SIZE:Py_ssize_t::: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2343 | PyUnicode_GET_SIZE:PyObject*:o:0: |
| 2344 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2345 | PyUnicode_GET_DATA_SIZE:Py_ssize_t::: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2346 | PyUnicode_GET_DATA_SIZE:PyObject*:o:0: |
| 2347 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2348 | PyUnicode_KIND:int::: |
| 2349 | PyUnicode_KIND:PyObject*:o:0: |
| 2350 | |
| 2351 | PyUnicode_MAX_CHAR_VALUE:::: |
| 2352 | PyUnicode_MAX_CHAR_VALUE:PyObject*:o:0: |
| 2353 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2354 | PyUnicode_AS_UNICODE:Py_UNICODE*::: |
| 2355 | PyUnicode_AS_UNICODE:PyObject*:o:0: |
| 2356 | |
| 2357 | PyUnicode_AS_DATA:const char*::: |
| 2358 | PyUnicode_AS_DATA:PyObject*:o:0: |
| 2359 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2360 | Py_UNICODE_ISALNUM:int::: |
| 2361 | Py_UNICODE_ISALNUM:Py_UNICODE:ch:: |
| 2362 | |
| 2363 | Py_UNICODE_ISALPHA:int::: |
| 2364 | Py_UNICODE_ISALPHA:Py_UNICODE:ch:: |
| 2365 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2366 | Py_UNICODE_ISSPACE:int::: |
| 2367 | Py_UNICODE_ISSPACE:Py_UNICODE:ch:: |
| 2368 | |
| 2369 | Py_UNICODE_ISLOWER:int::: |
| 2370 | Py_UNICODE_ISLOWER:Py_UNICODE:ch:: |
| 2371 | |
| 2372 | Py_UNICODE_ISUPPER:int::: |
| 2373 | Py_UNICODE_ISUPPER:Py_UNICODE:ch:: |
| 2374 | |
| 2375 | Py_UNICODE_ISTITLE:int::: |
| 2376 | Py_UNICODE_ISTITLE:Py_UNICODE:ch:: |
| 2377 | |
| 2378 | Py_UNICODE_ISLINEBREAK:int::: |
| 2379 | Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch:: |
| 2380 | |
| 2381 | Py_UNICODE_ISDECIMAL:int::: |
| 2382 | Py_UNICODE_ISDECIMAL:Py_UNICODE:ch:: |
| 2383 | |
| 2384 | Py_UNICODE_ISDIGIT:int::: |
| 2385 | Py_UNICODE_ISDIGIT:Py_UNICODE:ch:: |
| 2386 | |
| 2387 | Py_UNICODE_ISNUMERIC:int::: |
| 2388 | Py_UNICODE_ISNUMERIC:Py_UNICODE:ch:: |
| 2389 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2390 | Py_UNICODE_ISPRINTABLE:int::: |
| 2391 | Py_UNICODE_ISPRINTABLE:Py_UNICODE:ch:: |
| 2392 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2393 | Py_UNICODE_TOLOWER:Py_UNICODE::: |
| 2394 | Py_UNICODE_TOLOWER:Py_UNICODE:ch:: |
| 2395 | |
| 2396 | Py_UNICODE_TOUPPER:Py_UNICODE::: |
| 2397 | Py_UNICODE_TOUPPER:Py_UNICODE:ch:: |
| 2398 | |
| 2399 | Py_UNICODE_TOTITLE:Py_UNICODE::: |
| 2400 | Py_UNICODE_TOTITLE:Py_UNICODE:ch:: |
| 2401 | |
| 2402 | Py_UNICODE_TODECIMAL:int::: |
| 2403 | Py_UNICODE_TODECIMAL:Py_UNICODE:ch:: |
| 2404 | |
| 2405 | Py_UNICODE_TODIGIT:int::: |
| 2406 | Py_UNICODE_TODIGIT:Py_UNICODE:ch:: |
| 2407 | |
| 2408 | Py_UNICODE_TONUMERIC:double::: |
| 2409 | Py_UNICODE_TONUMERIC:Py_UNICODE:ch:: |
| 2410 | |
| 2411 | PyUnicode_FromUnicode:PyObject*::+1: |
| 2412 | PyUnicode_FromUnicode:const Py_UNICODE*:u:: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2413 | PyUnicode_FromUnicode:Py_ssize_t:size:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2414 | |
| 2415 | PyUnicode_AsUnicode:Py_UNICODE*::: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2416 | PyUnicode_AsUnicode:PyObject*:unicode:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2417 | |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2418 | PyUnicode_TransformDecimalToASCII:PyObject*::+1: |
| 2419 | PyUnicode_TransformDecimalToASCII:Py_UNICODE*:s:: |
| 2420 | PyUnicode_TransformDecimalToASCII:Py_ssize_t:size:: |
| 2421 | |
| 2422 | PyUnicode_AsUnicodeAndSize:Py_UNICODE*::: |
| 2423 | PyUnicode_AsUnicodeAndSize:PyObject*:unicode:0: |
| 2424 | PyUnicode_AsUnicodeAndSize:Py_ssize_t*:size:: |
| 2425 | |
| 2426 | PyUnicode_AsUnicodeCopy:Py_UNICODE*::: |
| 2427 | PyUnicode_AsUnicodeCopy:PyObject*:unicode:0: |
| 2428 | |
| 2429 | PyUnicode_GetSize:Py_ssize_t::: |
| 2430 | PyUnicode_GetSize:PyObject*:unicode:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2431 | |
| 2432 | PyUnicode_FromObject:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2433 | PyUnicode_FromObject:PyObject*:obj:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2434 | |
| 2435 | PyUnicode_FromEncodedObject:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2436 | PyUnicode_FromEncodedObject:PyObject*:obj:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2437 | PyUnicode_FromEncodedObject:const char*:encoding:: |
| 2438 | PyUnicode_FromEncodedObject:const char*:errors:: |
| 2439 | |
| 2440 | PyUnicode_FromWideChar:PyObject*::+1: |
| 2441 | PyUnicode_FromWideChar:const wchar_t*:w:: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2442 | PyUnicode_FromWideChar:Py_ssize_t:size:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2443 | |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2444 | PyUnicode_AsWideChar:Py_ssize_t::: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2445 | PyUnicode_AsWideChar:PyObject*:*unicode:0: |
| 2446 | PyUnicode_AsWideChar:wchar_t*:w:: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2447 | PyUnicode_AsWideChar:Pyssize_t:size:: |
| 2448 | |
| 2449 | PyUnicode_AsWideCharString:wchar_t*::: |
| 2450 | PyUnicode_AsWideCharString:PyObject*:unicode:0: |
| 2451 | PyUnicode_AsWideCharString:Py_ssize_t*:size:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2452 | |
| 2453 | PyUnicode_Decode:PyObject*::+1: |
| 2454 | PyUnicode_Decode:const char*:s:: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2455 | PyUnicode_Decode:Py_ssize_t:size:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2456 | PyUnicode_Decode:const char*:encoding:: |
| 2457 | PyUnicode_Decode:const char*:errors:: |
| 2458 | |
| 2459 | PyUnicode_DecodeUTF16Stateful:PyObject*::+1: |
| 2460 | PyUnicode_DecodeUTF16Stateful:const char*:s:: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2461 | PyUnicode_DecodeUTF16Stateful:Py_ssize_t:size:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2462 | PyUnicode_DecodeUTF16Stateful:const char*:errors:: |
| 2463 | PyUnicode_DecodeUTF16Stateful:int*:byteorder:: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2464 | PyUnicode_DecodeUTF16Stateful:Py_ssize_t*:consumed:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2465 | |
| 2466 | PyUnicode_DecodeUTF8Stateful:PyObject*::+1: |
| 2467 | PyUnicode_DecodeUTF8Stateful:const char*:s:: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2468 | PyUnicode_DecodeUTF8Stateful:Py_ssize_t:size:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2469 | PyUnicode_DecodeUTF8Stateful:const char*:errors:: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2470 | PyUnicode_DecodeUTF8Stateful:Py_ssize_t*:consumed:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2471 | |
| 2472 | PyUnicode_Encode:PyObject*::+1: |
| 2473 | PyUnicode_Encode:const Py_UNICODE*:s:: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2474 | PyUnicode_Encode:Py_ssize_t:size:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2475 | PyUnicode_Encode:const char*:encoding:: |
| 2476 | PyUnicode_Encode:const char*:errors:: |
| 2477 | |
| 2478 | PyUnicode_AsEncodedString:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2479 | PyUnicode_AsEncodedString:PyObject*:unicode:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2480 | PyUnicode_AsEncodedString:const char*:encoding:: |
| 2481 | PyUnicode_AsEncodedString:const char*:errors:: |
| 2482 | |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2483 | PyUnicode_DecodeUTF7:PyObject*::+1: |
| 2484 | PyUnicode_DecodeUTF7:const char*:s:: |
| 2485 | PyUnicode_DecodeUTF7:Py_ssize_t:size:: |
| 2486 | PyUnicode_DecodeUTF7:const char*:errors:: |
| 2487 | |
| 2488 | PyUnicode_DecodeUTF7Stateful:PyObject*::+1: |
| 2489 | PyUnicode_DecodeUTF7Stateful:const char*:s:: |
| 2490 | PyUnicode_DecodeUTF7Stateful:Py_ssize_t:size:: |
| 2491 | PyUnicode_DecodeUTF7Stateful:const char*:errors:: |
| 2492 | PyUnicode_DecodeUTF7Stateful:Py_ssize_t*:consumed:: |
| 2493 | |
| 2494 | PyUnicode_EncodeUTF7:PyObject*::+1: |
| 2495 | PyUnicode_EncodeUTF7:const Py_UNICODE*:s:: |
| 2496 | PyUnicode_EncodeUTF7:Py_ssize_t:size:: |
| 2497 | PyUnicode_EncodeUTF7:int:base64SetO:: |
| 2498 | PyUnicode_EncodeUTF7:int:base64WhiteSpace:: |
| 2499 | PyUnicode_EncodeUTF7:const char*:errors:: |
| 2500 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2501 | PyUnicode_DecodeUTF8:PyObject*::+1: |
| 2502 | PyUnicode_DecodeUTF8:const char*:s:: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2503 | PyUnicode_DecodeUTF8:Py_ssize_t:size:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2504 | PyUnicode_DecodeUTF8:const char*:errors:: |
| 2505 | |
| 2506 | PyUnicode_EncodeUTF8:PyObject*::+1: |
| 2507 | PyUnicode_EncodeUTF8:const Py_UNICODE*:s:: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2508 | PyUnicode_EncodeUTF8:Py_ssize_t:size:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2509 | PyUnicode_EncodeUTF8:const char*:errors:: |
| 2510 | |
| 2511 | PyUnicode_AsUTF8String:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2512 | PyUnicode_AsUTF8String:PyObject*:unicode:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2513 | |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2514 | PyUnicode_AsUTF8AndSize:const char*::: |
| 2515 | PyUnicode_AsUTF8AndSize:PyObject*:unicode:0: |
| 2516 | PyUnicode_AsUTF8AndSize:Py_ssize_t*:size:0: |
| 2517 | |
| 2518 | PyUnicode_AsUTF8:const char*::: |
| 2519 | PyUnicode_AsUTF8:PyObject*:unicode:0: |
| 2520 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2521 | PyUnicode_DecodeUTF16:PyObject*::+1: |
| 2522 | PyUnicode_DecodeUTF16:const char*:s:: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2523 | PyUnicode_DecodeUTF16:Py_ssize_t:size:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2524 | PyUnicode_DecodeUTF16:const char*:errors:: |
| 2525 | PyUnicode_DecodeUTF16:int*:byteorder:: |
| 2526 | |
| 2527 | PyUnicode_EncodeUTF16:PyObject*::+1: |
| 2528 | PyUnicode_EncodeUTF16:const Py_UNICODE*:s:: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2529 | PyUnicode_EncodeUTF16:Py_ssize_t:size:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2530 | PyUnicode_EncodeUTF16:const char*:errors:: |
| 2531 | PyUnicode_EncodeUTF16:int:byteorder:: |
| 2532 | |
| 2533 | PyUnicode_AsUTF16String:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2534 | PyUnicode_AsUTF16String:PyObject*:unicode:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2535 | |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2536 | PyUnicode_DecodeUTF32:PyObject*::+1: |
| 2537 | PyUnicode_DecodeUTF32:const char*:s:: |
| 2538 | PyUnicode_DecodeUTF32:Py_ssize_t:size:: |
| 2539 | PyUnicode_DecodeUTF32:const char*:errors:: |
| 2540 | PyUnicode_DecodeUTF32:int*:byteorder:: |
| 2541 | |
| 2542 | PyUnicode_DecodeUTF32Stateful:PyObject*::+1: |
| 2543 | PyUnicode_DecodeUTF32Stateful:const char*:s:: |
| 2544 | PyUnicode_DecodeUTF32Stateful:Py_ssize_t:size:: |
| 2545 | PyUnicode_DecodeUTF32Stateful:const char*:errors:: |
| 2546 | PyUnicode_DecodeUTF32Stateful:int*:byteorder:: |
| 2547 | PyUnicode_DecodeUTF32Stateful:Py_ssize_t*:consumed:: |
| 2548 | |
| 2549 | PyUnicode_AsUTF32String:PyObject*::+1: |
| 2550 | PyUnicode_AsUTF32String:PyObject*:unicode:0: |
| 2551 | |
| 2552 | PyUnicode_EncodeUTF32:PyObject*::+1: |
| 2553 | PyUnicode_EncodeUTF32:const Py_UNICODE*:s:: |
| 2554 | PyUnicode_EncodeUTF32:Py_ssize_t:size:: |
| 2555 | PyUnicode_EncodeUTF32:const char*:errors:: |
| 2556 | PyUnicode_EncodeUTF32:int:byteorder:: |
| 2557 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2558 | PyUnicode_DecodeUnicodeEscape:PyObject*::+1: |
| 2559 | PyUnicode_DecodeUnicodeEscape:const char*:s:: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2560 | PyUnicode_DecodeUnicodeEscape:Py_ssize_t:size:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2561 | PyUnicode_DecodeUnicodeEscape:const char*:errors:: |
| 2562 | |
| 2563 | PyUnicode_EncodeUnicodeEscape:PyObject*::+1: |
| 2564 | PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s:: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2565 | PyUnicode_EncodeUnicodeEscape:Py_ssize_t:size:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2566 | |
| 2567 | PyUnicode_AsUnicodeEscapeString:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2568 | PyUnicode_AsUnicodeEscapeString:PyObject*:unicode:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2569 | |
| 2570 | PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1: |
| 2571 | PyUnicode_DecodeRawUnicodeEscape:const char*:s:: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2572 | PyUnicode_DecodeRawUnicodeEscape:Py_ssize_t:size:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2573 | PyUnicode_DecodeRawUnicodeEscape:const char*:errors:: |
| 2574 | |
| 2575 | PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1: |
| 2576 | PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s:: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2577 | PyUnicode_EncodeRawUnicodeEscape:Py_ssize_t:size:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2578 | |
| 2579 | PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2580 | PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2581 | |
| 2582 | PyUnicode_DecodeLatin1:PyObject*::+1: |
| 2583 | PyUnicode_DecodeLatin1:const char*:s:: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2584 | PyUnicode_DecodeLatin1:Py_ssize_t:size:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2585 | PyUnicode_DecodeLatin1:const char*:errors:: |
| 2586 | |
| 2587 | PyUnicode_EncodeLatin1:PyObject*::+1: |
| 2588 | PyUnicode_EncodeLatin1:const Py_UNICODE*:s:: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2589 | PyUnicode_EncodeLatin1:Py_ssize_t:size:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2590 | PyUnicode_EncodeLatin1:const char*:errors:: |
| 2591 | |
| 2592 | PyUnicode_AsLatin1String:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2593 | PyUnicode_AsLatin1String:PyObject*:unicode:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2594 | |
| 2595 | PyUnicode_DecodeASCII:PyObject*::+1: |
| 2596 | PyUnicode_DecodeASCII:const char*:s:: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2597 | PyUnicode_DecodeASCII:Py_ssize_t:size:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2598 | PyUnicode_DecodeASCII:const char*:errors:: |
| 2599 | |
| 2600 | PyUnicode_EncodeASCII:PyObject*::+1: |
| 2601 | PyUnicode_EncodeASCII:const Py_UNICODE*:s:: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2602 | PyUnicode_EncodeASCII:Py_ssize_t:size:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2603 | PyUnicode_EncodeASCII:const char*:errors:: |
| 2604 | |
| 2605 | PyUnicode_AsASCIIString:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2606 | PyUnicode_AsASCIIString:PyObject*:unicode:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2607 | |
| 2608 | PyUnicode_DecodeCharmap:PyObject*::+1: |
| 2609 | PyUnicode_DecodeCharmap:const char*:s:: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2610 | PyUnicode_DecodeCharmap:Py_ssize_t:size:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2611 | PyUnicode_DecodeCharmap:PyObject*:mapping:0: |
| 2612 | PyUnicode_DecodeCharmap:const char*:errors:: |
| 2613 | |
| 2614 | PyUnicode_EncodeCharmap:PyObject*::+1: |
| 2615 | PyUnicode_EncodeCharmap:const Py_UNICODE*:s:: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2616 | PyUnicode_EncodeCharmap:Py_ssize_t:size:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2617 | PyUnicode_EncodeCharmap:PyObject*:mapping:0: |
| 2618 | PyUnicode_EncodeCharmap:const char*:errors:: |
| 2619 | |
| 2620 | PyUnicode_AsCharmapString:PyObject*::+1: |
| 2621 | PyUnicode_AsCharmapString:PyObject*:unicode:0: |
| 2622 | PyUnicode_AsCharmapString:PyObject*:mapping:0: |
| 2623 | |
| 2624 | PyUnicode_TranslateCharmap:PyObject*::+1: |
| 2625 | PyUnicode_TranslateCharmap:const Py_UNICODE*:s:: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2626 | PyUnicode_TranslateCharmap:Py_ssize_t:size:: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2627 | PyUnicode_TranslateCharmap:PyObject*:mapping:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2628 | PyUnicode_TranslateCharmap:const char*:errors:: |
| 2629 | |
| 2630 | PyUnicode_DecodeMBCS:PyObject*::+1: |
| 2631 | PyUnicode_DecodeMBCS:const char*:s:: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2632 | PyUnicode_DecodeMBCS:Py_ssize_t:size:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2633 | PyUnicode_DecodeMBCS:const char*:errors:: |
| 2634 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2635 | PyUnicode_DecodeMBCSStateful:PyObject*::+1: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2636 | PyUnicode_DecodeMBCSStateful:const char*:s:: |
| 2637 | PyUnicode_DecodeMBCSStateful:Py_ssize_t:size:: |
| 2638 | PyUnicode_DecodeMBCSStateful:const char*:errors:: |
| 2639 | PyUnicode_DecodeMBCSStateful:Py_ssize_t*:consumed:: |
| 2640 | |
| 2641 | PyUnicode_EncodeCodePage:PyObject*::+1: |
| 2642 | PyUnicode_EncodeCodePage:int:code_page:: |
| 2643 | PyUnicode_EncodeCodePage:PyObject*:unicode:0: |
| 2644 | PyUnicode_EncodeCodePage:const char*:errors:: |
| 2645 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2646 | PyUnicode_EncodeMBCS:PyObject*::+1: |
| 2647 | PyUnicode_EncodeMBCS:const Py_UNICODE*:s:: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2648 | PyUnicode_EncodeMBCS:Py_ssize_t:size:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2649 | PyUnicode_EncodeMBCS:const char*:errors:: |
| 2650 | |
| 2651 | PyUnicode_AsMBCSString:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2652 | PyUnicode_AsMBCSString:PyObject*:unicode:0: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2653 | |
| 2654 | PyUnicode_Concat:PyObject*::+1: |
| 2655 | PyUnicode_Concat:PyObject*:left:0: |
| 2656 | PyUnicode_Concat:PyObject*:right:0: |
| 2657 | |
| 2658 | PyUnicode_Split:PyObject*::+1: |
| 2659 | PyUnicode_Split:PyObject*:left:0: |
| 2660 | PyUnicode_Split:PyObject*:right:0: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2661 | PyUnicode_Split:Py_ssize_t:maxsplit:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2662 | |
| 2663 | PyUnicode_Splitlines:PyObject*::+1: |
| 2664 | PyUnicode_Splitlines:PyObject*:s:0: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2665 | PyUnicode_Splitlines:int:keepend:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2666 | |
| 2667 | PyUnicode_Translate:PyObject*::+1: |
| 2668 | PyUnicode_Translate:PyObject*:str:0: |
| 2669 | PyUnicode_Translate:PyObject*:table:0: |
| 2670 | PyUnicode_Translate:const char*:errors:: |
| 2671 | |
| 2672 | PyUnicode_Join:PyObject*::+1: |
| 2673 | PyUnicode_Join:PyObject*:separator:0: |
| 2674 | PyUnicode_Join:PyObject*:seq:0: |
| 2675 | |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2676 | PyUnicode_Tailmatch:Py_ssize_t::: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2677 | PyUnicode_Tailmatch:PyObject*:str:0: |
| 2678 | PyUnicode_Tailmatch:PyObject*:substr:0: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2679 | PyUnicode_Tailmatch:Py_ssize_t:start:: |
| 2680 | PyUnicode_Tailmatch:Py_ssize_t:end:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2681 | PyUnicode_Tailmatch:int:direction:: |
| 2682 | |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2683 | PyUnicode_Find:Py_ssize_t::: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2684 | PyUnicode_Find:PyObject*:str:0: |
| 2685 | PyUnicode_Find:PyObject*:substr:0: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2686 | PyUnicode_Find:Py_ssize_t:start:: |
| 2687 | PyUnicode_Find:Py_ssize_t:end:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2688 | PyUnicode_Find:int:direction:: |
| 2689 | |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2690 | PyUnicode_FindChar:Py_ssize_t::: |
| 2691 | PyUnicode_FindChar:PyObject*:str:0: |
| 2692 | PyUnicode_FindChar:Py_UCS4:ch:: |
| 2693 | PyUnicode_FindChar:Py_ssize_t:start:: |
| 2694 | PyUnicode_FindChar:Py_ssize_t:end:: |
| 2695 | PyUnicode_FindChar:int:direction:: |
| 2696 | |
| 2697 | PyUnicode_Count:Py_ssize_t::: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2698 | PyUnicode_Count:PyObject*:str:0: |
| 2699 | PyUnicode_Count:PyObject*:substr:0: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2700 | PyUnicode_Count:Py_ssize_t:start:: |
| 2701 | PyUnicode_Count:Py_ssize_t:end:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2702 | |
| 2703 | PyUnicode_Replace:PyObject*::+1: |
| 2704 | PyUnicode_Replace:PyObject*:str:0: |
| 2705 | PyUnicode_Replace:PyObject*:substr:0: |
| 2706 | PyUnicode_Replace:PyObject*:replstr:0: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2707 | PyUnicode_Replace:Py_ssize_t:maxcount:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2708 | |
| 2709 | PyUnicode_Compare:int::: |
| 2710 | PyUnicode_Compare:PyObject*:left:0: |
| 2711 | PyUnicode_Compare:PyObject*:right:0: |
| 2712 | |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2713 | PyUnicode_CompareWithASCIIString:int::: |
| 2714 | PyUnicode_CompareWithASCIIString:PyObject*:uni:0: |
| 2715 | PyUnicode_CompareWithASCIIString:const char*:string:: |
| 2716 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2717 | PyUnicode_RichCompare:PyObject*::+1: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2718 | PyUnicode_RichCompare:PyObject*:left:0: |
| 2719 | PyUnicode_RichCompare:PyObject*:right:0: |
| 2720 | PyUnicode_RichCompare:int:op:: |
| 2721 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2722 | PyUnicode_Format:PyObject*::+1: |
| 2723 | PyUnicode_Format:PyObject*:format:0: |
| 2724 | PyUnicode_Format:PyObject*:args:0: |
| 2725 | |
| 2726 | PyUnicode_Contains:int::: |
| 2727 | PyUnicode_Contains:PyObject*:container:0: |
| 2728 | PyUnicode_Contains:PyObject*:element:0: |
| 2729 | |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2730 | PyUnicode_InternInPlace:void::: |
| 2731 | PyUnicode_InternInPlace:PyObject**:string:+1: |
| 2732 | |
| 2733 | PyUnicode_InternFromString:PyObject*::+1: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2734 | PyUnicode_InternFromString:const char*:v:: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2735 | |
| 2736 | PyUnicode_New:PyObject*::+1: |
| 2737 | PyUnicode_New:Py_ssize_t:size:: |
| 2738 | PyUnicode_New:Py_UCS4:maxchar:: |
| 2739 | |
| 2740 | PyUnicode_FromKindAndData:PyObject*::+1: |
| 2741 | PyUnicode_FromKindAndData:int:kind:: |
| 2742 | PyUnicode_FromKindAndData:const void*:buffer:: |
| 2743 | PyUnicode_FromKindAndData:Py_ssize_t:size:: |
| 2744 | |
| 2745 | PyUnicode_FromStringAndSize:PyObject*::+1: |
| 2746 | PyUnicode_FromStringAndSize:const char*:u:: |
| 2747 | PyUnicode_FromStringAndSize:Py_ssize_t:size:: |
| 2748 | |
| 2749 | PyUnicode_FromString:PyObject*::+1: |
| 2750 | PyUnicode_FromString:const char*:u:: |
| 2751 | |
| 2752 | PyUnicode_FromFormat:PyObject*::+1: |
| 2753 | PyUnicode_FromFormat:const char*:format:: |
| 2754 | PyUnicode_FromFormat::...:: |
| 2755 | |
| 2756 | PyUnicode_FromFormatV:PyObject*::+1: |
| 2757 | PyUnicode_FromFormatV:const char*:format:: |
| 2758 | PyUnicode_FromFormatV:va_list:args:: |
| 2759 | |
| 2760 | PyUnicode_GetLength:Py_ssize_t::: |
| 2761 | PyUnicode_GetLength:PyObject*:unicode:0: |
| 2762 | |
| 2763 | PyUnicode_CopyCharacters:Py_ssize_t::: |
| 2764 | PyUnicode_CopyCharacters:PyObject*:to:0: |
| 2765 | PyUnicode_CopyCharacters:Py_ssize_t:to_start:: |
| 2766 | PyUnicode_CopyCharacters:PyObject*:from:0: |
| 2767 | PyUnicode_CopyCharacters:Py_ssize_t:from_start:: |
| 2768 | PyUnicode_CopyCharacters:Py_ssize_t:how_many:: |
| 2769 | |
| 2770 | PyUnicode_Fill:Py_ssize_t::: |
| 2771 | PyUnicode_Fill:PyObject*:unicode:0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2772 | PyUnicode_Fill:Py_ssize_t:start:: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2773 | PyUnicode_Fill:Py_ssize_t:length:: |
| 2774 | PyUnicode_Fill:Py_UCS4:fill_char:: |
| 2775 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2776 | PyUnicode_READ:Py_UCS4::: |
| 2777 | PyUnicode_READ:int:kind:: |
| 2778 | PyUnicode_READ:void*:data:: |
| 2779 | PyUnicode_READ:Py_ssize_t:index:: |
| 2780 | |
| 2781 | PyUnicode_READ_CHAR:Py_UCS4::: |
| 2782 | PyUnicode_READ_CHAR:PyObject*:o:0: |
| 2783 | PyUnicode_READ_CHAR:Py_ssize_t:index:: |
| 2784 | |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2785 | PyUnicode_ReadChar:Py_UCS4::: |
| 2786 | PyUnicode_ReadChar:PyObject*:unicode:0: |
| 2787 | PyUnicode_ReadChar:Py_ssize_t:index:: |
| 2788 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2789 | PyUnicode_WRITE:void::: |
| 2790 | PyUnicode_WRITE:int:kind:: |
| 2791 | PyUnicode_WRITE:void*:data:: |
| 2792 | PyUnicode_WRITE:Py_ssize_t:index:: |
| 2793 | PyUnicode_WRITE:Py_UCS4:value:: |
| 2794 | |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2795 | PyUnicode_WriteChar:int::: |
| 2796 | PyUnicode_WriteChar:PyObject*:unicode:0: |
| 2797 | PyUnicode_WriteChar:Py_ssize_t:index:: |
| 2798 | PyUnicode_WriteChar:Py_UCS4:character:: |
| 2799 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2800 | PyUnicode_READY:int::: |
| 2801 | PyUnicode_READY:PyObject*:o:0: |
| 2802 | |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2803 | PyUnicode_Substring:PyObject*::+1: |
| 2804 | PyUnicode_Substring:PyObject*:str:0: |
| 2805 | PyUnicode_Substring:Py_ssize_t:start:: |
| 2806 | PyUnicode_Substring:Py_ssize_t:end:: |
| 2807 | |
| 2808 | PyUnicode_AsUCS4:Py_UCS4*::: |
| 2809 | PyUnicode_AsUCS4:PyObject*:u:0: |
| 2810 | PyUnicode_AsUCS4:Py_UCS4*:buffer:: |
| 2811 | PyUnicode_AsUCS4:Py_ssize_t:buflen:: |
| 2812 | PyUnicode_AsUCS4:int:copy_null:: |
| 2813 | |
| 2814 | PyUnicode_AsUCS4Copy:Py_UCS4*::: |
| 2815 | PyUnicode_AsUCS4Copy:PyObject*:u:0: |
| 2816 | |
| 2817 | PyUnicode_DecodeLocaleAndSize:PyObject*::+1: |
| 2818 | PyUnicode_DecodeLocaleAndSize:const char*:str:: |
| 2819 | PyUnicode_DecodeLocaleAndSize:Py_ssize_t:len:: |
| 2820 | PyUnicode_DecodeLocaleAndSize:const char*:errors:: |
| 2821 | |
| 2822 | PyUnicode_DecodeLocale:PyObject*::+1: |
| 2823 | PyUnicode_DecodeLocale:const char*:str:: |
| 2824 | PyUnicode_DecodeLocale:const char*:errors:: |
| 2825 | |
| 2826 | PyUnicode_EncodeLocale:PyObject*::+1: |
| 2827 | PyUnicode_EncodeLocale:PyObject*:unicode:0: |
| 2828 | PyUnicode_EncodeLocale:const char*:errors:: |
| 2829 | |
| 2830 | PyUnicode_FSConverter:int::: |
| 2831 | PyUnicode_FSConverter:PyObject*:obj:0: |
| 2832 | PyUnicode_FSConverter:void*:result:: |
| 2833 | |
| 2834 | PyUnicode_FSDecoder:int::: |
| 2835 | PyUnicode_FSDecoder:PyObject*:obj:0: |
| 2836 | PyUnicode_FSDecoder:void*:result:: |
| 2837 | |
| 2838 | PyUnicode_DecodeFSDefaultAndSize:PyObject*::+1: |
| 2839 | PyUnicode_DecodeFSDefaultAndSize:const char*:s:: |
| 2840 | PyUnicode_DecodeFSDefaultAndSize:Py_ssize_t:size:: |
| 2841 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2842 | PyUnicode_DecodeFSDefault:PyObject*::+1: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2843 | PyUnicode_DecodeFSDefault:const char*:s:: |
| 2844 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2845 | PyUnicode_EncodeFSDefault:PyObject*::+1: |
| 2846 | PyUnicode_EncodeFSDefault:PyObject*:unicode:0: |
| 2847 | |
| 2848 | PyUnicodeDecodeError_Create:PyObject*::+1: |
| 2849 | PyUnicodeDecodeError_Create:const char*:encoding:: |
| 2850 | PyUnicodeDecodeError_Create:const char*:object:: |
| 2851 | PyUnicodeDecodeError_Create:Py_ssize_t:length:: |
| 2852 | PyUnicodeDecodeError_Create:Py_ssize_t:start:: |
| 2853 | PyUnicodeDecodeError_Create:Py_ssize_t:end:: |
| 2854 | PyUnicodeDecodeError_Create:const char*:reason:: |
| 2855 | |
| 2856 | PyUnicodeDecodeError_GetEncoding:PyObject*::+1: |
| 2857 | PyUnicodeDecodeError_GetEncoding:PyObject*:exc:0: |
| 2858 | |
| 2859 | PyUnicodeDecodeError_GetEnd:Py_ssize_t::: |
| 2860 | PyUnicodeDecodeError_GetEnd:PyObject*:exc:0: |
| 2861 | PyUnicodeDecodeError_GetEnd:Py_ssize_t*:end:: |
| 2862 | |
| 2863 | PyUnicodeDecodeError_GetObject:PyObject*::+1: |
| 2864 | PyUnicodeDecodeError_GetObject:PyObject*:exc:0: |
| 2865 | |
| 2866 | PyUnicodeDecodeError_GetReason:PyObject*::+1: |
| 2867 | PyUnicodeDecodeError_GetReason:PyObject*:exc:0: |
| 2868 | |
| 2869 | PyUnicodeDecodeError_GetStart:Py_ssize_t::: |
| 2870 | PyUnicodeDecodeError_GetStart:PyObject*:exc:0: |
| 2871 | PyUnicodeDecodeError_GetStart:Py_ssize_t*:start:: |
| 2872 | |
| 2873 | PyUnicodeDecodeError_SetEnd:int::: |
| 2874 | PyUnicodeDecodeError_SetEnd:PyObject*:exc:0: |
| 2875 | PyUnicodeDecodeError_SetEnd:Py_ssize_t:end:: |
| 2876 | |
| 2877 | PyUnicodeDecodeError_SetReason:int::: |
| 2878 | PyUnicodeDecodeError_SetReason:PyObject*:exc:0: |
| 2879 | PyUnicodeDecodeError_SetReason:const char*:reason:: |
| 2880 | |
| 2881 | PyUnicodeDecodeError_SetStart:int::: |
| 2882 | PyUnicodeDecodeError_SetStart:PyObject*:exc:0: |
| 2883 | PyUnicodeDecodeError_SetStart:Py_ssize_t:start:: |
| 2884 | |
| 2885 | PyUnicodeEncodeError_Create:PyObject*::+1: |
| 2886 | PyUnicodeEncodeError_Create:const char*:encoding:: |
| 2887 | PyUnicodeEncodeError_Create:const Py_UNICODE*:object:: |
| 2888 | PyUnicodeEncodeError_Create:Py_ssize_t:length:: |
| 2889 | PyUnicodeEncodeError_Create:Py_ssize_t:start:: |
| 2890 | PyUnicodeEncodeError_Create:Py_ssize_t:end:: |
| 2891 | PyUnicodeEncodeError_Create:const char*:reason:: |
| 2892 | |
| 2893 | PyUnicodeTranslateError_Create:PyObject*::+1: |
| 2894 | PyUnicodeTranslateError_Create:const Py_UNICODE*:object:: |
| 2895 | PyUnicodeTranslateError_Create:Py_ssize_t:length:: |
| 2896 | PyUnicodeTranslateError_Create:Py_ssize_t:start:: |
| 2897 | PyUnicodeTranslateError_Create:Py_ssize_t:end:: |
| 2898 | PyUnicodeTranslateError_Create:const char*:reason:: |
| 2899 | |
| 2900 | PyWeakref_Check:int::: |
| 2901 | PyWeakref_Check:PyObject*:ob:: |
| 2902 | |
| 2903 | PyWeakref_CheckProxy:int::: |
| 2904 | PyWeakref_CheckProxy:PyObject*:ob:: |
| 2905 | |
| 2906 | PyWeakref_CheckRef:int::: |
| 2907 | PyWeakref_CheckRef:PyObject*:ob:: |
Mat M | b2f642c | 2018-12-19 14:13:15 -0500 | [diff] [blame] | 2908 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2909 | PyWeakref_GET_OBJECT:PyObject*::0: |
| 2910 | PyWeakref_GET_OBJECT:PyObject*:ref:0: |
| 2911 | |
| 2912 | PyWeakref_GetObject:PyObject*::0: |
| 2913 | PyWeakref_GetObject:PyObject*:ref:0: |
| 2914 | |
| 2915 | PyWeakref_NewProxy:PyObject*::+1: |
| 2916 | PyWeakref_NewProxy:PyObject*:ob:0: |
| 2917 | PyWeakref_NewProxy:PyObject*:callback:0: |
| 2918 | |
| 2919 | PyWeakref_NewRef:PyObject*::+1: |
| 2920 | PyWeakref_NewRef:PyObject*:ob:0: |
| 2921 | PyWeakref_NewRef:PyObject*:callback:0: |
| 2922 | |
| 2923 | PyWrapper_New:PyObject*::+1: |
| 2924 | PyWrapper_New:PyObject*:d:0: |
| 2925 | PyWrapper_New:PyObject*:self:0: |
| 2926 | |
| 2927 | Py_AtExit:int::: |
| 2928 | Py_AtExit:void (*)():func:: |
| 2929 | |
| 2930 | Py_BuildValue:PyObject*::+1: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 2931 | Py_BuildValue:const char*:format:: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2932 | Py_BuildValue::...:: |
| 2933 | |
| 2934 | Py_VaBuildValue:PyObject*::+1: |
| 2935 | Py_VaBuildValue:const char*:format:: |
| 2936 | Py_VaBuildValue:va_list:vargs:: |
| 2937 | |
| 2938 | Py_CLEAR:void::: |
| 2939 | Py_CLEAR:PyObject*:o:-1: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2940 | |
| 2941 | Py_CompileString:PyObject*::+1: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 2942 | Py_CompileString:const char*:str:: |
| 2943 | Py_CompileString:const char*:filename:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2944 | Py_CompileString:int:start:: |
| 2945 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2946 | Py_CompileStringExFlags:PyObject*::+1: |
| 2947 | Py_CompileStringExFlags:const char*:str:: |
| 2948 | Py_CompileStringExFlags:const char*:filename:: |
| 2949 | Py_CompileStringExFlags:int:start:: |
| 2950 | Py_CompileStringExFlags:PyCompilerFlags*:flags:: |
| 2951 | Py_CompileStringExFlags:int:optimize:: |
| 2952 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2953 | Py_CompileStringFlags:PyObject*::+1: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 2954 | Py_CompileStringFlags:const char*:str:: |
| 2955 | Py_CompileStringFlags:const char*:filename:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2956 | Py_CompileStringFlags:int:start:: |
| 2957 | Py_CompileStringFlags:PyCompilerFlags*:flags:: |
| 2958 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2959 | Py_CompileStringObject:PyObject*::+1: |
| 2960 | Py_CompileStringObject:const char*:str:: |
| 2961 | Py_CompileStringObject:PyObject*:filename:0: |
| 2962 | Py_CompileStringObject:int:start:: |
| 2963 | Py_CompileStringObject:PyCompilerFlags*:flags:: |
| 2964 | Py_CompileStringObject:int:optimize:: |
| 2965 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2966 | Py_DECREF:void::: |
| 2967 | Py_DECREF:PyObject*:o:-1: |
| 2968 | |
| 2969 | Py_EndInterpreter:void::: |
| 2970 | Py_EndInterpreter:PyThreadState*:tstate:: |
| 2971 | |
| 2972 | Py_Exit:void::: |
| 2973 | Py_Exit:int:status:: |
| 2974 | |
| 2975 | Py_FatalError:void::: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 2976 | Py_FatalError:const char*:message:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2977 | |
| 2978 | Py_FdIsInteractive:int::: |
| 2979 | Py_FdIsInteractive:FILE*:fp:: |
Serhiy Storchaka | 244d625 | 2013-07-11 21:57:34 +0300 | [diff] [blame] | 2980 | Py_FdIsInteractive:const char*:filename:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2981 | |
| 2982 | Py_Finalize:void::: |
| 2983 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2984 | Py_GetBuildInfo:const char*::: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2985 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2986 | Py_GetCompiler:const char*::: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2987 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2988 | Py_GetCopyright:const char*::: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2989 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2990 | Py_GetExecPrefix:wchar_t*::: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2991 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2992 | Py_GetPath:wchar_t*::: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2993 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2994 | Py_GetPlatform:const char*::: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2995 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2996 | Py_GetPrefix:wchar_t*::: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2997 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 2998 | Py_GetProgramFullPath:wchar_t*::: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2999 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 3000 | Py_GetProgramName:wchar_t*::: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 3001 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 3002 | Py_GetVersion:const char*::: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 3003 | |
| 3004 | Py_INCREF:void::: |
| 3005 | Py_INCREF:PyObject*:o:+1: |
| 3006 | |
| 3007 | Py_Initialize:void::: |
| 3008 | |
| 3009 | Py_IsInitialized:int::: |
| 3010 | |
| 3011 | Py_NewInterpreter:PyThreadState*::: |
| 3012 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 3013 | Py_ReprEnter:int::: |
| 3014 | Py_ReprEnter:PyObject*:object:+1: |
| 3015 | |
| 3016 | Py_ReprLeave:void::: |
| 3017 | Py_ReprLeave:PyObject*:object:-1: |
| 3018 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 3019 | Py_SetProgramName:void::: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 3020 | Py_SetProgramName:const wchar_t*:name:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 3021 | |
| 3022 | Py_XDECREF:void::: |
| 3023 | Py_XDECREF:PyObject*:o:-1:if o is not NULL |
| 3024 | |
| 3025 | Py_XINCREF:void::: |
| 3026 | Py_XINCREF:PyObject*:o:+1:if o is not NULL |
| 3027 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 3028 | _PyImport_Fini:void::: |
| 3029 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 3030 | _PyImport_Init:void::: |
| 3031 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 3032 | _PyObject_New:PyObject*::+1: |
| 3033 | _PyObject_New:PyTypeObject*:type:0: |
| 3034 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 3035 | _PyObject_NewVar:PyVarObject*::+1: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 3036 | _PyObject_NewVar:PyTypeObject*:type:0: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 3037 | _PyObject_NewVar:Py_ssize_t:size:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 3038 | |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 3039 | _PyBytes_Resize:int::: |
| 3040 | _PyBytes_Resize:PyObject**:bytes:0: |
| 3041 | _PyBytes_Resize:Py_ssize_t:newsize:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 3042 | |
| 3043 | _PyTuple_Resize:int::: |
Serhiy Storchaka | 83dd4e8 | 2018-12-20 09:33:58 +0200 | [diff] [blame] | 3044 | _PyTuple_Resize:PyObject**:p:0: |
| 3045 | _PyTuple_Resize:Py_ssize_t:new:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 3046 | |
| 3047 | _Py_c_diff:Py_complex::: |
| 3048 | _Py_c_diff:Py_complex:left:: |
| 3049 | _Py_c_diff:Py_complex:right:: |
| 3050 | |
| 3051 | _Py_c_neg:Py_complex::: |
| 3052 | _Py_c_neg:Py_complex:complex:: |
| 3053 | |
| 3054 | _Py_c_pow:Py_complex::: |
| 3055 | _Py_c_pow:Py_complex:num:: |
| 3056 | _Py_c_pow:Py_complex:exp:: |
| 3057 | |
| 3058 | _Py_c_prod:Py_complex::: |
| 3059 | _Py_c_prod:Py_complex:left:: |
| 3060 | _Py_c_prod:Py_complex:right:: |
| 3061 | |
| 3062 | _Py_c_quot:Py_complex::: |
| 3063 | _Py_c_quot:Py_complex:dividend:: |
| 3064 | _Py_c_quot:Py_complex:divisor:: |
| 3065 | |
| 3066 | _Py_c_sum:Py_complex::: |
| 3067 | _Py_c_sum:Py_complex:left:: |
| 3068 | _Py_c_sum:Py_complex:right:: |