refcounts.dat 33.5 KB
Newer Older
1
# Created by Skip Montanaro <skip@mojam.com>.
2

3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
# Format:
#	function ':' type ':' [param name] ':' [refcount effect] ':' [comment]
# If the param name slot is empty, that line corresponds to the function's
# return value, otherwise it's the type of the named parameter.

# The first line of a function block gives type/refcount information for the
# function's return value.  Successive lines with the same function name
# correspond to the function's parameter list and appear in the order the
# parameters appear in the function's prototype.

# For readability, each function's lines are surrounded by a blank line.
# The blocks are sorted alphabetically by function name.

# Refcount behavior is given for all PyObject* types: 0 (no change), +1
# (increment) and -1 (decrement).  A blank refcount field indicates the
# parameter or function value is not a PyObject* and is therefore not
19 20 21 22
# subject to reference counting.  A special case for the value "null"
# (without quotes) is used for functions which return a PyObject* type but
# always return NULL.  This is used by some of the PyErr_*() functions, in
# particular.
23

24 25 26 27 28 29 30
# XXX NOTE: the 0/+1/-1 refcount information for arguments is
# confusing!  Much more useful would be to indicate whether the
# function "steals" a reference to the argument or not.  Take for
# example PyList_SetItem(list, i, item).  This lists as a 0 change for
# both the list and the item arguments.  However, in fact it steals a
# reference to the item argument!

31 32 33
# The parameter names are as they appear in the API manual, not the source
# code. 

34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
PyBuffer_FromObject:PyObject*::+1:
PyBuffer_FromObject:PyObject*:base:+1:
PyBuffer_FromObject:int:offset::
PyBuffer_FromObject:int:size::

PyBuffer_FromReadWriteObject:PyObject*::+1:
PyBuffer_FromReadWriteObject:PyObject*:base:+1:
PyBuffer_FromReadWriteObject:int:offset::
PyBuffer_FromReadWriteObject:int:size::

PyBuffer_FromMemory:PyObject*::+1:
PyBuffer_FromMemory:void*:ptr::
PyBuffer_FromMemory:int:size::

PyBuffer_FromReadWriteMemory:PyObject*::+1:
PyBuffer_FromReadWriteMemory:void*:ptr::
PyBuffer_FromReadWriteMemory:int:size::

PyBuffer_New:PyObject*::+1:
PyBuffer_New:int:size::

55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
PyCObject_AsVoidPtr:void*:::
PyCObject_AsVoidPtr:PyObject*:self:0:

PyCObject_FromVoidPtr:PyObject*::+1:
PyCObject_FromVoidPtr:void*:cobj::
PyCObject_FromVoidPtr::void (* destr)(void* )::

PyCObject_FromVoidPtrAndDesc:PyObject*::+1:
PyCObject_FromVoidPtrAndDesc:void*:cobj::
PyCObject_FromVoidPtrAndDesc:void*:desc::
PyCObject_FromVoidPtrAndDesc:void(*)(void*,void*):destr::

PyCObject_GetDesc:void*:::
PyCObject_GetDesc:PyObject*:self:0:

PyCallable_Check:int:::
PyCallable_Check:PyObject*:o:0:

PyComplex_AsCComplex:Py_complex:::
PyComplex_AsCComplex:PyObject*:op:0:

PyComplex_Check:int:::
PyComplex_Check:PyObject*:p:0:

PyComplex_FromCComplex:PyObject*::+1:
PyComplex_FromCComplex::Py_complex v::

PyComplex_FromDoubles:PyObject*::+1:
PyComplex_FromDoubles::double real::
PyComplex_FromDoubles::double imag::

PyComplex_ImagAsDouble:double:::
PyComplex_ImagAsDouble:PyObject*:op:0:

PyComplex_RealAsDouble:double:::
PyComplex_RealAsDouble:PyObject*:op:0:

PyDict_Check:int:::
PyDict_Check:PyObject*:p:0:

PyDict_Clear:void:::
96
PyDict_Clear:PyObject*:p:0:
97 98

PyDict_DelItem:int:::
99
PyDict_DelItem:PyObject*:p:0:
100 101 102
PyDict_DelItem:PyObject*:key:0:

PyDict_DelItemString:int:::
103
PyDict_DelItemString:PyObject*:p:0:
104 105
PyDict_DelItemString:char*:key::

106
PyDict_GetItem:PyObject*::0:0
107
PyDict_GetItem:PyObject*:p:0:
108 109
PyDict_GetItem:PyObject*:key:0:

110
PyDict_GetItemString:PyObject*::0:
111
PyDict_GetItemString:PyObject*:p:0:
112 113 114
PyDict_GetItemString:char*:key::

PyDict_Items:PyObject*::+1:
115
PyDict_Items:PyObject*:p:0:
116 117

PyDict_Keys:PyObject*::+1:
118
PyDict_Keys:PyObject*:p:0:
119 120 121

PyDict_New:PyObject*::+1:

122 123 124
PyDict_Copy:PyObject*::+1:
PyDict_Copy:PyObject*:p:0:

125
PyDict_Next:int:::
126
PyDict_Next:PyObject*:p:0:
127 128 129 130 131
PyDict_Next:int:ppos::
PyDict_Next:PyObject**:pkey:0:
PyDict_Next:PyObject**:pvalue:0:

PyDict_SetItem:int:::
132
PyDict_SetItem:PyObject*:p:0:
133 134 135 136
PyDict_SetItem:PyObject*:key:+1:
PyDict_SetItem:PyObject*:val:+1:

PyDict_SetItemString:int:::
137
PyDict_SetItemString:PyObject*:p:0:
138 139 140 141
PyDict_SetItemString:char*:key::
PyDict_SetItemString:PyObject*:val:+1:

PyDict_Size:int:::
142
PyDict_Size:PyObject*:p::
143 144

PyDict_Values:PyObject*::+1:
145
PyDict_Values:PyObject*:p:0:
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171

PyErr_BadArgument:int:::

PyErr_BadInternalCall:void:::

PyErr_CheckSignals:int:::

PyErr_Clear:void:::

PyErr_ExceptionMatches:int:::
PyErr_ExceptionMatches:PyObject*:exc:0:

PyErr_Fetch:void:::
PyErr_Fetch:PyObject**:ptype:0:
PyErr_Fetch:PyObject**:pvalue:0:
PyErr_Fetch:PyObject**:ptraceback:0:

