You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1861 lines
47 KiB

  1. # Created by Skip Montanaro <skip@mojam.com>.
  2. # Format:
  3. # function ':' type ':' [param name] ':' [refcount effect] ':' [comment]
  4. # If the param name slot is empty, that line corresponds to the function's
  5. # return value, otherwise it's the type of the named parameter.
  6. # The first line of a function block gives type/refcount information for the
  7. # function's return value. Successive lines with the same function name
  8. # correspond to the function's parameter list and appear in the order the
  9. # parameters appear in the function's prototype.
  10. # For readability, each function's lines are surrounded by a blank line.
  11. # The blocks are sorted alphabetically by function name.
  12. # Refcount behavior is given for all PyObject* types: 0 (no change), +1
  13. # (increment) and -1 (decrement). A blank refcount field indicates the
  14. # parameter or function value is not a PyObject* and is therefore not
  15. # subject to reference counting. A special case for the value "null"
  16. # (without quotes) is used for functions which return a PyObject* type but
  17. # always return NULL. This is used by some of the PyErr_*() functions, in
  18. # particular.
  19. # XXX NOTE: the 0/+1/-1 refcount information for arguments is
  20. # confusing! Much more useful would be to indicate whether the
  21. # function "steals" a reference to the argument or not. Take for
  22. # example PyList_SetItem(list, i, item). This lists as a 0 change for
  23. # both the list and the item arguments. However, in fact it steals a
  24. # reference to the item argument!
  25. # The parameter names are as they appear in the API manual, not the source
  26. # code.
  27. PyBool_FromLong:PyObject*::+1:
  28. PyBool_FromLong:long:v:0:
  29. PyBuffer_FromObject:PyObject*::+1:
  30. PyBuffer_FromObject:PyObject*:base:+1:
  31. PyBuffer_FromObject:int:offset::
  32. PyBuffer_FromObject:int:size::
  33. PyBuffer_FromReadWriteObject:PyObject*::+1:
  34. PyBuffer_FromReadWriteObject:PyObject*:base:+1:
  35. PyBuffer_FromReadWriteObject:int:offset::
  36. PyBuffer_FromReadWriteObject:int:size::
  37. PyBuffer_FromMemory:PyObject*::+1:
  38. PyBuffer_FromMemory:void*:ptr::
  39. PyBuffer_FromMemory:int:size::
  40. PyBuffer_FromReadWriteMemory:PyObject*::+1:
  41. PyBuffer_FromReadWriteMemory:void*:ptr::
  42. PyBuffer_FromReadWriteMemory:int:size::
  43. PyBuffer_New:PyObject*::+1:
  44. PyBuffer_New:int:size::
  45. PyCapsule_GetContext:void *:::
  46. PyCapsule_GetContext:PyObject*:self:0:
  47. PyCapsule_GetDestructor:void (*)(PyObject *):::
  48. PyCapsule_GetDestructor:PyObject*:self:0:
  49. PyCapsule_GetName:const char *:::
  50. PyCapsule_GetName:PyObject*:self:0:
  51. PyCapsule_GetPointer:void*:::
  52. PyCapsule_GetPointer:PyObject*:self:0:
  53. PyCapsule_GetPointer:const char *:name::
  54. PyCapsule_Import:void *:::
  55. PyCapsule_Import:const char *:name::
  56. PyCapsule_Import:int:no_block::
  57. PyCapsule_New:PyObject*::+1:
  58. PyCapsule_New:void*:pointer::
  59. PyCapsule_New:const char *:name::
  60. PyCapsule_New::void (* destructor)(PyObject* )::
  61. PyCapsule_SetContext:int:::
  62. PyCapsule_SetContext:PyObject*:self:0:
  63. PyCapsule_SetContext:void *:context::
  64. PyCapsule_SetDestructor:int:::
  65. PyCapsule_SetDestructor:PyObject*:self:0:
  66. PyCapsule_SetDestructor:void (*)(PyObject *):destructor::
  67. PyCapsule_SetName:int:::
  68. PyCapsule_SetName:PyObject*:self:0:
  69. PyCapsule_SetName:const char *:name::
  70. PyCapsule_SetPointer:int:::
  71. PyCapsule_SetPointer:PyObject*:self:0:
  72. PyCapsule_SetPointer:void*:pointer::
  73. PyCObject_AsVoidPtr:void*:::
  74. PyCObject_AsVoidPtr:PyObject*:self:0:
  75. PyCObject_FromVoidPtr:PyObject*::+1:
  76. PyCObject_FromVoidPtr:void*:cobj::
  77. PyCObject_FromVoidPtr::void (* destr)(void* )::
  78. PyCObject_FromVoidPtrAndDesc:PyObject*::+1:
  79. PyCObject_FromVoidPtrAndDesc:void*:cobj::
  80. PyCObject_FromVoidPtrAndDesc:void*:desc::
  81. PyCObject_FromVoidPtrAndDesc:void(*)(void*,void*):destr::
  82. PyCObject_GetDesc:void*:::
  83. PyCObject_GetDesc:PyObject*:self:0:
  84. PyCell_New:PyObject*::+1:
  85. PyCell_New:PyObject*:ob:0:
  86. PyCell_GET:PyObject*::0:
  87. PyCell_GET:PyObject*:ob:0:
  88. PyCell_Get:PyObject*::+1:
  89. PyCell_Get:PyObject*:cell:0:
  90. PyCell_SET:void:::
  91. PyCell_SET:PyObject*:cell:0:
  92. PyCell_SET:PyObject*:value:0:
  93. PyCell_Set:int:::
  94. PyCell_Set:PyObject*:cell:0:
  95. PyCell_Set:PyObject*:value:0:
  96. PyCallIter_New:PyObject*::+1:
  97. PyCallIter_New:PyObject*:callable::
  98. PyCallIter_New:PyObject*:sentinel::
  99. PyCallable_Check:int:::
  100. PyCallable_Check:PyObject*:o:0:
  101. PyComplex_AsCComplex:Py_complex:::
  102. PyComplex_AsCComplex:PyObject*:op:0:
  103. PyComplex_Check:int:::
  104. PyComplex_Check:PyObject*:p:0:
  105. PyComplex_FromCComplex:PyObject*::+1:
  106. PyComplex_FromCComplex::Py_complex v::
  107. PyComplex_FromDoubles:PyObject*::+1:
  108. PyComplex_FromDoubles::double real::
  109. PyComplex_FromDoubles::double imag::
  110. PyComplex_ImagAsDouble:double:::
  111. PyComplex_ImagAsDouble:PyObject*:op:0:
  112. PyComplex_RealAsDouble:double:::
  113. PyComplex_RealAsDouble:PyObject*:op:0:
  114. PyDate_FromDate:PyObject*::+1:
  115. PyDate_FromDate:int:year::
  116. PyDate_FromDate:int:month::
  117. PyDate_FromDate:int:day::
  118. PyDate_FromTimestamp:PyObject*::+1:
  119. PyDate_FromTimestamp:PyObject*:args:0:
  120. PyDateTime_FromDateAndTime:PyObject*::+1:
  121. PyDateTime_FromDateAndTime:int:year::
  122. PyDateTime_FromDateAndTime:int:month::
  123. PyDateTime_FromDateAndTime:int:day::
  124. PyDateTime_FromDateAndTime:int:hour::
  125. PyDateTime_FromDateAndTime:int:minute::
  126. PyDateTime_FromDateAndTime:int:second::
  127. PyDateTime_FromDateAndTime:int:usecond::
  128. PyDateTime_FromTimestamp:PyObject*::+1:
  129. PyDateTime_FromTimestamp:PyObject*:args:0:
  130. PyDelta_FromDSU:PyObject*::+1:
  131. PyDelta_FromDSU:int:days::
  132. PyDelta_FromDSU:int:seconds::
  133. PyDelta_FromDSU:int:useconds::
  134. PyDescr_NewClassMethod:PyObject*::+1:
  135. PyDescr_NewClassMethod:PyTypeObject*:type::
  136. PyDescr_NewClassMethod:PyMethodDef*:method::
  137. PyDescr_NewGetSet:PyObject*::+1:
  138. PyDescr_NewGetSet:PyTypeObject*:type::
  139. PyDescr_NewGetSet:PyGetSetDef*:getset::
  140. PyDescr_NewMember:PyObject*::+1:
  141. PyDescr_NewMember:PyTypeObject*:type::
  142. PyDescr_NewMember:PyMemberDef*:member::
  143. PyDescr_NewMethod:PyObject*::+1:
  144. PyDescr_NewMethod:PyTypeObject*:type::
  145. PyDescr_NewMethod:PyMethodDef*:meth::
  146. PyDescr_NewWrapper:PyObject*::+1:
  147. PyDescr_NewWrapper:PyTypeObject*:type::
  148. PyDescr_NewWrapper:struct wrapperbase*:base::
  149. PyDescr_NewWrapper:void*:wrapped::
  150. PyDict_Check:int:::
  151. PyDict_Check:PyObject*:p:0:
  152. PyDict_Clear:void:::
  153. PyDict_Clear:PyObject*:p:0:
  154. PyDict_DelItem:int:::
  155. PyDict_DelItem:PyObject*:p:0:
  156. PyDict_DelItem:PyObject*:key:0:
  157. PyDict_DelItemString:int:::
  158. PyDict_DelItemString:PyObject*:p:0:
  159. PyDict_DelItemString:char*:key::
  160. PyDict_GetItem:PyObject*::0:0
  161. PyDict_GetItem:PyObject*:p:0:
  162. PyDict_GetItem:PyObject*:key:0:
  163. PyDict_GetItemString:PyObject*::0:
  164. PyDict_GetItemString:PyObject*:p:0:
  165. PyDict_GetItemString:char*:key::
  166. PyDict_Items:PyObject*::+1:
  167. PyDict_Items:PyObject*:p:0:
  168. PyDict_Keys:PyObject*::+1:
  169. PyDict_Keys:PyObject*:p:0:
  170. PyDict_New:PyObject*::+1:
  171. PyDict_Copy:PyObject*::+1:
  172. PyDict_Copy:PyObject*:p:0:
  173. PyDict_Next:int:::
  174. PyDict_Next:PyObject*:p:0:
  175. PyDict_Next:int:ppos::
  176. PyDict_Next:PyObject**:pkey:0:
  177. PyDict_Next:PyObject**:pvalue:0:
  178. PyDict_SetItem:int:::
  179. PyDict_SetItem:PyObject*:p:0:
  180. PyDict_SetItem:PyObject*:key:+1:
  181. PyDict_SetItem:PyObject*:val:+1:
  182. PyDict_SetItemString:int:::
  183. PyDict_SetItemString:PyObject*:p:0:
  184. PyDict_SetItemString:char*:key::
  185. PyDict_SetItemString:PyObject*:val:+1:
  186. PyDict_Size:int:::
  187. PyDict_Size:PyObject*:p::
  188. PyDict_Values:PyObject*::+1:
  189. PyDict_Values:PyObject*:p:0:
  190. PyDictProxy_New:PyObject*::+1:
  191. PyDictProxy_New:PyObject*:dict:0:
  192. PyErr_BadArgument:int:::
  193. PyErr_BadInternalCall:void:::
  194. PyErr_CheckSignals:int:::
  195. PyErr_Clear:void:::
  196. PyErr_ExceptionMatches:int:::
  197. PyErr_ExceptionMatches:PyObject*:exc:0:
  198. PyErr_Fetch:void:::
  199. PyErr_Fetch:PyObject**:ptype:0:
  200. PyErr_Fetch:PyObject**:pvalue:0:
  201. PyErr_Fetch:PyObject**:ptraceback:0:
  202. PyErr_GivenExceptionMatches:int:::
  203. PyErr_GivenExceptionMatches:PyObject*:given:0:
  204. PyErr_GivenExceptionMatches:PyObject*:exc:0:
  205. PyErr_NewException:PyObject*::+1:
  206. PyErr_NewException:char*:name::
  207. PyErr_NewException:PyObject*:base:0:
  208. PyErr_NewException:PyObject*:dict:0:
  209. PyErr_NewExceptionWithDoc:PyObject*::+1:
  210. PyErr_NewExceptionWithDoc:char*:name::
  211. PyErr_NewExceptionWithDoc:char*:doc::
  212. PyErr_NewExceptionWithDoc:PyObject*:base:0:
  213. PyErr_NewExceptionWithDoc:PyObject*:dict:0:
  214. PyErr_NoMemory:PyObject*::null:
  215. PyErr_NormalizeException:void:::
  216. PyErr_NormalizeException:PyObject**:exc::???
  217. PyErr_NormalizeException:PyObject**:val::???
  218. PyErr_NormalizeException:PyObject**:tb::???
  219. PyErr_Occurred:PyObject*::0:
  220. PyErr_Print:void:::
  221. PyErr_Restore:void:::
  222. PyErr_Restore:PyObject*:type:-1:
  223. PyErr_Restore:PyObject*:value:-1:
  224. PyErr_Restore:PyObject*:traceback:-1:
  225. PyErr_SetExcFromWindowsErr:PyObject*::null:
  226. PyErr_SetExcFromWindowsErr:PyObject*:type:0:
  227. PyErr_SetExcFromWindowsErr:int:ierr::
  228. PyErr_SetExcFromWindowsErrWithFilename:PyObject*::null:
  229. PyErr_SetExcFromWindowsErrWithFilename:PyObject*:type:0:
  230. PyErr_SetExcFromWindowsErrWithFilename:int:ierr::
  231. PyErr_SetExcFromWindowsErrWithFilename:char*:filename::
  232. PyErr_SetFromErrno:PyObject*::null:
  233. PyErr_SetFromErrno:PyObject*:type:0:
  234. PyErr_SetFromErrnoWithFilename:PyObject*::null:
  235. PyErr_SetFromErrnoWithFilename:PyObject*:type:0:
  236. PyErr_SetFromErrnoWithFilename:char*:filename::
  237. PyErr_SetFromWindowsErr:PyObject*::null:
  238. PyErr_SetFromWindowsErr:int:ierr::
  239. PyErr_SetFromWindowsErrWithFilename:PyObject*::null:
  240. PyErr_SetFromWindowsErrWithFilename:int:ierr::
  241. PyErr_SetFromWindowsErrWithFilename:char*:filename::
  242. PyErr_SetInterrupt:void:::
  243. PyErr_SetNone:void:::
  244. PyErr_SetNone:PyObject*:type:+1:
  245. PyErr_SetObject:void:::
  246. PyErr_SetObject:PyObject*:type:+1:
  247. PyErr_SetObject:PyObject*:value:+1:
  248. PyErr_SetString:void:::
  249. PyErr_SetString:PyObject*:type:+1:
  250. PyErr_SetString:char*:message::
  251. PyErr_Format:PyObject*::null:
  252. PyErr_Format:PyObject*:exception:+1:
  253. PyErr_Format:char*:format::
  254. PyErr_Format::...::
  255. PyErr_Warn:int:::
  256. PyErr_Warn:PyObject*:category:0:
  257. PyErr_Warn:char*:message::
  258. PyErr_WarnEx:int:::
  259. PyErr_WarnEx:PyObject*:category:0:
  260. PyErr_WarnEx:const char*:message::
  261. PyErr_WarnEx:Py_ssize_t:stack_level::
  262. PyEval_AcquireLock:void:::
  263. PyEval_AcquireThread:void:::
  264. PyEval_AcquireThread:PyThreadState*:tstate::
  265. PyEval_GetBuiltins:PyObject*::0:
  266. PyEval_GetLocals:PyObject*::0:
  267. PyEval_GetGlobals:PyObject*::0:
  268. PyEval_GetFrame:PyObject*::0:
  269. PyEval_InitThreads:void:::
  270. PyEval_ReleaseLock:void:::
  271. PyEval_ReleaseThread:void:::
  272. PyEval_ReleaseThread:PyThreadState*:tstate::
  273. PyEval_RestoreThread:void:::
  274. PyEval_RestoreThread:PyThreadState*:tstate::
  275. PyEval_SaveThread:PyThreadState*:::
  276. PyEval_EvalCode:PyObject*::+1:
  277. PyEval_EvalCode:PyCodeObject*:co:0:
  278. PyEval_EvalCode:PyObject*:globals:0:
  279. PyEval_EvalCode:PyObject*:locals:0:
  280. PyFile_AsFile:FILE*:::
  281. PyFile_AsFile:PyFileObject*:p:0:
  282. PyFile_Check:int:::
  283. PyFile_Check:PyObject*:p:0:
  284. PyFile_FromFile:PyObject*::+1:
  285. PyFile_FromFile:FILE*:fp::
  286. PyFile_FromFile:char*:name::
  287. PyFile_FromFile:char*:mode::
  288. PyFile_FromFile:int(*:close)::
  289. PyFile_FromString:PyObject*::+1:
  290. PyFile_FromString:char*:name::
  291. PyFile_FromString:char*:mode::
  292. PyFile_GetLine:PyObject*::+1:
  293. PyFile_GetLine:PyObject*:p::
  294. PyFile_GetLine:int:n::
  295. PyFile_Name:PyObject*::0:
  296. PyFile_Name:PyObject*:p:0:
  297. PyFile_SetBufSize:void:::
  298. PyFile_SetBufSize:PyFileObject*:p:0:
  299. PyFile_SetBufSize:int:n::
  300. PyFile_SoftSpace:int:::
  301. PyFile_SoftSpace:PyFileObject*:p:0:
  302. PyFile_SoftSpace:int:newflag::
  303. PyFile_WriteObject:int:::
  304. PyFile_WriteObject:PyObject*:obj:0:
  305. PyFile_WriteObject:PyFileObject*:p:0:
  306. PyFile_WriteObject:int:flags::
  307. PyFile_WriteString:int:::
  308. PyFile_WriteString:const char*:s::
  309. PyFile_WriteString:PyFileObject*:p:0:
  310. PyFile_WriteString:int:flags::
  311. PyFloat_AS_DOUBLE:double:::
  312. PyFloat_AS_DOUBLE:PyObject*:pyfloat:0:
  313. PyFloat_AsDouble:double:::
  314. PyFloat_AsDouble:PyObject*:pyfloat:0:
  315. PyFloat_Check:int:::
  316. PyFloat_Check:PyObject*:p:0:
  317. PyFloat_FromDouble:PyObject*::+1:
  318. PyFloat_FromDouble:double:v::
  319. PyFloat_FromString:PyObject*::+1:
  320. PyFloat_FromString:PyObject*:str:0:
  321. PyFloat_FromString:char**:pend:0:ignored
  322. PyFrozenSet_New:PyObject*::+1:
  323. PyFrozenSet_New:PyObject*:iterable:0:
  324. PyFunction_GetClosure:PyObject*::0:
  325. PyFunction_GetClosure:PyObject*:op:0:
  326. PyFunction_GetCode:PyObject*::0:
  327. PyFunction_GetCode:PyObject*:op:0:
  328. PyFunction_GetDefaults:PyObject*::0:
  329. PyFunction_GetDefaults:PyObject*:op:0:
  330. PyFunction_GetGlobals:PyObject*::0:
  331. PyFunction_GetGlobals:PyObject*:op:0:
  332. PyFunction_GetModule:PyObject*::0:
  333. PyFunction_GetModule:PyObject*:op:0:
  334. PyFunction_New:PyObject*::+1:
  335. PyFunction_New:PyObject*:code:+1:
  336. PyFunction_New:PyObject*:globals:+1:
  337. PyFunction_SetClosure:int:::
  338. PyFunction_SetClosure:PyObject*:op:0:
  339. PyFunction_SetClosure:PyObject*:closure:+1:
  340. PyFunction_SetDefaults:int:::
  341. PyFunction_SetDefaults:PyObject*:op:0:
  342. PyFunction_SetDefaults:PyObject*:defaults:+1:
  343. PyGen_New:PyObject*::+1:
  344. PyGen_New:PyFrameObject*:frame:0:
  345. Py_InitModule:PyObject*::0:
  346. Py_InitModule:char*:name::
  347. Py_InitModule:PyMethodDef[]:methods::
  348. Py_InitModule3:PyObject*::0:
  349. Py_InitModule3:char*:name::
  350. Py_InitModule3:PyMethodDef[]:methods::
  351. Py_InitModule3:char*:doc::
  352. Py_InitModule4:PyObject*::0:
  353. Py_InitModule4:char*:name::
  354. Py_InitModule4:PyMethodDef[]:methods::
  355. Py_InitModule4:char*:doc::
  356. Py_InitModule4:PyObject*:self::
  357. Py_InitModule4:int:apiver::usually provided by Py_InitModule or Py_InitModule3
  358. PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules
  359. PyImport_AddModule:char*:name::
  360. PyImport_Cleanup:void:::
  361. PyImport_ExecCodeModule:PyObject*::+1:
  362. PyImport_ExecCodeModule:char*:name::
  363. PyImport_ExecCodeModule:PyObject*:co:0:
  364. PyImport_ExecCodeModuleEx:PyObject*::+1:
  365. PyImport_ExecCodeModuleEx:char*:name::
  366. PyImport_ExecCodeModuleEx:PyObject*:co:0:
  367. PyImport_ExecCodeModuleEx:char*:pathname::
  368. PyImport_GetMagicNumber:long:::
  369. PyImport_GetModuleDict:PyObject*::0:
  370. PyImport_Import:PyObject*::+1:
  371. PyImport_Import:PyObject*:name:0:
  372. PyImport_ImportFrozenModule:int:::
  373. PyImport_ImportFrozenModule:char*:::
  374. PyImport_ImportModule:PyObject*::+1:
  375. PyImport_ImportModule:char*:name::
  376. PyImport_ImportModuleEx:PyObject*::+1:
  377. PyImport_ImportModuleEx:char*:name::
  378. PyImport_ImportModuleEx:PyObject*:globals:0:???
  379. PyImport_ImportModuleEx:PyObject*:locals:0:???
  380. PyImport_ImportModuleEx:PyObject*:fromlist:0:???
  381. PyImport_ImportModuleLevel:PyObject*::+1:
  382. PyImport_ImportModuleLevel:char*:name::
  383. PyImport_ImportModuleLevel:PyObject*:globals:0:???
  384. PyImport_ImportModuleLevel:PyObject*:locals:0:???
  385. PyImport_ImportModuleLevel:PyObject*:fromlist:0:???
  386. PyImport_ImportModuleLevel:int:level::
  387. PyImport_ReloadModule:PyObject*::+1:
  388. PyImport_ReloadModule:PyObject*:m:0:
  389. PyInstance_New:PyObject*::+1:
  390. PyInstance_New:PyObject*:klass:+1:
  391. PyInstance_New:PyObject*:arg:0:
  392. PyInstance_New:PyObject*:kw:0:
  393. PyInstance_NewRaw:PyObject*::+1:
  394. PyInstance_NewRaw:PyObject*:klass:+1:
  395. PyInstance_NewRaw:PyObject*:dict:+1:
  396. PyInt_AS_LONG:long:::
  397. PyInt_AS_LONG:PyIntObject*:io:0:
  398. PyInt_AsLong:long:::
  399. PyInt_AsLong:PyObject*:io:0:
  400. PyInt_Check:int:::
  401. PyInt_Check:PyObject*:op:0:
  402. PyInt_FromLong:PyObject*::+1:
  403. PyInt_FromLong:long:ival::
  404. PyInt_FromString:PyObject*::+1:
  405. PyInt_FromString:char*:str:0:
  406. PyInt_FromString:char**:pend:0:
  407. PyInt_FromString:int:base:0:
  408. PyInt_FromSsize_t:PyObject*::+1:
  409. PyInt_FromSsize_t:Py_ssize_t:ival::
  410. PyInt_GetMax:long:::
  411. PyInterpreterState_Clear:void:::
  412. PyInterpreterState_Clear:PyInterpreterState*:interp::
  413. PyInterpreterState_Delete:void:::
  414. PyInterpreterState_Delete:PyInterpreterState*:interp::
  415. PyInterpreterState_New:PyInterpreterState*:::
  416. PyIter_Check:int:o:0:
  417. PyIter_Next:PyObject*::+1:
  418. PyIter_Next:PyObject*:o:0:
  419. PyList_Append:int:::
  420. PyList_Append:PyObject*:list:0:
  421. PyList_Append:PyObject*:item:+1:
  422. PyList_AsTuple:PyObject*::+1:
  423. PyList_AsTuple:PyObject*:list:0:
  424. PyList_Check:int:::
  425. PyList_Check:PyObject*:p:0:
  426. PyList_GET_ITEM:PyObject*::0:
  427. PyList_GET_ITEM:PyObject*:list:0:
  428. PyList_GET_ITEM:int:i:0:
  429. PyList_GET_SIZE:int:::
  430. PyList_GET_SIZE:PyObject*:list:0:
  431. PyList_GetItem:PyObject*::0:
  432. PyList_GetItem:PyObject*:list:0:
  433. PyList_GetItem:int:index::
  434. PyList_GetSlice:PyObject*::+1:
  435. PyList_GetSlice:PyObject*:list:0:
  436. PyList_GetSlice:int:low::
  437. PyList_GetSlice:int:high::
  438. PyList_Insert:int:::
  439. PyList_Insert:PyObject*:list:0:
  440. PyList_Insert:int:index::
  441. PyList_Insert:PyObject*:item:+1:
  442. PyList_New:PyObject*::+1:
  443. PyList_New:int:len::
  444. PyList_Reverse:int:::
  445. PyList_Reverse:PyObject*:list:0:
  446. PyList_SET_ITEM:void:::
  447. PyList_SET_ITEM:PyObject*:list:0:
  448. PyList_SET_ITEM:int:i::
  449. PyList_SET_ITEM:PyObject*:o:0:
  450. PyList_SetItem:int:::
  451. PyList_SetItem:PyObject*:list:0:
  452. PyList_SetItem:int:index::
  453. PyList_SetItem:PyObject*:item:0:
  454. PyList_SetSlice:int:::
  455. PyList_SetSlice:PyObject*:list:0:
  456. PyList_SetSlice:int:low::
  457. PyList_SetSlice:int:high::
  458. PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
  459. PyList_Size:int:::
  460. PyList_Size:PyObject*:list:0:
  461. PyList_Sort:int:::
  462. PyList_Sort:PyObject*:list:0:
  463. PyLong_AsDouble:double:::
  464. PyLong_AsDouble:PyObject*:pylong:0:
  465. PyLong_AsLong:long:::
  466. PyLong_AsLong:PyObject*:pylong:0:
  467. PyLong_AsSsize_t:ssize_t:::
  468. PyLong_AsSsize_t:PyObject*:pylong:0:
  469. PyLong_AsUnsignedLong:unsigned long:::
  470. PyLong_AsUnsignedLong:PyObject*:pylong:0:
  471. PyLong_Check:int:::
  472. PyLong_Check:PyObject*:p:0:
  473. PyLong_FromDouble:PyObject*::+1:
  474. PyLong_FromDouble:double:v::
  475. PyLong_FromLong:PyObject*::+1:
  476. PyLong_FromLong:long:v::
  477. PyLong_FromLongLong:PyObject*::+1:
  478. PyLong_FromLongLong:long long:v::
  479. PyLong_FromUnsignedLongLong:PyObject*::+1:
  480. PyLong_FromUnsignedLongLong:unsigned long long:v::
  481. PyLong_FromSize_t:PyObject*::+1:
  482. PyLong_FromSize_t:size_t:v::
  483. PyLong_FromSsize_t:PyObject*::+1:
  484. PyLong_FromSsize_t:ssize_t:v::
  485. PyLong_FromString:PyObject*::+1:
  486. PyLong_FromString:char*:str::
  487. PyLong_FromString:char**:pend::
  488. PyLong_FromString:int:base::
  489. PyLong_FromUnicode:PyObject*::+1:
  490. PyLong_FromUnicode:Py_UNICODE:u::
  491. PyLong_FromUnicode:int:length::
  492. PyLong_FromUnicode:int:base::
  493. PyLong_FromUnsignedLong:PyObject*::+1:
  494. PyLong_FromUnsignedLong:unsignedlong:v::
  495. PyLong_FromVoidPtr:PyObject*::+1:
  496. PyLong_FromVoidPtr:void*:p::
  497. PyMapping_Check:int:::
  498. PyMapping_Check:PyObject*:o:0:
  499. PyMapping_DelItem:int:::
  500. PyMapping_DelItem:PyObject*:o:0:
  501. PyMapping_DelItem:PyObject*:key:0:
  502. PyMapping_DelItemString:int:::
  503. PyMapping_DelItemString:PyObject*:o:0:
  504. PyMapping_DelItemString:char*:key::
  505. PyMapping_GetItemString:PyObject*::+1:
  506. PyMapping_GetItemString:PyObject*:o:0:
  507. PyMapping_GetItemString:char*:key::
  508. PyMapping_HasKey:int:::
  509. PyMapping_HasKey:PyObject*:o:0:
  510. PyMapping_HasKey:PyObject*:key::
  511. PyMapping_HasKeyString:int:::
  512. PyMapping_HasKeyString:PyObject*:o:0:
  513. PyMapping_HasKeyString:char*:key::
  514. PyMapping_Items:PyObject*::+1:
  515. PyMapping_Items:PyObject*:o:0:
  516. PyMapping_Keys:PyObject*::+1:
  517. PyMapping_Keys:PyObject*:o:0:
  518. PyMapping_Length:int:::
  519. PyMapping_Length:PyObject*:o:0:
  520. PyMapping_SetItemString:int:::
  521. PyMapping_SetItemString:PyObject*:o:0:
  522. PyMapping_SetItemString:char*:key::
  523. PyMapping_SetItemString:PyObject*:v:+1:
  524. PyMapping_Values:PyObject*::+1:
  525. PyMapping_Values:PyObject*:o:0:
  526. PyMarshal_ReadLastObjectFromFile:PyObject*::+1:
  527. PyMarshal_ReadLastObjectFromFile:FILE*:file::
  528. PyMarshal_ReadObjectFromFile:PyObject*::+1:
  529. PyMarshal_ReadObjectFromFile:FILE*:file::
  530. PyMarshal_ReadObjectFromString:PyObject*::+1:
  531. PyMarshal_ReadObjectFromString:char*:string::
  532. PyMarshal_ReadObjectFromString:int:len::
  533. PyMarshal_WriteObjectToString:PyObject*::+1:
  534. PyMarshal_WriteObjectToString:PyObject*:value:0:
  535. PyMethod_Class:PyObject*::0:
  536. PyMethod_Class:PyObject*:im:0:
  537. PyMethod_Function:PyObject*::0:
  538. PyMethod_Function:PyObject*:im:0:
  539. PyMethod_GET_CLASS:PyObject*::0:
  540. PyMethod_GET_CLASS:PyObject*:im:0:
  541. PyMethod_GET_FUNCTION:PyObject*::0:
  542. PyMethod_GET_FUNCTION:PyObject*:im:0:
  543. PyMethod_GET_SELF:PyObject*::0:
  544. PyMethod_GET_SELF:PyObject*:im:0:
  545. PyMethod_New:PyObject*::+1:
  546. PyMethod_New:PyObject*:func:0:
  547. PyMethod_New:PyObject*:self:0:
  548. PyMethod_New:PyObject*:class:0:
  549. PyMethod_Self:PyObject*::0:
  550. PyMethod_Self:PyObject*:im:0:
  551. PyModule_GetDict:PyObject*::0:
  552. PyModule_GetDict::PyObject* module:0:
  553. PyModule_GetFilename:char*:::
  554. PyModule_GetFilename:PyObject*:module:0:
  555. PyModule_GetName:char*:::
  556. PyModule_GetName:PyObject*:module:0:
  557. PyModule_New:PyObject*::+1:
  558. PyModule_New::char* name::
  559. PyNumber_Absolute:PyObject*::+1:
  560. PyNumber_Absolute:PyObject*:o:0:
  561. PyNumber_Add:PyObject*::+1:
  562. PyNumber_Add:PyObject*:o1:0:
  563. PyNumber_Add:PyObject*:o2:0:
  564. PyNumber_And:PyObject*::+1:
  565. PyNumber_And:PyObject*:o1:0:
  566. PyNumber_And:PyObject*:o2:0:
  567. PyNumber_Check:PyObject*:o:0:
  568. PyNumber_Check:int:::
  569. PyNumber_Coerce:int:::
  570. PyNumber_Coerce:PyObject**:p1:+1:
  571. PyNumber_Coerce:PyObject**:p2:+1:
  572. PyNumber_Divide:PyObject*::+1:
  573. PyNumber_Divide:PyObject*:o1:0:
  574. PyNumber_Divide:PyObject*:o2:0:
  575. PyNumber_Divmod:PyObject*::+1:
  576. PyNumber_Divmod:PyObject*:o1:0:
  577. PyNumber_Divmod:PyObject*:o2:0:
  578. PyNumber_Float:PyObject*::+1:
  579. PyNumber_Float:PyObject*:o:0:
  580. PyNumber_FloorDivide:PyObject*::+1:
  581. PyNumber_FloorDivide:PyObject*:v:0:
  582. PyNumber_FloorDivide:PyObject*:w:0:
  583. PyNumber_InPlaceAdd:PyObject*::+1:
  584. PyNumber_InPlaceAdd:PyObject*:v:0:
  585. PyNumber_InPlaceAdd:PyObject*:w:0:
  586. PyNumber_InPlaceAnd:PyObject*::+1:
  587. PyNumber_InPlaceAnd:PyObject*:v:0:
  588. PyNumber_InPlaceAnd:PyObject*:w:0:
  589. PyNumber_InPlaceDivide:PyObject*::+1:
  590. PyNumber_InPlaceDivide:PyObject*:v:0:
  591. PyNumber_InPlaceDivide:PyObject*:w:0:
  592. PyNumber_InPlaceFloorDivide:PyObject*::+1:
  593. PyNumber_InPlaceFloorDivide:PyObject*:v:0:
  594. PyNumber_InPlaceFloorDivide:PyObject*:w:0:
  595. PyNumber_InPlaceLshift:PyObject*::+1:
  596. PyNumber_InPlaceLshift:PyObject*:v:0:
  597. PyNumber_InPlaceLshift:PyObject*:w:0:
  598. PyNumber_InPlaceMultiply:PyObject*::+1:
  599. PyNumber_InPlaceMultiply:PyObject*:v:0:
  600. PyNumber_InPlaceMultiply:PyObject*:w:0:
  601. PyNumber_InPlaceOr:PyObject*::+1:
  602. PyNumber_InPlaceOr:PyObject*:v:0:
  603. PyNumber_InPlaceOr:PyObject*:w:0:
  604. PyNumber_InPlacePower:PyObject*::+1:
  605. PyNumber_InPlacePower:PyObject*:v:0:
  606. PyNumber_InPlacePower:PyObject*:w:0:
  607. PyNumber_InPlacePower:PyObject*:z:0:
  608. PyNumber_InPlaceRemainder:PyObject*::+1:
  609. PyNumber_InPlaceRemainder:PyObject*:v:0:
  610. PyNumber_InPlaceRemainder:PyObject*:w:0:
  611. PyNumber_InPlaceRshift:PyObject*::+1:
  612. PyNumber_InPlaceRshift:PyObject*:v:0:
  613. PyNumber_InPlaceRshift:PyObject*:w:0:
  614. PyNumber_InPlaceSubtract:PyObject*::+1:
  615. PyNumber_InPlaceSubtract:PyObject*:v:0:
  616. PyNumber_InPlaceSubtract:PyObject*:w:0:
  617. PyNumber_InPlaceTrueDivide:PyObject*::+1:
  618. PyNumber_InPlaceTrueDivide:PyObject*:v:0:
  619. PyNumber_InPlaceTrueDivide:PyObject*:w:0:
  620. PyNumber_InPlaceXor:PyObject*::+1:
  621. PyNumber_InPlaceXor:PyObject*:v:0:
  622. PyNumber_InPlaceXor:PyObject*:w:0:
  623. PyNumber_Int:PyObject*::+1:
  624. PyNumber_Int:PyObject*:o:0:
  625. PyNumber_Invert:PyObject*::+1:
  626. PyNumber_Invert:PyObject*:o:0:
  627. PyNumber_Long:PyObject*::+1:
  628. PyNumber_Long:PyObject*:o:0:
  629. PyNumber_Lshift:PyObject*::+1:
  630. PyNumber_Lshift:PyObject*:o1:0:
  631. PyNumber_Lshift:PyObject*:o2:0:
  632. PyNumber_Multiply:PyObject*::+1:
  633. PyNumber_Multiply:PyObject*:o1:0:
  634. PyNumber_Multiply:PyObject*:o2:0:
  635. PyNumber_Negative:PyObject*::+1:
  636. PyNumber_Negative:PyObject*:o:0:
  637. PyNumber_Or:PyObject*::+1:
  638. PyNumber_Or:PyObject*:o1:0:
  639. PyNumber_Or:PyObject*:o2:0:
  640. PyNumber_Positive:PyObject*::+1:
  641. PyNumber_Positive:PyObject*:o:0:
  642. PyNumber_Power:PyObject*::+1:
  643. PyNumber_Power:PyObject*:o1:0:
  644. PyNumber_Power:PyObject*:o2:0:
  645. PyNumber_Power:PyObject*:o3:0:
  646. PyNumber_Remainder:PyObject*::+1:
  647. PyNumber_Remainder:PyObject*:o1:0:
  648. PyNumber_Remainder:PyObject*:o2:0:
  649. PyNumber_Rshift:PyObject*::+1:
  650. PyNumber_Rshift:PyObject*:o1:0:
  651. PyNumber_Rshift:PyObject*:o2:0:
  652. PyNumber_Subtract:PyObject*::+1:
  653. PyNumber_Subtract:PyObject*:o1:0:
  654. PyNumber_Subtract:PyObject*:o2:0:
  655. PyNumber_TrueDivide:PyObject*::+1:
  656. PyNumber_TrueDivide:PyObject*:v:0:
  657. PyNumber_TrueDivide:PyObject*:w:0:
  658. PyNumber_Xor:PyObject*::+1:
  659. PyNumber_Xor:PyObject*:o1:0:
  660. PyNumber_Xor:PyObject*:o2:0:
  661. PyObject_AsFileDescriptor:int:::
  662. PyObject_AsFileDescriptor:PyObject*:o:0:
  663. PyObject_Call:PyObject*::+1:
  664. PyObject_Call:PyObject*:callable_object:0:
  665. PyObject_Call:PyObject*:args:0:
  666. PyObject_Call:PyObject*:kw:0:
  667. PyObject_CallFunction:PyObject*::+1:
  668. PyObject_CallFunction:PyObject*:callable_object:0:
  669. PyObject_CallFunction:char*:format::
  670. PyObject_CallFunction::...::
  671. PyObject_CallFunctionObjArgs:PyObject*::+1:
  672. PyObject_CallFunctionObjArgs:PyObject*:callable:0:
  673. PyObject_CallFunctionObjArgs::...::
  674. PyObject_CallMethod:PyObject*::+1:
  675. PyObject_CallMethod:PyObject*:o:0:
  676. PyObject_CallMethod:char*:m::
  677. PyObject_CallMethod:char*:format::
  678. PyObject_CallMethod::...::
  679. PyObject_CallMethodObjArgs:PyObject*::+1:
  680. PyObject_CallMethodObjArgs:PyObject*:o:0:
  681. PyObject_CallMethodObjArgs:char*:name::
  682. PyObject_CallMethodObjArgs::...::
  683. PyObject_CallObject:PyObject*::+1:
  684. PyObject_CallObject:PyObject*:callable_object:0:
  685. PyObject_CallObject:PyObject*:args:0:
  686. PyObject_Cmp:int:::
  687. PyObject_Cmp:PyObject*:o1:0:
  688. PyObject_Cmp:PyObject*:o2:0:
  689. PyObject_Cmp:int*:result::
  690. PyObject_Compare:int:::
  691. PyObject_Compare:PyObject*:o1:0:
  692. PyObject_Compare:PyObject*:o2:0:
  693. PyObject_DelAttr:int:::
  694. PyObject_DelAttr:PyObject*:o:0:
  695. PyObject_DelAttr:PyObject*:attr_name:0:
  696. PyObject_DelAttrString:int:::
  697. PyObject_DelAttrString:PyObject*:o:0:
  698. PyObject_DelAttrString:char*:attr_name::
  699. PyObject_DelItem:int:::
  700. PyObject_DelItem:PyObject*:o:0:
  701. PyObject_DelItem:PyObject*:key:0:
  702. PyObject_Dir:PyObject*::+1:
  703. PyObject_Dir:PyObject*:o:0:
  704. PyObject_GetAttr:PyObject*::+1:
  705. PyObject_GetAttr:PyObject*:o:0:
  706. PyObject_GetAttr:PyObject*:attr_name:0:
  707. PyObject_GetAttrString:PyObject*::+1:
  708. PyObject_GetAttrString:PyObject*:o:0:
  709. PyObject_GetAttrString:char*:attr_name::
  710. PyObject_GetItem:PyObject*::+1:
  711. PyObject_GetItem:PyObject*:o:0:
  712. PyObject_GetItem:PyObject*:key:0:
  713. PyObject_GetIter:PyObject*::+1:
  714. PyObject_GetIter:PyObject*:o:0:
  715. PyObject_HasAttr:int:::
  716. PyObject_HasAttr:PyObject*:o:0:
  717. PyObject_HasAttr:PyObject*:attr_name:0:
  718. PyObject_HasAttrString:int:::
  719. PyObject_HasAttrString:PyObject*:o:0:
  720. PyObject_HasAttrString:char*:attr_name:0:
  721. PyObject_Hash:int:::
  722. PyObject_Hash:PyObject*:o:0:
  723. PyObject_IsTrue:int:::
  724. PyObject_IsTrue:PyObject*:o:0:
  725. PyObject_Init:PyObject*::0:
  726. PyObject_Init:PyObject*:op:0:
  727. PyObject_InitVar:PyVarObject*::0:
  728. PyObject_InitVar:PyVarObject*:op:0:
  729. PyObject_Length:int:::
  730. PyObject_Length:PyObject*:o:0:
  731. PyObject_NEW:PyObject*::+1:
  732. PyObject_New:PyObject*::+1:
  733. PyObject_NEW_VAR:PyObject*::+1:
  734. PyObject_NewVar:PyObject*::+1:
  735. PyObject_Print:int:::
  736. PyObject_Print:PyObject*:o:0:
  737. PyObject_Print:FILE*:fp::
  738. PyObject_Print:int:flags::
  739. PyObject_Repr:PyObject*::+1:
  740. PyObject_Repr:PyObject*:o:0:
  741. PyObject_RichCompare:PyObject*::+1:
  742. PyObject_RichCompare:PyObject*:o1:0:
  743. PyObject_RichCompare:PyObject*:o2:0:
  744. PyObject_RichCompare:int:opid::
  745. PyObject_RichCompareBool:int:::
  746. PyObject_RichCompareBool:PyObject*:o1:0:
  747. PyObject_RichCompareBool:PyObject*:o2:0:
  748. PyObject_RichCompareBool:int:opid::
  749. PyObject_SetAttr:int:::
  750. PyObject_SetAttr:PyObject*:o:0:
  751. PyObject_SetAttr:PyObject*:attr_name:0:
  752. PyObject_SetAttr:PyObject*:v:+1:
  753. PyObject_SetAttrString:int:::
  754. PyObject_SetAttrString:PyObject*:o:0:
  755. PyObject_SetAttrString:char*:attr_name::
  756. PyObject_SetAttrString:PyObject*:v:+1:
  757. PyObject_SetItem:int:::
  758. PyObject_SetItem:PyObject*:o:0:
  759. PyObject_SetItem:PyObject*:key:0:
  760. PyObject_SetItem:PyObject*:v:+1:
  761. PyObject_Str:PyObject*::+1:
  762. PyObject_Str:PyObject*:o:0:
  763. PyObject_Type:PyObject*::+1:
  764. PyObject_Type:PyObject*:o:0:
  765. PyObject_Unicode:PyObject*::+1:
  766. PyObject_Unicode:PyObject*:o:0:
  767. PyParser_SimpleParseFile:struct _node*:::
  768. PyParser_SimpleParseFile:FILE*:fp::
  769. PyParser_SimpleParseFile:char*:filename::
  770. PyParser_SimpleParseFile:int:start::
  771. PyParser_SimpleParseString:struct _node*:::
  772. PyParser_SimpleParseString:char*:str::
  773. PyParser_SimpleParseString:int:start::
  774. PyRun_AnyFile:int:::
  775. PyRun_AnyFile:FILE*:fp::
  776. PyRun_AnyFile:char*:filename::
  777. PyRun_File:PyObject*::+1:??? -- same as eval_code2()
  778. PyRun_File:FILE*:fp::
  779. PyRun_File:char*:filename::
  780. PyRun_File:int:start::
  781. PyRun_File:PyObject*:globals:0:
  782. PyRun_File:PyObject*:locals:0:
  783. PyRun_FileEx:PyObject*::+1:??? -- same as eval_code2()
  784. PyRun_FileEx:FILE*:fp::
  785. PyRun_FileEx:char*:filename::
  786. PyRun_FileEx:int:start::
  787. PyRun_FileEx:PyObject*:globals:0:
  788. PyRun_FileEx:PyObject*:locals:0:
  789. PyRun_FileEx:int:closeit::
  790. PyRun_FileFlags:PyObject*::+1:??? -- same as eval_code2()
  791. PyRun_FileFlags:FILE*:fp::
  792. PyRun_FileFlags:char*:filename::
  793. PyRun_FileFlags:int:start::
  794. PyRun_FileFlags:PyObject*:globals:0:
  795. PyRun_FileFlags:PyObject*:locals:0:
  796. PyRun_FileFlags:PyCompilerFlags*:flags::
  797. PyRun_FileExFlags:PyObject*::+1:??? -- same as eval_code2()
  798. PyRun_FileExFlags:FILE*:fp::
  799. PyRun_FileExFlags:char*:filename::
  800. PyRun_FileExFlags:int:start::
  801. PyRun_FileExFlags:PyObject*:globals:0:
  802. PyRun_FileExFlags:PyObject*:locals:0:
  803. PyRun_FileExFlags:int:closeit::
  804. PyRun_FileExFlags:PyCompilerFlags*:flags::
  805. PyRun_InteractiveLoop:int:::
  806. PyRun_InteractiveLoop:FILE*:fp::
  807. PyRun_InteractiveLoop:char*:filename::
  808. PyRun_InteractiveOne:int:::
  809. PyRun_InteractiveOne:FILE*:fp::
  810. PyRun_InteractiveOne:char*:filename::
  811. PyRun_SimpleFile:int:::
  812. PyRun_SimpleFile:FILE*:fp::
  813. PyRun_SimpleFile:char*:filename::
  814. PyRun_SimpleString:int:::
  815. PyRun_SimpleString:char*:command::
  816. PyRun_String:PyObject*::+1:??? -- same as eval_code2()
  817. PyRun_String:char*:str::
  818. PyRun_String:int:start::
  819. PyRun_String:PyObject*:globals:0:
  820. PyRun_String:PyObject*:locals:0:
  821. PyRun_StringFlags:PyObject*::+1:??? -- same as eval_code2()
  822. PyRun_StringFlags:char*:str::
  823. PyRun_StringFlags:int:start::
  824. PyRun_StringFlags:PyObject*:globals:0:
  825. PyRun_StringFlags:PyObject*:locals:0:
  826. PyRun_StringFlags:PyCompilerFlags*:flags::
  827. PySeqIter_New:PyObject*::+1:
  828. PySeqIter_New:PyObject*:seq::
  829. PySequence_Check:int:::
  830. PySequence_Check:PyObject*:o:0:
  831. PySequence_Concat:PyObject*::+1:
  832. PySequence_Concat:PyObject*:o1:0:
  833. PySequence_Concat:PyObject*:o2:0:
  834. PySequence_Count:int:::
  835. PySequence_Count:PyObject*:o:0:
  836. PySequence_Count:PyObject*:value:0:
  837. PySequence_DelItem:int:::
  838. PySequence_DelItem:PyObject*:o:0:
  839. PySequence_DelItem:int:i::
  840. PySequence_DelSlice:int:::
  841. PySequence_DelSlice:PyObject*:o:0:
  842. PySequence_DelSlice:int:i1::
  843. PySequence_DelSlice:int:i2::
  844. PySequence_Fast:PyObject*::+1:
  845. PySequence_Fast:PyObject*:v:0:
  846. PySequence_Fast:const char*:m::
  847. PySequence_Fast_GET_ITEM:PyObject*::0:
  848. PySequence_Fast_GET_ITEM:PyObject*:o:0:
  849. PySequence_Fast_GET_ITEM:int:i::
  850. PySequence_GetItem:PyObject*::+1:
  851. PySequence_GetItem:PyObject*:o:0:
  852. PySequence_GetItem:int:i::
  853. PySequence_GetSlice:PyObject*::+1:
  854. PySequence_GetSlice:PyObject*:o:0:
  855. PySequence_GetSlice:int:i1::
  856. PySequence_GetSlice:int:i2::
  857. PySequence_In:int:::
  858. PySequence_In:PyObject*:o:0:
  859. PySequence_In:PyObject*:value:0:
  860. PySequence_Index:int:::
  861. PySequence_Index:PyObject*:o:0:
  862. PySequence_Index:PyObject*:value:0:
  863. PySequence_InPlaceConcat:PyObject*::+1:
  864. PySequence_InPlaceConcat:PyObject*:s:0:
  865. PySequence_InPlaceConcat:PyObject*:o:0:
  866. PySequence_InPlaceRepeat:PyObject*::+1:
  867. PySequence_InPlaceRepeat:PyObject*:s:0:
  868. PySequence_InPlaceRepeat:PyObject*:o:0:
  869. PySequence_ITEM:PyObject*::+1:
  870. PySequence_ITEM:PyObject*:o:0:
  871. PySequence_ITEM:int:i::
  872. PySequence_Repeat:PyObject*::+1:
  873. PySequence_Repeat:PyObject*:o:0:
  874. PySequence_Repeat:int:count::
  875. PySequence_SetItem:int:::
  876. PySequence_SetItem:PyObject*:o:0:
  877. PySequence_SetItem:int:i::
  878. PySequence_SetItem:PyObject*:v:+1:
  879. PySequence_SetSlice:int:::
  880. PySequence_SetSlice:PyObject*:o:0:
  881. PySequence_SetSlice:int:i1::
  882. PySequence_SetSlice:int:i2::
  883. PySequence_SetSlice:PyObject*:v:+1:
  884. PySequence_List:PyObject*::+1:
  885. PySequence_List:PyObject*:o:0:
  886. PySequence_Tuple:PyObject*::+1:
  887. PySequence_Tuple:PyObject*:o:0:
  888. PySet_Append:int:::
  889. PySet_Append:PyObject*:set:0:
  890. PySet_Append:PyObject*:key:+1:
  891. PySet_Contains:int:::
  892. PySet_Contains:PyObject*:anyset:0:
  893. PySet_Contains:PyObject*:key:0:
  894. PySet_Discard:int:::
  895. PySet_Discard:PyObject*:set:0:
  896. PySet_Discard:PyObject*:key:-1:no effect if key not found
  897. PySet_New:PyObject*::+1:
  898. PySet_New:PyObject*:iterable:0:
  899. PySet_Pop:PyObject*::+1:or returns NULL and raises KeyError if set is empty
  900. PySet_Pop:PyObject*:set:0:
  901. PySet_Size:int:::
  902. PySet_Size:PyObject*:anyset:0:
  903. PySlice_Check:int:::
  904. PySlice_Check:PyObject*:ob:0:
  905. PySlice_New:PyObject*::+1:
  906. PySlice_New:PyObject*:start:0:
  907. PySlice_New:PyObject*:stop:0:
  908. PySlice_New:PyObject*:step:0:
  909. PyString_AS_STRING:char*:::
  910. PyString_AS_STRING:PyObject*:string:0:
  911. PyString_AsDecodedObject:PyObject*::+1:
  912. PyString_AsDecodedObject:PyObject*:str:0:
  913. PyString_AsDecodedObject:const char*:encoding::
  914. PyString_AsDecodedObject:const char*:errors::
  915. PyString_AsEncodedObject:PyObject*::+1:
  916. PyString_AsEncodedObject:PyObject*:str:0:
  917. PyString_AsEncodedObject:const char*:encoding::
  918. PyString_AsEncodedObject:const char*:errors::
  919. PyString_AsString:char*:::
  920. PyString_AsString:PyObject*:string:0:
  921. PyString_AsStringAndSize:int:::
  922. PyString_AsStringAndSize:PyObject*:obj:0:
  923. PyString_AsStringAndSize:char**:buffer::
  924. PyString_AsStringAndSize:int*:length::
  925. PyString_Check:int:::
  926. PyString_Check:PyObject*:o:0:
  927. PyString_Concat:void:::
  928. PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
  929. PyString_Concat:PyObject*:newpart:0:
  930. PyString_ConcatAndDel:void:::
  931. PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
  932. PyString_ConcatAndDel:PyObject*:newpart:-1:
  933. PyString_Format:PyObject*::+1:
  934. PyString_Format:PyObject*:format:0:
  935. PyString_Format:PyObject*:args:0:
  936. PyString_FromString:PyObject*::+1:
  937. PyString_FromString:const char*:v::
  938. PyString_FromStringAndSize:PyObject*::+1:
  939. PyString_FromStringAndSize:const char*:v::
  940. PyString_FromStringAndSize:int:len::
  941. PyString_FromFormat:PyObject*::+1:
  942. PyString_FromFormat:const char*:format::
  943. PyString_FromFormat::...::
  944. PyString_FromFormatV:PyObject*::+1:
  945. PyString_FromFormatV:const char*:format::
  946. PyString_FromFormatV:va_list:vargs::
  947. PyString_GET_SIZE:int:::
  948. PyString_GET_SIZE:PyObject*:string:0:
  949. PyString_InternFromString:PyObject*::+1:
  950. PyString_InternFromString:const char*:v::
  951. PyString_InternInPlace:void:::
  952. PyString_InternInPlace:PyObject**:string:+1:???
  953. PyString_Size:int:::
  954. PyString_Size:PyObject*:string:0:
  955. PyString_Decode:PyObject*::+1:
  956. PyString_Decode:const char*:s::
  957. PyString_Decode:int:size::
  958. PyString_Decode:const char*:encoding::
  959. PyString_Decode:const char*:errors::
  960. PyString_Encode:PyObject*::+1:
  961. PyString_Encode:const char*:s::
  962. PyString_Encode:int:size::
  963. PyString_Encode:const char*:encoding::
  964. PyString_Encode:const char*:errors::
  965. PyString_AsEncodedString:PyObject*::+1:
  966. PyString_AsEncodedString:PyObject*:str::
  967. PyString_AsEncodedString:const char*:encoding::
  968. PyString_AsEncodedString:const char*:errors::
  969. PySys_AddWarnOption:void:::
  970. PySys_AddWarnOption:char*:s::
  971. PySys_GetFile:FILE*:::
  972. PySys_GetFile:char*:name::
  973. PySys_GetFile:FILE*:def::
  974. PySys_GetObject:PyObject*::0:
  975. PySys_GetObject:char*:name::
  976. PySys_SetArgv:int:::
  977. PySys_SetArgv:int:argc::
  978. PySys_SetArgv:char**:argv::
  979. PySys_SetObject:int:::
  980. PySys_SetObject:char*:name::
  981. PySys_SetObject:PyObject*:v:+1:
  982. PySys_ResetWarnOptions:void:::
  983. PySys_WriteStdout:void:::
  984. PySys_WriteStdout:char*:format::
  985. PySys_WriteStderr:void:::
  986. PySys_WriteStderr:char*:format::
  987. PyThreadState_Clear:void:::
  988. PyThreadState_Clear:PyThreadState*:tstate::
  989. PyThreadState_Delete:void:::
  990. PyThreadState_Delete:PyThreadState*:tstate::
  991. PyThreadState_Get:PyThreadState*:::
  992. PyThreadState_GetDict:PyObject*::0:
  993. PyThreadState_New:PyThreadState*:::
  994. PyThreadState_New:PyInterpreterState*:interp::
  995. PyThreadState_Swap:PyThreadState*:::
  996. PyThreadState_Swap:PyThreadState*:tstate::
  997. PyTime_FromTime:PyObject*::+1:
  998. PyTime_FromTime:int:hour::
  999. PyTime_FromTime:int:minute::
  1000. PyTime_FromTime:int:second::
  1001. PyTime_FromTime:int:usecond::
  1002. PyTuple_Check:int:::
  1003. PyTuple_Check:PyObject*:p:0:
  1004. PyTuple_GET_ITEM:PyObject*::0:
  1005. PyTuple_GET_ITEM:PyTupleObject*:p:0:
  1006. PyTuple_GET_ITEM:int:pos::
  1007. PyTuple_GetItem:PyObject*::0:
  1008. PyTuple_GetItem:PyTupleObject*:p:0:
  1009. PyTuple_GetItem:int:pos::
  1010. PyTuple_GetSlice:PyObject*::+1:
  1011. PyTuple_GetSlice:PyTupleObject*:p:0:
  1012. PyTuple_GetSlice:int:low::
  1013. PyTuple_GetSlice:int:high::
  1014. PyTuple_New:PyObject*::+1:
  1015. PyTuple_New:int:len::
  1016. PyTuple_Pack:PyObject*::+1:
  1017. PyTuple_Pack:int:len::
  1018. PyTuple_Pack:PyObject*:...:0:
  1019. PyTuple_SET_ITEM:void:::
  1020. PyTuple_SET_ITEM:PyTupleObject*:p:0:
  1021. PyTuple_SET_ITEM:int:pos::
  1022. PyTuple_SET_ITEM:PyObject*:o:0:
  1023. PyTuple_SetItem:int:::
  1024. PyTuple_SetItem:PyTupleObject*:p:0:
  1025. PyTuple_SetItem:int:pos::
  1026. PyTuple_SetItem:PyObject*:o:0:
  1027. PyTuple_Size:int:::
  1028. PyTuple_Size:PyTupleObject*:p:0:
  1029. PyType_GenericAlloc:PyObject*::+1:
  1030. PyType_GenericAlloc:PyObject*:type:0:
  1031. PyType_GenericAlloc:int:nitems:0:
  1032. PyType_GenericNew:PyObject*::+1:
  1033. PyType_GenericNew:PyObject*:type:0:
  1034. PyType_GenericNew:PyObject*:args:0:
  1035. PyType_GenericNew:PyObject*:kwds:0:
  1036. PyUnicode_Check:int:::
  1037. PyUnicode_Check:PyObject*:o:0:
  1038. PyUnicode_GET_SIZE:int:::
  1039. PyUnicode_GET_SIZE:PyObject*:o:0:
  1040. PyUnicode_GET_DATA_SIZE:int:::
  1041. PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
  1042. PyUnicode_AS_UNICODE:Py_UNICODE*:::
  1043. PyUnicode_AS_UNICODE:PyObject*:o:0:
  1044. PyUnicode_AS_DATA:const char*:::
  1045. PyUnicode_AS_DATA:PyObject*:o:0:
  1046. Py_UNICODE_ISSPACE:int:::
  1047. Py_UNICODE_ISSPACE:Py_UNICODE:ch::
  1048. Py_UNICODE_ISLOWER:int:::
  1049. Py_UNICODE_ISLOWER:Py_UNICODE:ch::
  1050. Py_UNICODE_ISUPPER:int:::
  1051. Py_UNICODE_ISUPPER:Py_UNICODE:ch::
  1052. Py_UNICODE_ISTITLE:int:::
  1053. Py_UNICODE_ISTITLE:Py_UNICODE:ch::
  1054. Py_UNICODE_ISLINEBREAK:int:::
  1055. Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
  1056. Py_UNICODE_ISDECIMAL:int:::
  1057. Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
  1058. Py_UNICODE_ISDIGIT:int:::
  1059. Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
  1060. Py_UNICODE_ISNUMERIC:int:::
  1061. Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
  1062. Py_UNICODE_TOLOWER:Py_UNICODE:::
  1063. Py_UNICODE_TOLOWER:Py_UNICODE:ch::
  1064. Py_UNICODE_TOUPPER:Py_UNICODE:::
  1065. Py_UNICODE_TOUPPER:Py_UNICODE:ch::
  1066. Py_UNICODE_TOTITLE:Py_UNICODE:::
  1067. Py_UNICODE_TOTITLE:Py_UNICODE:ch::
  1068. Py_UNICODE_TODECIMAL:int:::
  1069. Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
  1070. Py_UNICODE_TODIGIT:int:::
  1071. Py_UNICODE_TODIGIT:Py_UNICODE:ch::
  1072. Py_UNICODE_TONUMERIC:double:::
  1073. Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
  1074. PyUnicode_FromUnicode:PyObject*::+1:
  1075. PyUnicode_FromUnicode:const Py_UNICODE*:u::
  1076. PyUnicode_FromUnicode:int:size::
  1077. PyUnicode_AsUnicode:Py_UNICODE*:::
  1078. PyUnicode_AsUnicode:PyObject :*unicode:0:
  1079. PyUnicode_GetSize:int:::
  1080. PyUnicode_GetSize:PyObject :*unicode:0:
  1081. PyUnicode_FromObject:PyObject*::+1:
  1082. PyUnicode_FromObject:PyObject*:*obj:0:
  1083. PyUnicode_FromEncodedObject:PyObject*::+1:
  1084. PyUnicode_FromEncodedObject:PyObject*:*obj:0:
  1085. PyUnicode_FromEncodedObject:const char*:encoding::
  1086. PyUnicode_FromEncodedObject:const char*:errors::
  1087. PyUnicode_FromFormat:PyObject*::+1:
  1088. PyUnicode_FromFormat:const char*:format::
  1089. PyUnicode_FromFormat::...::
  1090. PyUnicode_FromFormatV:PyObject*::+1:
  1091. PyUnicode_FromFormatV:const char*:format::
  1092. PyUnicode_FromFormatV:va_list:vargs::
  1093. PyUnicode_FromString:PyObject*::+1:
  1094. PyUnicode_FromString:const char*:u::
  1095. PyUnicode_FromStringAndSize:PyObject*::+1:
  1096. PyUnicode_FromStringAndSize:const char*:u::
  1097. PyUnicode_FromStringAndSize:ssize_t:size::
  1098. PyUnicode_FromWideChar:PyObject*::+1:
  1099. PyUnicode_FromWideChar:const wchar_t*:w::
  1100. PyUnicode_FromWideChar:int:size::
  1101. PyUnicode_AsWideChar:int:::
  1102. PyUnicode_AsWideChar:PyObject*:*unicode:0:
  1103. PyUnicode_AsWideChar:wchar_t*:w::
  1104. PyUnicode_AsWideChar:int:size::
  1105. PyUnicode_Decode:PyObject*::+1:
  1106. PyUnicode_Decode:const char*:s::
  1107. PyUnicode_Decode:int:size::
  1108. PyUnicode_Decode:const char*:encoding::
  1109. PyUnicode_Decode:const char*:errors::
  1110. PyUnicode_DecodeUTF16Stateful:PyObject*::+1:
  1111. PyUnicode_DecodeUTF16Stateful:const char*:s::
  1112. PyUnicode_DecodeUTF16Stateful:int:size::
  1113. PyUnicode_DecodeUTF16Stateful:const char*:errors::
  1114. PyUnicode_DecodeUTF16Stateful:int*:byteorder::
  1115. PyUnicode_DecodeUTF16Stateful:int*:consumed::
  1116. PyUnicode_DecodeUTF8Stateful:PyObject*::+1:
  1117. PyUnicode_DecodeUTF8Stateful:const char*:s::
  1118. PyUnicode_DecodeUTF8Stateful:int:size::
  1119. PyUnicode_DecodeUTF8Stateful:const char*:errors::
  1120. PyUnicode_DecodeUTF8Stateful:int*:consumed::
  1121. PyUnicode_Encode:PyObject*::+1:
  1122. PyUnicode_Encode:const Py_UNICODE*:s::
  1123. PyUnicode_Encode:int:size::
  1124. PyUnicode_Encode:const char*:encoding::
  1125. PyUnicode_Encode:const char*:errors::
  1126. PyUnicode_AsEncodedString:PyObject*::+1:
  1127. PyUnicode_AsEncodedString:PyObject*:unicode::
  1128. PyUnicode_AsEncodedString:const char*:encoding::
  1129. PyUnicode_AsEncodedString:const char*:errors::
  1130. PyUnicode_DecodeUTF8:PyObject*::+1:
  1131. PyUnicode_DecodeUTF8:const char*:s::
  1132. PyUnicode_DecodeUTF8:int:size::
  1133. PyUnicode_DecodeUTF8:const char*:errors::
  1134. PyUnicode_EncodeUTF8:PyObject*::+1:
  1135. PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
  1136. PyUnicode_EncodeUTF8:int:size::
  1137. PyUnicode_EncodeUTF8:const char*:errors::
  1138. PyUnicode_AsUTF8String:PyObject*::+1:
  1139. PyUnicode_AsUTF8String:PyObject*:unicode::
  1140. PyUnicode_DecodeUTF16:PyObject*::+1:
  1141. PyUnicode_DecodeUTF16:const char*:s::
  1142. PyUnicode_DecodeUTF16:int:size::
  1143. PyUnicode_DecodeUTF16:const char*:errors::
  1144. PyUnicode_DecodeUTF16:int*:byteorder::
  1145. PyUnicode_EncodeUTF16:PyObject*::+1:
  1146. PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
  1147. PyUnicode_EncodeUTF16:int:size::
  1148. PyUnicode_EncodeUTF16:const char*:errors::
  1149. PyUnicode_EncodeUTF16:int:byteorder::
  1150. PyUnicode_AsUTF16String:PyObject*::+1:
  1151. PyUnicode_AsUTF16String:PyObject*:unicode::
  1152. PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
  1153. PyUnicode_DecodeUnicodeEscape:const char*:s::
  1154. PyUnicode_DecodeUnicodeEscape:int:size::
  1155. PyUnicode_DecodeUnicodeEscape:const char*:errors::
  1156. PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
  1157. PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
  1158. PyUnicode_EncodeUnicodeEscape:int:size::
  1159. PyUnicode_EncodeUnicodeEscape:const char*:errors::
  1160. PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
  1161. PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
  1162. PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
  1163. PyUnicode_DecodeRawUnicodeEscape:const char*:s::
  1164. PyUnicode_DecodeRawUnicodeEscape:int:size::
  1165. PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
  1166. PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
  1167. PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
  1168. PyUnicode_EncodeRawUnicodeEscape:int:size::
  1169. PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
  1170. PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
  1171. PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
  1172. PyUnicode_DecodeLatin1:PyObject*::+1:
  1173. PyUnicode_DecodeLatin1:const char*:s::
  1174. PyUnicode_DecodeLatin1:int:size::
  1175. PyUnicode_DecodeLatin1:const char*:errors::
  1176. PyUnicode_EncodeLatin1:PyObject*::+1:
  1177. PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
  1178. PyUnicode_EncodeLatin1:int:size::
  1179. PyUnicode_EncodeLatin1:const char*:errors::
  1180. PyUnicode_AsLatin1String:PyObject*::+1:
  1181. PyUnicode_AsLatin1String:PyObject*:unicode::
  1182. PyUnicode_DecodeASCII:PyObject*::+1:
  1183. PyUnicode_DecodeASCII:const char*:s::
  1184. PyUnicode_DecodeASCII:int:size::
  1185. PyUnicode_DecodeASCII:const char*:errors::
  1186. PyUnicode_EncodeASCII:PyObject*::+1:
  1187. PyUnicode_EncodeASCII:const Py_UNICODE*:s::
  1188. PyUnicode_EncodeASCII:int:size::
  1189. PyUnicode_EncodeASCII:const char*:errors::
  1190. PyUnicode_AsASCIIString:PyObject*::+1:
  1191. PyUnicode_AsASCIIString:PyObject*:unicode::
  1192. PyUnicode_DecodeCharmap:PyObject*::+1:
  1193. PyUnicode_DecodeCharmap:const char*:s::
  1194. PyUnicode_DecodeCharmap:int:size::
  1195. PyUnicode_DecodeCharmap:PyObject*:mapping:0:
  1196. PyUnicode_DecodeCharmap:const char*:errors::
  1197. PyUnicode_EncodeCharmap:PyObject*::+1:
  1198. PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
  1199. PyUnicode_EncodeCharmap:int:size::
  1200. PyUnicode_EncodeCharmap:PyObject*:mapping:0:
  1201. PyUnicode_EncodeCharmap:const char*:errors::
  1202. PyUnicode_AsCharmapString:PyObject*::+1:
  1203. PyUnicode_AsCharmapString:PyObject*:unicode:0:
  1204. PyUnicode_AsCharmapString:PyObject*:mapping:0:
  1205. PyUnicode_TranslateCharmap:PyObject*::+1:
  1206. PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
  1207. PyUnicode_TranslateCharmap:int:size::
  1208. PyUnicode_TranslateCharmap:PyObject*:table:0:
  1209. PyUnicode_TranslateCharmap:const char*:errors::
  1210. PyUnicode_DecodeMBCS:PyObject*::+1:
  1211. PyUnicode_DecodeMBCS:const char*:s::
  1212. PyUnicode_DecodeMBCS:int:size::
  1213. PyUnicode_DecodeMBCS:const char*:errors::
  1214. PyUnicode_EncodeMBCS:PyObject*::+1:
  1215. PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
  1216. PyUnicode_EncodeMBCS:int:size::
  1217. PyUnicode_EncodeMBCS:const char*:errors::
  1218. PyUnicode_AsMBCSString:PyObject*::+1:
  1219. PyUnicode_AsMBCSString:PyObject*:unicode::
  1220. PyUnicode_Concat:PyObject*::+1:
  1221. PyUnicode_Concat:PyObject*:left:0:
  1222. PyUnicode_Concat:PyObject*:right:0:
  1223. PyUnicode_Split:PyObject*::+1:
  1224. PyUnicode_Split:PyObject*:left:0:
  1225. PyUnicode_Split:PyObject*:right:0:
  1226. PyUnicode_Split:int:maxsplit::
  1227. PyUnicode_Splitlines:PyObject*::+1:
  1228. PyUnicode_Splitlines:PyObject*:s:0:
  1229. PyUnicode_Splitlines:int:maxsplit::
  1230. PyUnicode_Translate:PyObject*::+1:
  1231. PyUnicode_Translate:PyObject*:str:0:
  1232. PyUnicode_Translate:PyObject*:table:0:
  1233. PyUnicode_Translate:const char*:errors::
  1234. PyUnicode_Join:PyObject*::+1:
  1235. PyUnicode_Join:PyObject*:separator:0:
  1236. PyUnicode_Join:PyObject*:seq:0:
  1237. PyUnicode_Tailmatch:int:::
  1238. PyUnicode_Tailmatch:PyObject*:str:0:
  1239. PyUnicode_Tailmatch:PyObject*:substr:0:
  1240. PyUnicode_Tailmatch:int:start::
  1241. PyUnicode_Tailmatch:int:end::
  1242. PyUnicode_Tailmatch:int:direction::
  1243. PyUnicode_Find:int:::
  1244. PyUnicode_Find:PyObject*:str:0:
  1245. PyUnicode_Find:PyObject*:substr:0:
  1246. PyUnicode_Find:int:start::
  1247. PyUnicode_Find:int:end::
  1248. PyUnicode_Find:int:direction::
  1249. PyUnicode_Count:int:::
  1250. PyUnicode_Count:PyObject*:str:0:
  1251. PyUnicode_Count:PyObject*:substr:0:
  1252. PyUnicode_Count:int:start::
  1253. PyUnicode_Count:int:end::
  1254. PyUnicode_Replace:PyObject*::+1:
  1255. PyUnicode_Replace:PyObject*:str:0:
  1256. PyUnicode_Replace:PyObject*:substr:0:
  1257. PyUnicode_Replace:PyObject*:replstr:0:
  1258. PyUnicode_Replace:int:maxcount::
  1259. PyUnicode_Compare:int:::
  1260. PyUnicode_Compare:PyObject*:left:0:
  1261. PyUnicode_Compare:PyObject*:right:0:
  1262. PyUnicode_Format:PyObject*::+1:
  1263. PyUnicode_Format:PyObject*:format:0:
  1264. PyUnicode_Format:PyObject*:args:0:
  1265. PyUnicode_Contains:int:::
  1266. PyUnicode_Contains:PyObject*:container:0:
  1267. PyUnicode_Contains:PyObject*:element:0:
  1268. PyWeakref_GET_OBJECT:PyObject*::0:
  1269. PyWeakref_GET_OBJECT:PyObject*:ref:0:
  1270. PyWeakref_GetObject:PyObject*::0:
  1271. PyWeakref_GetObject:PyObject*:ref:0:
  1272. PyWeakref_NewProxy:PyObject*::+1:
  1273. PyWeakref_NewProxy:PyObject*:ob:0:
  1274. PyWeakref_NewProxy:PyObject*:callback:0:
  1275. PyWeakref_NewRef:PyObject*::+1:
  1276. PyWeakref_NewRef:PyObject*:ob:0:
  1277. PyWeakref_NewRef:PyObject*:callback:0:
  1278. PyWrapper_New:PyObject*::+1:
  1279. PyWrapper_New:PyObject*:d:0:
  1280. PyWrapper_New:PyObject*:self:0:
  1281. Py_AtExit:int:::
  1282. Py_AtExit:void (*)():func::
  1283. Py_BuildValue:PyObject*::+1:
  1284. Py_BuildValue:char*:format::
  1285. Py_CompileString:PyObject*::+1:
  1286. Py_CompileString:char*:str::
  1287. Py_CompileString:char*:filename::
  1288. Py_CompileString:int:start::
  1289. Py_CompileStringFlags:PyObject*::+1:
  1290. Py_CompileStringFlags:char*:str::
  1291. Py_CompileStringFlags:char*:filename::
  1292. Py_CompileStringFlags:int:start::
  1293. Py_CompileStringFlags:PyCompilerFlags*:flags::
  1294. Py_DECREF:void:::
  1295. Py_DECREF:PyObject*:o:-1:
  1296. Py_EndInterpreter:void:::
  1297. Py_EndInterpreter:PyThreadState*:tstate::
  1298. Py_Exit:void:::
  1299. Py_Exit:int:status::
  1300. Py_FatalError:void:::
  1301. Py_FatalError:char*:message::
  1302. Py_FdIsInteractive:int:::
  1303. Py_FdIsInteractive:FILE*:fp::
  1304. Py_FdIsInteractive:char*:filename::
  1305. Py_Finalize:void:::
  1306. Py_FindMethod:PyObject*::+1:
  1307. Py_FindMethod:PyMethodDef[]:methods::
  1308. Py_FindMethod:PyObject*:self:+1:
  1309. Py_FindMethod:char*:name::
  1310. Py_GetBuildInfoconst:char*:::
  1311. Py_GetCompilerconst:char*:::
  1312. Py_GetCopyrightconst:char*:::
  1313. Py_GetExecPrefix:char*:::
  1314. Py_GetPath:char*:::
  1315. Py_GetPlatformconst:char*:::
  1316. Py_GetPrefix:char*:::
  1317. Py_GetProgramFullPath:char*:::
  1318. Py_GetProgramName:char*:::
  1319. Py_GetVersionconst:char*:::
  1320. Py_INCREF:void:::
  1321. Py_INCREF:PyObject*:o:+1:
  1322. Py_Initialize:void:::
  1323. Py_IsInitialized:int:::
  1324. Py_NewInterpreter:PyThreadState*:::
  1325. Py_SetProgramName:void:::
  1326. Py_SetProgramName:char*:name::
  1327. Py_XDECREF:void:::
  1328. Py_XDECREF:PyObject*:o:-1:if o is not NULL
  1329. Py_XINCREF:void:::
  1330. Py_XINCREF:PyObject*:o:+1:if o is not NULL
  1331. _PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
  1332. _PyImport_FindExtension:char*:::
  1333. _PyImport_FindExtension:char*:::
  1334. _PyImport_Fini:void:::
  1335. _PyImport_FixupExtension:PyObject*:::???
  1336. _PyImport_FixupExtension:char*:::
  1337. _PyImport_FixupExtension:char*:::
  1338. _PyImport_Init:void:::
  1339. _PyObject_Del:void:::
  1340. _PyObject_Del:PyObject*:op:0:
  1341. _PyObject_New:PyObject*::+1:
  1342. _PyObject_New:PyTypeObject*:type:0:
  1343. _PyObject_NewVar:PyObject*::+1:
  1344. _PyObject_NewVar:PyTypeObject*:type:0:
  1345. _PyObject_NewVar:int:size::
  1346. _PyString_Resize:int:::
  1347. _PyString_Resize:PyObject**:string:+1:
  1348. _PyString_Resize:int:newsize::
  1349. _PyTuple_Resize:int:::
  1350. _PyTuple_Resize:PyTupleObject**:p:+1:
  1351. _PyTuple_Resize:int:new::
  1352. _Py_c_diff:Py_complex:::
  1353. _Py_c_diff:Py_complex:left::
  1354. _Py_c_diff:Py_complex:right::
  1355. _Py_c_neg:Py_complex:::
  1356. _Py_c_neg:Py_complex:complex::
  1357. _Py_c_pow:Py_complex:::
  1358. _Py_c_pow:Py_complex:num::
  1359. _Py_c_pow:Py_complex:exp::
  1360. _Py_c_prod:Py_complex:::
  1361. _Py_c_prod:Py_complex:left::
  1362. _Py_c_prod:Py_complex:right::
  1363. _Py_c_quot:Py_complex:::
  1364. _Py_c_quot:Py_complex:dividend::
  1365. _Py_c_quot:Py_complex:divisor::
  1366. _Py_c_sum:Py_complex:::
  1367. _Py_c_sum:Py_complex:left::
  1368. _Py_c_sum:Py_complex:right::