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