PyErr_GivenExceptionMatches:int:::
PyErr_GivenExceptionMatches:PyObject*:given:0:
PyErr_GivenExceptionMatches:PyObject*:exc:0:

PyErr_NewException:PyObject*::+1:
PyErr_NewException:char*:name::
PyErr_NewException:PyObject*:base:0:
PyErr_NewException:PyObject*:dict:0:

172
PyErr_NoMemory:PyObject*::null:
173 174 175 176 177 178 179 180 181 182 183

PyErr_NormalizeException:void:::
PyErr_NormalizeException:PyObject**:exc::???
PyErr_NormalizeException:PyObject**:val::???
PyErr_NormalizeException:PyObject**:tb::???

PyErr_Occurred:PyObject*::0:

PyErr_Print:void:::

PyErr_Restore:void:::
184 185 186
PyErr_Restore:PyObject*:type:-1:
PyErr_Restore:PyObject*:value:-1:
PyErr_Restore:PyObject*:traceback:-1:
187

188
PyErr_SetFromErrno:PyObject*::null:
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
PyErr_SetFromErrno:PyObject*:type:0:

PyErr_SetInterrupt:void:::

PyErr_SetNone:void:::
PyErr_SetNone:PyObject*:type:+1:

PyErr_SetObject:void:::
PyErr_SetObject:PyObject*:type:+1:
PyErr_SetObject:PyObject*:value:+1:

PyErr_SetString:void:::
PyErr_SetString:PyObject*:type:+1:
PyErr_SetString:char*:message::

Jeremy Hylton's avatar
Jeremy Hylton committed
204 205 206 207 208
PyErr_Format:PyObject*::null:
PyErr_Format:PyObject*:exception:+1:
PyErr_Format:char*:format::
PyErr_Format::...::

209
PyErr_Warn:int:::
210
PyErr_Warn:PyObject*:category:0:
211 212
PyErr_Warn:char*:message::

213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
PyEval_AcquireLock:void:::

PyEval_AcquireThread:void:::
PyEval_AcquireThread:PyThreadState*:tstate::

PyEval_InitThreads:void:::

PyEval_ReleaseLock:void:::

PyEval_ReleaseThread:void:::
PyEval_ReleaseThread:PyThreadState*:tstate::

PyEval_RestoreThread:void:::
PyEval_RestoreThread:PyThreadState*:tstate::

PyEval_SaveThread:PyThreadState*:::

230 231 232 233 234
PyEval_EvalCode:PyObject*::+1:
PyEval_EvalCode:PyCodeObject*:co:0:
PyEval_EvalCode:PyObject*:globals:0:
PyEval_EvalCode:PyObject*:locals:0:

235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
PyFile_AsFile:FILE*:::
PyFile_AsFile:PyFileObject*:p:0:

PyFile_Check:int:::
PyFile_Check:PyObject*:p:0:

PyFile_FromFile:PyObject*::+1:
PyFile_FromFile:FILE*:fp::
PyFile_FromFile:char*:name::
PyFile_FromFile:char*:mode::
PyFile_FromFile:int(*:close)::

PyFile_FromString:PyObject*::+1:
PyFile_FromString:char*:name::
PyFile_FromString:char*:mode::

PyFile_GetLine:PyObject*::+1:
PyFile_GetLine:PyObject*:p::
PyFile_GetLine:int:n::

PyFile_Name:PyObject*::0:
PyFile_Name:PyObject*:p:0:

PyFile_SetBufSize:void:::
PyFile_SetBufSize:PyFileObject*:p:0:
PyFile_SetBufSize:int:n::

PyFile_SoftSpace:int:::
PyFile_SoftSpace:PyFileObject*:p:0:
PyFile_SoftSpace:int:newflag::

PyFile_WriteObject:int:::
PyFile_WriteObject:PyObject*:obj:0:
PyFile_WriteObject:PyFileObject*:p:0:
PyFile_WriteObject:int:flags::

PyFile_WriteString:int:::
PyFile_WriteString:char*:s::
PyFile_WriteString:PyFileObject*:p:0:
PyFile_WriteString:int:flags::

PyFloat_AS_DOUBLE:double:::
PyFloat_AS_DOUBLE:PyObject*:pyfloat:0:

PyFloat_AsDouble:double:::
PyFloat_AsDouble:PyObject*:pyfloat:0:

PyFloat_Check:int:::
PyFloat_Check:PyObject*:p:0:

PyFloat_FromDouble:PyObject*::+1:
PyFloat_FromDouble:double:v::

288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303
Py_InitModule:PyObject*::0:
Py_InitModule:name:char*::
Py_InitModule:methods:PyMethodDef[]::

Py_InitModule3:PyObject*::0:
Py_InitModule3:name:char*::
Py_InitModule3:methods:PyMethodDef[]::
Py_InitModule3:doc:char*::

Py_InitModule4:PyObject*::0:
Py_InitModule4:name:char*::
Py_InitModule4:methods:PyMethodDef[]::
Py_InitModule4:doc:char*::
Py_InitModule4:self:PyObject*::
Py_InitModule4:apiver:int::usually provided by Py_InitModule or Py_InitModule3

304
PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules
305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
PyImport_AddModule:char*:name::

PyImport_Cleanup:void:::

PyImport_ExecCodeModule:PyObject*::+1:
PyImport_ExecCodeModule:char*:name::
PyImport_ExecCodeModule:PyObject*:co:0:

PyImport_GetMagicNumber:long:::

PyImport_GetModuleDict:PyObject*::0:

PyImport_Import:PyObject*::+1:
PyImport_Import:PyObject*:name:0:

PyImport_ImportFrozenModule:int:::
PyImport_ImportFrozenModule:char*:::

323
PyImport_ImportModule:PyObject*::+1:
324 325
PyImport_ImportModule:char*:name::

326
PyImport_ImportModuleEx:PyObject*::+1:
327 328 329 330 331
PyImport_ImportModuleEx:char*:name::
PyImport_ImportModuleEx:PyObject*:globals:0:???
PyImport_ImportModuleEx:PyObject*:locals:0:???
PyImport_ImportModuleEx:PyObject*:fromlist:0:???

332
PyImport_ReloadModule:PyObject*::+1:
333
PyImport_ReloadModule:PyObject*:m:0:
334

335 336 337 338 339 340 341 342 343
PyInstance_New:PyObject*::+1:
PyInstance_New:PyObject*:klass:+1:
PyInstance_New:PyObject*:arg:0:
PyInstance_New:PyObject*:kw:0:

PyInstance_NewRaw:PyObject*::+1:
PyInstance_NewRaw:PyObject*:klass:+1:
PyInstance_NewRaw:PyObject*:dict:+1:

344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531
PyInt_AS_LONG:long:::
PyInt_AS_LONG:PyIntObject*:io:0:

PyInt_AsLong:long:::
PyInt_AsLong:PyObject*:io:0:

PyInt_Check:int:::
PyInt_Check:PyObject*::0:

PyInt_FromLong:PyObject*::+1:
PyInt_FromLong:long:ival::

PyInt_GetMax:long:::

PyInterpreterState_Clear:void:::
PyInterpreterState_Clear:PyInterpreterState*:interp::

PyInterpreterState_Delete:void:::
PyInterpreterState_Delete:PyInterpreterState*:interp::

PyInterpreterState_New:PyInterpreterState*:::

PyList_Append:int:::
PyList_Append:PyObject*:list:0:
PyList_Append:PyObject*:item:+1:

PyList_AsTuple:PyObject*::+1:
PyList_AsTuple:PyObject*:list:0:

PyList_Check:int:::
PyList_Check:PyObject*:p:0:

PyList_GET_ITEM:PyObject*::0:
PyList_GET_ITEM:PyObject*:list:0:
PyList_GET_ITEM:int:i:0:

PyList_GET_SIZE:int:::
PyList_GET_SIZE:PyObject*:list:0:

PyList_GetItem:PyObject*::0:
PyList_GetItem:PyObject*:list:0:
PyList_GetItem:int:index::

PyList_GetSlice:PyObject*::+1:
PyList_GetSlice:PyObject*:list:0:
PyList_GetSlice:int:low::
PyList_GetSlice:int:high::

PyList_Insert:int:::
PyList_Insert:PyObject*:list:0:
PyList_Insert:int:index::
PyList_Insert:PyObject*:item:+1:

PyList_New:PyObject*::+1:
PyList_New:int:len::

PyList_Reverse:int:::
PyList_Reverse:PyObject*:list:0:

PyList_SET_ITEM:PyObject*::0:
PyList_SET_ITEM:PyObject*:list:0:
PyList_SET_ITEM:int:i::
PyList_SET_ITEM:PyObject*:o:0:

PyList_SetItem:int:::
PyList_SetItem:PyObject*:list:0:
PyList_SetItem:int:index::
PyList_SetItem:PyObject*:item:0:

PyList_SetSlice:int:::
PyList_SetSlice:PyObject*:list:0:
PyList_SetSlice:int:low::
PyList_SetSlice:int:high::
PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?

PyList_Size:int:::
PyList_Size:PyObject*:list:0:

PyList_Sort:int:::
PyList_Sort:PyObject*:list:0:

PyLong_AsDouble:double:::
PyLong_AsDouble:PyObject*:pylong:0:

PyLong_AsLong:long:::
PyLong_AsLong:PyObject*:pylong:0:

PyLong_AsUnsignedLong:unsigned long:::
PyLong_AsUnsignedLong:PyObject*:pylong:0:

PyLong_Check:int:::
PyLong_Check:PyObject*:p:0:

PyLong_FromDouble:PyObject*::+1:
PyLong_FromDouble:double:v::

PyLong_FromLong:PyObject*::+1:
PyLong_FromLong:long:v::

PyLong_FromString:PyObject*::+1:
PyLong_FromString:char*:str::
PyLong_FromString:char**:pend::
PyLong_FromString:int:base::

PyLong_FromUnsignedLong:PyObject*::+1:
PyLong_FromUnsignedLong:unsignedlong:v::

PyMapping_Check:int:::
PyMapping_Check:PyObject*:o:0:

PyMapping_DelItem:int:::
PyMapping_DelItem:PyObject*:o:0:
PyMapping_DelItem:PyObject*:key:0:

PyMapping_DelItemString:int:::
PyMapping_DelItemString:PyObject*:o:0:
PyMapping_DelItemString:char*:key::

PyMapping_GetItemString:PyObject*::+1:
PyMapping_GetItemString:PyObject*:o:0:
PyMapping_GetItemString:char*:key::

PyMapping_HasKey:int:::
PyMapping_HasKey:PyObject*:o:0:
PyMapping_HasKey:PyObject*:key::

PyMapping_HasKeyString:int:::
PyMapping_HasKeyString:PyObject*:o:0:
PyMapping_HasKeyString:char*:key::

PyMapping_Items:PyObject*::+1:
PyMapping_Items:PyObject*:o:0:

PyMapping_Keys:PyObject*::+1:
PyMapping_Keys:PyObject*:o:0:

PyMapping_Length:int:::
PyMapping_Length:PyObject*:o:0:

PyMapping_SetItemString:int:::
PyMapping_SetItemString:PyObject*:o:0:
PyMapping_SetItemString:char*:key::
PyMapping_SetItemString:PyObject*:v:+1:

PyMapping_Values:PyObject*::+1:
PyMapping_Values:PyObject*:o:0:

PyModule_GetDict:PyObject*::0:
PyModule_GetDict::PyObject* module:0:

PyModule_GetFilename:char*:::
PyModule_GetFilename:PyObject*:module:0:

PyModule_GetName:char*:::
PyModule_GetName:PyObject*:module:0:

PyModule_New:PyObject*::+1:
PyModule_New::char* name::

PyNumber_Absolute:PyObject*::+1:
PyNumber_Absolute:PyObject*:o:0:

PyNumber_Add:PyObject*::+1:
PyNumber_Add:PyObject*:o1:0:
PyNumber_Add:PyObject*:o2:0:

PyNumber_And:PyObject*::+1:
PyNumber_And:PyObject*:o1:0:
PyNumber_And:PyObject*:o2:0:

PyNumber_Check:PyObject*:o:0:
PyNumber_Check:int:::

PyNumber_Coerce:int:::
PyNumber_Coerce:PyObject**:p1:+1:
PyNumber_Coerce:PyObject**:p2:+1:

PyNumber_Divide:PyObject*::+1:
PyNumber_Divide:PyObject*:o1:0:
PyNumber_Divide:PyObject*:o2:0:

PyNumber_Divmod:PyObject*::+1:
PyNumber_Divmod:PyObject*:o1:0:
PyNumber_Divmod:PyObject*:o2:0:

PyNumber_Float:PyObject*::+1:
PyNumber_Float:PyObject*:o:0:

532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576
PyNumber_InPlaceAdd:PyObject*::+1:
PyNumber_InPlaceAdd:PyObject*:v:0:
PyNumber_InPlaceAdd:PyObject*:w:0:

PyNumber_InPlaceAnd:PyObject*::+1:
PyNumber_InPlaceAnd:PyObject*:v:0:
PyNumber_InPlaceAnd:PyObject*:w:0:

PyNumber_InPlaceDivide:PyObject*::+1:
PyNumber_InPlaceDivide:PyObject*:v:0:
PyNumber_InPlaceDivide:PyObject*:w:0:

PyNumber_InPlaceLshift:PyObject*::+1:
PyNumber_InPlaceLshift:PyObject*:v:0:
PyNumber_InPlaceLshift:PyObject*:w:0:

PyNumber_InPlaceMultiply:PyObject*::+1:
PyNumber_InPlaceMultiply:PyObject*:v:0:
PyNumber_InPlaceMultiply:PyObject*:w:0:

PyNumber_InPlaceOr:PyObject*::+1:
PyNumber_InPlaceOr:PyObject*:v:0:
PyNumber_InPlaceOr:PyObject*:w:0:

PyNumber_InPlacePower:PyObject*::+1:
PyNumber_InPlacePower:PyObject*:v:0:
PyNumber_InPlacePower:PyObject*:w:0:
PyNumber_InPlacePower:PyObject*:z:0:

PyNumber_InPlaceRemainder:PyObject*::+1:
PyNumber_InPlaceRemainder:PyObject*:v:0:
PyNumber_InPlaceRemainder:PyObject*:w:0:

PyNumber_InPlaceRshift:PyObject*::+1:
PyNumber_InPlaceRshift:PyObject*:v:0:
PyNumber_InPlaceRshift:PyObject*:w:0:

PyNumber_InPlaceSubtract:PyObject*::+1:
PyNumber_InPlaceSubtract:PyObject*:v:0:
PyNumber_InPlaceSubtract:PyObject*:w:0:

PyNumber_InPlaceXor:PyObject*::+1:
PyNumber_InPlaceXor:PyObject*:v:0:
PyNumber_InPlaceXor:PyObject*:w:0:

577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627
PyNumber_Int:PyObject*::+1:
PyNumber_Int:PyObject*:o:0:

PyNumber_Invert:PyObject*::+1:
PyNumber_Invert:PyObject*:o:0:

PyNumber_Long:PyObject*::+1:
PyNumber_Long:PyObject*:o:0:

PyNumber_Lshift:PyObject*::+1:
PyNumber_Lshift:PyObject*:o1:0:
PyNumber_Lshift:PyObject*:o2:0:

PyNumber_Multiply:PyObject*::+1:
PyNumber_Multiply:PyObject*:o1:0:
PyNumber_Multiply:PyObject*:o2:0:

PyNumber_Negative:PyObject*::+1:
PyNumber_Negative:PyObject*:o:0:

PyNumber_Or:PyObject*::+1:
PyNumber_Or:PyObject*:o1:0:
PyNumber_Or:PyObject*:o2:0:

PyNumber_Positive:PyObject*::+1:
PyNumber_Positive:PyObject*:o:0:

PyNumber_Power:PyObject*::+1:
PyNumber_Power:PyObject*:o1:0:
PyNumber_Power:PyObject*:o2:0:
PyNumber_Power:PyObject*:o3:0:

PyNumber_Remainder:PyObject*::+1:
PyNumber_Remainder:PyObject*:o1:0:
PyNumber_Remainder:PyObject*:o2:0:

PyNumber_Rshift:PyObject*::+1:
PyNumber_Rshift:PyObject*:o1:0:
PyNumber_Rshift:PyObject*:o2:0:

PyNumber_Subtract:PyObject*::+1:
PyNumber_Subtract:PyObject*:o1:0:
PyNumber_Subtract:PyObject*:o2:0:

PyNumber_Xor:PyObject*::+1:
PyNumber_Xor:PyObject*:o1:0:
PyNumber_Xor:PyObject*:o2:0:

PyOS_GetLastModificationTime:long:::
PyOS_GetLastModificationTime:char*:filename::

628 629 630
PyObject_AsFileDescriptor:int::: 
PyObject_AsFileDescriptor:PyObject*:o:0:

631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692
PyObject_CallFunction:PyObject*::+1:
PyObject_CallFunction:PyObject*:callable_object:0:
PyObject_CallFunction:char*:format::
PyObject_CallFunction::...::

PyObject_CallMethod:PyObject*::+1:
PyObject_CallMethod:PyObject*:o:0:
PyObject_CallMethod:char*:m::
PyObject_CallMethod:char*:format::
PyObject_CallMethod::...::

PyObject_CallObject:PyObject*::+1:
PyObject_CallObject:PyObject*:callable_object:0:
PyObject_CallObject:PyObject*:args:0:

PyObject_Cmp:int:::
PyObject_Cmp:PyObject*:o1:0:
PyObject_Cmp:PyObject*:o2:0:
PyObject_Cmp:int*:result::

PyObject_Compare:int:::
PyObject_Compare:PyObject*:o1:0:
PyObject_Compare:PyObject*:o2:0:

PyObject_DelAttr:int:::
PyObject_DelAttr:PyObject*:o:0:
PyObject_DelAttr:PyObject*:attr_name:0:

PyObject_DelAttrString:int:::
PyObject_DelAttrString:PyObject*:o:0:
PyObject_DelAttrString:char*:attr_name::

PyObject_DelItem:int:::
PyObject_DelItem:PyObject*:o:0:
PyObject_DelItem:PyObject*:key:0:

PyObject_GetAttr:PyObject*::+1:
PyObject_GetAttr:PyObject*:o:0:
PyObject_GetAttr:PyObject*:attr_name:0:

PyObject_GetAttrString:PyObject*::+1:
PyObject_GetAttrString:PyObject*:o:0:
PyObject_GetAttrString:char*:attr_name::

PyObject_GetItem:PyObject*::+1:
PyObject_GetItem:PyObject*:o:0:
PyObject_GetItem:PyObject*:key:0:

PyObject_HasAttr:int:::
PyObject_HasAttr:PyObject*:o:0:
PyObject_HasAttr:PyObject*:attr_name:0:

PyObject_HasAttrString:int:::
PyObject_HasAttrString:PyObject*:o:0:
PyObject_HasAttrString:char*:attr_name:0:

PyObject_Hash:int:::
PyObject_Hash:PyObject*:o:0:

PyObject_IsTrue:int:::
PyObject_IsTrue:PyObject*:o:0:

693 694 695 696 697 698
PyObject_Init:PyObject*::0:
PyObject_Init:PyObject*:op:0:

PyObject_InitVar:PyVarObject*::0:
PyObject_InitVar:PyVarObject*:op:0:

699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730
PyObject_Length:int:::
PyObject_Length:PyObject*:o:0:

PyObject_Print:int:::
PyObject_Print:PyObject*:o:0:
PyObject_Print:FILE*:fp::
PyObject_Print:int:flags::

PyObject_Repr:PyObject*::+1:
PyObject_Repr:PyObject*:o:0:

PyObject_SetAttr:int:::
PyObject_SetAttr:PyObject*:o:0:
PyObject_SetAttr:PyObject*:attr_name:0:
PyObject_SetAttr:PyObject*:v:+1:

PyObject_SetAttrString:int:::
PyObject_SetAttrString:PyObject*:o:0:
PyObject_SetAttrString:char*:attr_name::
PyObject_SetAttrString:PyObject*:v:+1:

PyObject_SetItem:int:::
PyObject_SetItem:PyObject*:o:0:
PyObject_SetItem:PyObject*:key:0:
PyObject_SetItem:PyObject*:v:+1:

PyObject_Str:PyObject*::+1:
PyObject_Str:PyObject*:o:0:

PyObject_Type:PyObject*::+1:
PyObject_Type:PyObject*:o:0:

731
PyParser_SimpleParseFile:struct _node*:::
732 733 734 735
PyParser_SimpleParseFile:FILE*:fp::
PyParser_SimpleParseFile:char*:filename::
PyParser_SimpleParseFile:int:start::

736
PyParser_SimpleParseString:struct _node*:::
737 738 739 740 741 742 743
PyParser_SimpleParseString:char*:str::
PyParser_SimpleParseString:int:start::

PyRun_AnyFile:int:::
PyRun_AnyFile:FILE*:fp::
PyRun_AnyFile:char*:filename::

744
PyRun_File:PyObject*::+1:??? -- same as eval_code2()
745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765
PyRun_File:FILE*:fp::
PyRun_File:char*:filename::
PyRun_File:int:start::
PyRun_File:PyObject*:globals:0:
PyRun_File:PyObject*:locals:0:

PyRun_InteractiveLoop:int:::
PyRun_InteractiveLoop:FILE*:fp::
PyRun_InteractiveLoop:char*:filename::

PyRun_InteractiveOne:int:::
PyRun_InteractiveOne:FILE*:fp::
PyRun_InteractiveOne:char*:filename::

PyRun_SimpleFile:int:::
PyRun_SimpleFile:FILE*:fp::
PyRun_SimpleFile:char*:filename::

PyRun_SimpleString:int:::
PyRun_SimpleString:char*:command::

766
PyRun_String:PyObject*::+1:??? -- same as eval_code2()
767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791
PyRun_String:char*:str::
PyRun_String:int:start::
PyRun_String:PyObject*:globals:0:
PyRun_String:PyObject*:locals:0:

PySequence_Check:int:::
PySequence_Check:PyObject*:o:0:

PySequence_Concat:PyObject*::+1:
PySequence_Concat:PyObject*:o1:0:
PySequence_Concat:PyObject*:o2:0:

PySequence_Count:int:::
PySequence_Count:PyObject*:o:0:
PySequence_Count:PyObject*:value:0:

PySequence_DelItem:int:::
PySequence_DelItem:PyObject*:o:0:
PySequence_DelItem:int:i::

PySequence_DelSlice:int:::
PySequence_DelSlice:PyObject*:o:0:
PySequence_DelSlice:int:i1::
PySequence_DelSlice:int:i2::

792 793 794 795 796 797 798 799
PySequence_Fast:PyObject*::+1:
PySequence_Fast:PyObject*:v:0:
PySequence_Fast:const char*:m::

PySequence_Fast_GET_ITEM:PyObject*::0:
PySequence_Fast_GET_ITEM:PyObject*:o:0:
PySequence_Fast_GET_ITEM:int:i::

800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816
PySequence_GetItem:PyObject*::+1:
PySequence_GetItem:PyObject*:o:0:
PySequence_GetItem:int:i::

PySequence_GetSlice:PyObject*::+1:
PySequence_GetSlice:PyObject*:o:0:
PySequence_GetSlice:int:i1::
PySequence_GetSlice:int:i2::

PySequence_In:int:::
PySequence_In:PyObject*:o:0:
PySequence_In:PyObject*:value:0:

PySequence_Index:int:::
PySequence_Index:PyObject*:o:0:
PySequence_Index:PyObject*:value:0:

817 818 819 820 821 822 823 824
PySequence_InPlaceConcat:PyObject*::+1:
PySequence_InPlaceConcat:PyObject*:s:0:
PySequence_InPlaceConcat:PyObject*:o:0:

PySequence_InPlaceRepeat:PyObject*::+1:
PySequence_InPlaceRepeat:PyObject*:s:0:
PySequence_InPlaceRepeat:PyObject*:o:0:

825 826 827 828 829 830 831 832 833 834 835 836 837 838 839
PySequence_Repeat:PyObject*::+1:
PySequence_Repeat:PyObject*:o:0:
PySequence_Repeat:int:count::

PySequence_SetItem:int:::
PySequence_SetItem:PyObject*:o:0:
PySequence_SetItem:int:i::
PySequence_SetItem:PyObject*:v:+1:

PySequence_SetSlice:int:::
PySequence_SetSlice:PyObject*:o:0:
PySequence_SetSlice:int:i1::
PySequence_SetSlice:int:i2::
PySequence_SetSlice:PyObject*:v:+1:

840 841 842
PySequence_List:PyObject*::+1:
PySequence_List:PyObject*:o:0:

843 844 845 846 847 848 849 850 851
PySequence_Tuple:PyObject*::+1:
PySequence_Tuple:PyObject*:o:0:

PyString_AS_STRING:char*:::
PyString_AS_STRING:PyObject*:string:0:

PyString_AsString:char*:::
PyString_AsString:PyObject*:string:0:

852 853 854 855 856
PyString_AsStringAndSize:int:::
PyString_AsStringAndSize:PyObject*:obj:0:
PyString_AsStringAndSize:char**:buffer::
PyString_AsStringAndSize:int*:length::

857 858 859 860
PyString_Check:int:::
PyString_Check:PyObject*:o:0:

PyString_Concat:void:::
861
PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
862 863 864
PyString_Concat:PyObject*:newpart:0:

PyString_ConcatAndDel:void:::
865
PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890
PyString_ConcatAndDel:PyObject*:newpart:-1:

PyString_Format:PyObject*::+1:
PyString_Format:PyObject*:format:0:
PyString_Format:PyObject*:args:0:

PyString_FromString:PyObject*::+1:
PyString_FromString:const char*:v::

PyString_FromStringAndSize:PyObject*::+1:
PyString_FromStringAndSize:const char*:v::
PyString_FromStringAndSize:int:len::

PyString_GET_SIZE:int:::
PyString_GET_SIZE:PyObject*:string:0:

PyString_InternFromString:PyObject*::+1:
PyString_InternFromString:const char*:v::

PyString_InternInPlace:void:::
PyString_InternInPlace:PyObject**:string:+1:???

PyString_Size:int:::
PyString_Size:PyObject*:string:0:

891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907
PyString_Decode:PyObject*::+1:
PyString_Decode:const char*:s::
PyString_Decode:int:size::
PyString_Decode:const char*:encoding::
PyString_Decode:const char*:errors::

PyString_Encode:PyObject*::+1:
PyString_Encode:const char*:s::
PyString_Encode:int:size::
PyString_Encode:const char*:encoding::
PyString_Encode:const char*:errors::

PyString_AsEncodedString:PyObject*::+1:
PyString_AsEncodedString:PyObject*:str::
PyString_AsEncodedString:const char*:encoding::
PyString_AsEncodedString:const char*:errors::

908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957
PySys_SetArgv:int:::
PySys_SetArgv:int:argc::
PySys_SetArgv:char**:argv::

PyThreadState_Clear:void:::
PyThreadState_Clear:PyThreadState*:tstate::

PyThreadState_Delete:void:::
PyThreadState_Delete:PyThreadState*:tstate::

PyThreadState_Get:PyThreadState*:::

PyThreadState_New:PyThreadState*:::
PyThreadState_New:PyInterpreterState*:interp::

PyThreadState_Swap:PyThreadState*:::
PyThreadState_Swap:PyThreadState*:tstate::

PyTuple_Check:int:::
PyTuple_Check:PyObject*:p:0:

PyTuple_GET_ITEM:PyObject*::0:
PyTuple_GET_ITEM:PyTupleObject*:p:0:
PyTuple_GET_ITEM:int:pos::

PyTuple_GetItem:PyObject*::0:
PyTuple_GetItem:PyTupleObject*:p:0:
PyTuple_GetItem:int:pos::

PyTuple_GetSlice:PyObject*::+1:
PyTuple_GetSlice:PyTupleObject*:p:0:
PyTuple_GetSlice:int:low::
PyTuple_GetSlice:int:high::

PyTuple_New:PyObject*::+1:
PyTuple_New:int:len::

PyTuple_SET_ITEM:void:::
PyTuple_SET_ITEM:PyTupleObject*:p:0:
PyTuple_SET_ITEM:int:pos::
PyTuple_SET_ITEM:PyObject*:o:0:

PyTuple_SetItem:int:::
PyTuple_SetItem:PyTupleObject*:p:0:
PyTuple_SetItem:int:pos::
PyTuple_SetItem:PyObject*:o:0:

PyTuple_Size:int:::
PyTuple_Size:PyTupleObject*:p:0:

958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015
PyUnicode_Check:int:::
PyUnicode_Check:PyObject*:o:0:

PyUnicode_GET_SIZE:int:::
PyUnicode_GET_SIZE:PyObject*:o:0:

PyUnicode_GET_DATA_SIZE:int:::
PyUnicode_GET_DATA_SIZE:PyObject*:o:0:

PyUnicode_AS_UNICODE:Py_UNICODE*:::
PyUnicode_AS_UNICODE:PyObject*:o:0:

PyUnicode_AS_DATA:const char*:::
PyUnicode_AS_DATA:PyObject*:o:0:

Py_UNICODE_ISSPACE:int:::
Py_UNICODE_ISSPACE:Py_UNICODE:ch::

Py_UNICODE_ISLOWER:int:::
Py_UNICODE_ISLOWER:Py_UNICODE:ch::

Py_UNICODE_ISUPPER:int:::
Py_UNICODE_ISUPPER:Py_UNICODE:ch::

Py_UNICODE_ISTITLE:int:::
Py_UNICODE_ISTITLE:Py_UNICODE:ch::

Py_UNICODE_ISLINEBREAK:int:::
Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::

Py_UNICODE_ISDECIMAL:int:::
Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::

Py_UNICODE_ISDIGIT:int:::
Py_UNICODE_ISDIGIT:Py_UNICODE:ch::

Py_UNICODE_ISNUMERIC:int:::
Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::

Py_UNICODE_TOLOWER:Py_UNICODE:::
Py_UNICODE_TOLOWER:Py_UNICODE:ch::

Py_UNICODE_TOUPPER:Py_UNICODE:::
Py_UNICODE_TOUPPER:Py_UNICODE:ch::

Py_UNICODE_TOTITLE:Py_UNICODE:::
Py_UNICODE_TOTITLE:Py_UNICODE:ch::

Py_UNICODE_TODECIMAL:int:::
Py_UNICODE_TODECIMAL:Py_UNICODE:ch::

Py_UNICODE_TODIGIT:int:::
Py_UNICODE_TODIGIT:Py_UNICODE:ch::

Py_UNICODE_TONUMERIC:double:::
Py_UNICODE_TONUMERIC:Py_UNICODE:ch::

PyUnicode_FromUnicode:PyObject*::+1:
1016
PyUnicode_FromUnicode:const Py_UNICODE*:u::
1017 1018 1019 1020 1021 1022 1023 1024 1025
PyUnicode_FromUnicode:int:size::

PyUnicode_AsUnicode:Py_UNICODE*:::
PyUnicode_AsUnicode:PyObject :*unicode:0:

PyUnicode_GetSize:int:::
PyUnicode_GetSize:PyObject :*unicode:0:

PyUnicode_FromObject:PyObject*::+1:
1026 1027 1028 1029 1030 1031
PyUnicode_FromObject:PyObject*:*obj:0:

PyUnicode_FromEncodedObject:PyObject*::+1:
PyUnicode_FromEncodedObject:PyObject*:*obj:0:
PyUnicode_FromEncodedObject:const char*:encoding::
PyUnicode_FromEncodedObject:const char*:errors::
1032 1033

PyUnicode_FromWideChar:PyObject*::+1:
1034
PyUnicode_FromWideChar:const wchar_t*:w::
1035 1036 1037
PyUnicode_FromWideChar:int:size::

PyUnicode_AsWideChar:int:::
1038 1039
PyUnicode_AsWideChar:PyObject*:*unicode:0:
PyUnicode_AsWideChar:wchar_t*:w::
1040 1041 1042
PyUnicode_AsWideChar:int:size::

PyUnicode_Decode:PyObject*::+1:
1043
PyUnicode_Decode:const char*:s::
1044
PyUnicode_Decode:int:size::
1045 1046
PyUnicode_Decode:const char*:encoding::
PyUnicode_Decode:const char*:errors::
1047 1048

PyUnicode_Encode:PyObject*::+1:
1049
PyUnicode_Encode:const Py_UNICODE*:s::
1050
PyUnicode_Encode:int:size::
1051 1052
PyUnicode_Encode:const char*:encoding::
PyUnicode_Encode:const char*:errors::
1053 1054

PyUnicode_AsEncodedString:PyObject*::+1:
1055 1056 1057
PyUnicode_AsEncodedString:PyObject*:unicode::
PyUnicode_AsEncodedString:const char*:encoding::
PyUnicode_AsEncodedString:const char*:errors::
1058 1059

PyUnicode_DecodeUTF8:PyObject*::+1:
1060
PyUnicode_DecodeUTF8:const char*:s::
1061
PyUnicode_DecodeUTF8:int:size::
1062
PyUnicode_DecodeUTF8:const char*:errors::
1063 1064

PyUnicode_EncodeUTF8:PyObject*::+1:
1065
PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
1066
PyUnicode_EncodeUTF8:int:size::
1067
PyUnicode_EncodeUTF8:const char*:errors::
1068 1069

PyUnicode_AsUTF8String:PyObject*::+1:
1070
PyUnicode_AsUTF8String:PyObject*:unicode::
1071 1072

PyUnicode_DecodeUTF16:PyObject*::+1:
1073
PyUnicode_DecodeUTF16:const char*:s::
1074
PyUnicode_DecodeUTF16:int:size::
1075
PyUnicode_DecodeUTF16:const char*:errors::
1076 1077 1078
PyUnicode_DecodeUTF16:int*:byteorder::

PyUnicode_EncodeUTF16:PyObject*::+1:
1079
PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
1080
PyUnicode_EncodeUTF16:int:size::
1081
PyUnicode_EncodeUTF16:const char*:errors::
1082 1083 1084
PyUnicode_EncodeUTF16:int:byteorder::

PyUnicode_AsUTF16String:PyObject*::+1:
1085
PyUnicode_AsUTF16String:PyObject*:unicode::
1086 1087

PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
1088
PyUnicode_DecodeUnicodeEscape:const char*:s::
1089
PyUnicode_DecodeUnicodeEscape:int:size::
1090
PyUnicode_DecodeUnicodeEscape:const char*:errors::
1091 1092

PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
1093
PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
1094
PyUnicode_EncodeUnicodeEscape:int:size::
1095
PyUnicode_EncodeUnicodeEscape:const char*:errors::
1096 1097

PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
1098
PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
1099 1100

PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
1101
PyUnicode_DecodeRawUnicodeEscape:const char*:s::
1102
PyUnicode_DecodeRawUnicodeEscape:int:size::
1103
PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
1104 1105

PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
1106
PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
1107
PyUnicode_EncodeRawUnicodeEscape:int:size::
1108
PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
1109 1110

PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
1111
PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
1112 1113

PyUnicode_DecodeLatin1:PyObject*::+1:
1114
PyUnicode_DecodeLatin1:const char*:s::
1115
PyUnicode_DecodeLatin1:int:size::
1116
PyUnicode_DecodeLatin1:const char*:errors::
1117 1118

PyUnicode_EncodeLatin1:PyObject*::+1:
1119
PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
1120
PyUnicode_EncodeLatin1:int:size::
1121
PyUnicode_EncodeLatin1:const char*:errors::
1122 1123

PyUnicode_AsLatin1String:PyObject*::+1:
1124
PyUnicode_AsLatin1String:PyObject*:unicode::
1125 1126

PyUnicode_DecodeASCII:PyObject*::+1:
1127
PyUnicode_DecodeASCII:const char*:s::
1128
PyUnicode_DecodeASCII:int:size::
1129
PyUnicode_DecodeASCII:const char*:errors::
1130 1131

PyUnicode_EncodeASCII:PyObject*::+1:
1132
PyUnicode_EncodeASCII:const Py_UNICODE*:s::
1133
PyUnicode_EncodeASCII:int:size::
1134
PyUnicode_EncodeASCII:const char*:errors::
1135 1136

PyUnicode_AsASCIIString:PyObject*::+1:
1137
PyUnicode_AsASCIIString:PyObject*:unicode::
1138 1139

PyUnicode_DecodeCharmap:PyObject*::+1:
1140
PyUnicode_DecodeCharmap:const char*:s::
1141 1142
PyUnicode_DecodeCharmap:int:size::
PyUnicode_DecodeCharmap:PyObject*:mapping:0:
1143
PyUnicode_DecodeCharmap:const char*:errors::
1144 1145

PyUnicode_EncodeCharmap:PyObject*::+1:
1146
PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
1147 1148
PyUnicode_EncodeCharmap:int:size::
PyUnicode_EncodeCharmap:PyObject*:mapping:0:
1149
PyUnicode_EncodeCharmap:const char*:errors::
1150 1151 1152 1153 1154 1155

PyUnicode_AsCharmapString:PyObject*::+1:
PyUnicode_AsCharmapString:PyObject*:unicode:0:
PyUnicode_AsCharmapString:PyObject*:mapping:0:

PyUnicode_TranslateCharmap:PyObject*::+1:
1156
PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
1157 1158
PyUnicode_TranslateCharmap:int:size::
PyUnicode_TranslateCharmap:PyObject*:table:0:
1159
PyUnicode_TranslateCharmap:const char*:errors::
1160 1161

PyUnicode_DecodeMBCS:PyObject*::+1:
1162
PyUnicode_DecodeMBCS:const char*:s::
1163
PyUnicode_DecodeMBCS:int:size::
1164
PyUnicode_DecodeMBCS:const char*:errors::
1165 1166

PyUnicode_EncodeMBCS:PyObject*::+1:
1167
PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
1168
PyUnicode_EncodeMBCS:int:size::
1169
PyUnicode_EncodeMBCS:const char*:errors::
1170 1171

PyUnicode_AsMBCSString:PyObject*::+1:
1172
PyUnicode_AsMBCSString:PyObject*:unicode::
1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189

PyUnicode_Concat:PyObject*::+1:
PyUnicode_Concat:PyObject*:left:0:
PyUnicode_Concat:PyObject*:right:0:

PyUnicode_Split:PyObject*::+1:
PyUnicode_Split:PyObject*:left:0:
PyUnicode_Split:PyObject*:right:0:
PyUnicode_Split:int:maxsplit::

PyUnicode_Splitlines:PyObject*::+1:
PyUnicode_Splitlines:PyObject*:s:0:
PyUnicode_Splitlines:int:maxsplit::

PyUnicode_Translate:PyObject*::+1:
PyUnicode_Translate:PyObject*:str:0:
PyUnicode_Translate:PyObject*:table:0:
1190
PyUnicode_Translate:const char*:errors::
1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233

PyUnicode_Join:PyObject*::+1:
PyUnicode_Join:PyObject*:separator:0:
PyUnicode_Join:PyObject*:seq:0:

PyUnicode_Tailmatch:PyObject*::+1:
PyUnicode_Tailmatch:PyObject*:str:0:
PyUnicode_Tailmatch:PyObject*:substr:0:
PyUnicode_Tailmatch:int:start::
PyUnicode_Tailmatch:int:end::
PyUnicode_Tailmatch:int:direction::

PyUnicode_Find:PyObject*::+1:
PyUnicode_Find:PyObject*:str:0:
PyUnicode_Find:PyObject*:substr:0:
PyUnicode_Find:int:start::
PyUnicode_Find:int:end::
PyUnicode_Find:int:direction::

PyUnicode_Count:PyObject*::+1:
PyUnicode_Count:PyObject*:str:0:
PyUnicode_Count:PyObject*:substr:0:
PyUnicode_Count:int:start::
PyUnicode_Count:int:end::

PyUnicode_Replace:PyObject*::+1:
PyUnicode_Replace:PyObject*:str:0:
PyUnicode_Replace:PyObject*:substr:0:
PyUnicode_Replace:PyObject*:replstr:0:
PyUnicode_Replace:int:maxcount::

PyUnicode_Compare:int:::
PyUnicode_Compare:PyObject*:left:0:
PyUnicode_Compare:PyObject*:right:0:

PyUnicode_Format:PyObject*::+1:
PyUnicode_Format:PyObject*:format:0:
PyUnicode_Format:PyObject*:args:0:

PyUnicode_Contains:int:::
PyUnicode_Contains:PyObject*:container:0:
PyUnicode_Contains:PyObject*:element:0:

1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259
Py_AtExit:int:::
Py_AtExit:void (*)():func::

Py_CompileString:PyObject*::+1:
Py_CompileString:char*:str::
Py_CompileString:char*:filename::
Py_CompileString:int:start::

Py_DECREF:void:::
Py_DECREF:PyObject*:o:-1:

Py_EndInterpreter:void:::
Py_EndInterpreter:PyThreadState*:tstate::

Py_Exit:void:::
Py_Exit:int:status::

Py_FatalError:void:::
Py_FatalError:char*:message::

Py_FdIsInteractive:int:::
Py_FdIsInteractive:FILE*:fp::
Py_FdIsInteractive:char*:filename::

Py_Finalize:void:::

1260 1261 1262 1263 1264
Py_FindMethod:PyObject*::+1:
Py_FindMethod:PyMethodDef[]:methods::
Py_FindMethod:PyObject*:self:+1:
Py_FindMethod:char*:name::

1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314
Py_GetBuildInfoconst:char*:::

Py_GetCompilerconst:char*:::

Py_GetCopyrightconst:char*:::

Py_GetExecPrefix:char*:::

Py_GetPath:char*:::

Py_GetPlatformconst:char*:::

Py_GetPrefix:char*:::

Py_GetProgramFullPath:char*:::

Py_GetProgramName:char*:::

Py_GetVersionconst:char*:::

Py_INCREF:void:::
Py_INCREF:PyObject*:o:+1:

Py_Initialize:void:::

Py_IsInitialized:int:::

Py_NewInterpreter:PyThreadState*:::

Py_SetProgramName:void:::
Py_SetProgramName:char*:name::

Py_XDECREF:void:::
Py_XDECREF:PyObject*:o:-1:if o is not NULL

Py_XINCREF:void:::
Py_XINCREF:PyObject*:o:+1:if o is not NULL

_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
_PyImport_FindExtension:char*:::
_PyImport_FindExtension:char*:::

_PyImport_Fini:void:::

_PyImport_FixupExtension:PyObject*:::???
_PyImport_FixupExtension:char*:::
_PyImport_FixupExtension:char*:::

_PyImport_Init:void:::

1315 1316 1317
_PyObject_Del:void:::
_PyObject_Del:PyObject*:op:0:

1318 1319 1320
_PyObject_New:PyObject*::+1:
_PyObject_New:PyTypeObject*:type:0:

1321
_PyObject_NewVar:PyVarObject*::+1:
1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355
_PyObject_NewVar:PyTypeObject*:type:0:
_PyObject_NewVar:int:size::

_PyString_Resize:int:::
_PyString_Resize:PyObject**:string:+1:
_PyString_Resize:int:newsize::

_PyTuple_Resize:int:::
_PyTuple_Resize:PyTupleObject**:p:+1:
_PyTuple_Resize:int:new::
_PyTuple_Resize:int:last_is_sticky::

_Py_c_diff:Py_complex:::
_Py_c_diff:Py_complex:left::
_Py_c_diff:Py_complex:right::

_Py_c_neg:Py_complex:::
_Py_c_neg:Py_complex:complex::

_Py_c_pow:Py_complex:::
_Py_c_pow:Py_complex:num::
_Py_c_pow:Py_complex:exp::

_Py_c_prod:Py_complex:::
_Py_c_prod:Py_complex:left::
_Py_c_prod:Py_complex:right::

_Py_c_quot:Py_complex:::
_Py_c_quot:Py_complex:dividend::
_Py_c_quot:Py_complex:divisor::

_Py_c_sum:Py_complex:::
_Py_c_sum:Py_complex:left::
_Py_c_sum:Py_complex:right::