1. 04b8631 bpo-42015: Reorder dereferencing calls in meth_dealloc, to make sure m_self is kept alive long enough (GH-22670) by Yannick Jadoul · 3 years, 11 months ago
  2. e1becf4 bpo-38787: C API for module state access from extension methods (PEP 573) (GH-19936) by Petr Viktorin · 4 years, 4 months ago
  3. d9ea5ca bpo-40268: Remove unused pycore_pymem.h includes (GH-19531) by Victor Stinner · 4 years, 5 months ago
  4. 4a21e57 bpo-40268: Remove unused structmember.h includes (GH-19530) by Victor Stinner · 4 years, 5 months ago
  5. e5014be bpo-40268: Remove a few pycore_pystate.h includes (GH-19510) by Victor Stinner · 4 years, 5 months ago
  6. 224481a bpo-39947: Move Py_EnterRecursiveCall() to internal C API (GH-18972) by Victor Stinner · 4 years, 6 months ago
  7. c7d2d69 bpo-39884: Add method name in "bad call flags" error (GH-18944) by Victor Stinner · 4 years, 6 months ago
  8. 24bba8c bpo-36347: stop using RESTRICTED constants (GH-12684) by Jeroen Demeyer · 4 years, 7 months ago
  9. ffd9753 bpo-39245: Switch to public API for Vectorcall (GH-18460) by Petr Viktorin · 4 years, 7 months ago
  10. 58ac700 bpo-39573: Use Py_TYPE() macro in Objects directory (GH-18392) by Victor Stinner · 4 years, 7 months ago
  11. 4dedd0f bpo-37340: Remove PyMethod_ClearFreeList() and PyCFunction_ClearFreeList() (GH-17284) by Victor Stinner · 4 years, 10 months ago
  12. bf17d41 bpo-37645: add new function _PyObject_FunctionStr() (GH-14890) by Jeroen Demeyer · 4 years, 10 months ago
  13. 1726909 bpo-38644: Pass tstate to _Py_CheckFunctionResult() (GH-17050) by Victor Stinner · 4 years, 10 months ago
  14. be434dc bpo-38644: Pass tstate to Py_EnterRecursiveCall() (GH-16997) by Victor Stinner · 4 years, 10 months ago
  15. 7a6873c bpo-37151: remove special case for PyCFunction from PyObject_Call (GH-14684) by Jeroen Demeyer · 5 years ago
  16. bed4817 Make PyXXX_Fini() functions private (GH-15531) by Victor Stinner · 5 years ago
  17. 3e54b57 bpo-37340: remove free_list for bound method objects (GH-14232) by Inada Naoki · 5 years ago
  18. 0d722f3 bpo-36974: separate vectorcall functions for each calling convention (GH-13781) by Jeroen Demeyer · 5 years ago
  19. 530f506 bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464) by Jeroen Demeyer · 5 years ago
  20. 37788bc bpo-36974: rename _FastCallKeywords -> _Vectorcall (GH-13653) by Jeroen Demeyer · 5 years ago
  21. aacc77f bpo-36974: implement PEP 590 (GH-13185) by Jeroen Demeyer · 5 years ago
  22. bb86bf4 bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11047) by Serhiy Storchaka · 6 years ago
  23. b509d52 bpo-35059: PyObject_INIT() casts to PyObject* (GH-10674) by Victor Stinner · 6 years ago
  24. bcda8f1 bpo-35081: Add Include/internal/pycore_object.h (GH-10640) by Victor Stinner · 6 years ago
  25. 621cebe bpo-35081: Rename internal headers (GH-10275) by Victor Stinner · 6 years ago
  26. 27e2d1f bpo-35081: Add pycore_ prefix to internal header files (GH-10263) by Victor Stinner · 6 years ago
  27. b4435e2 bpo-35059: Convert PyObject_INIT() to function (GH-10077) by Victor Stinner · 6 years ago
  28. e502451 closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218) by Benjamin Peterson · 6 years ago
  29. ac20e0f bpo-1617161: Make the hash and equality of methods not depending on the value of self. (GH-7848) by Serhiy Storchaka · 6 years ago
  30. 55edd0c bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030) by Siddhesh Poyarekar · 6 years ago
  31. 2ebc5ce bpo-30860: Consolidate stateful runtime globals. (#3397) by Eric Snow · 7 years ago
  32. c22bfaa bpo-29524: Add Objects/call.c file (#12) by Victor Stinner · 8 years ago
  33. d2306ce Backed out changeset f23fa1f7b68f by Victor Stinner · 8 years ago
  34. 766af55 Issue #29465: Add Objects/call.c file by Victor Stinner · 8 years ago
  35. 12c5838 Fix PyCFunction_Call() performance issue by Victor Stinner · 8 years ago
  36. 7399a05 Issue #29306: Fix usage of Py_EnterRecursiveCall() by Victor Stinner · 8 years ago
  37. 5566bbb Issue #29263: LOAD_METHOD support for C methods by INADA Naoki · 8 years ago
  38. 0a2e468 Cleanup _PyMethodDef_RawFastCallDict() by Victor Stinner · 8 years ago
  39. a8cb515 Rephrase !PyErr_Occurred() comment: may=>can by Victor Stinner · 8 years ago
  40. c89ef82 PyCFunction_Call() now calls _PyCFunction_FastCallDict() by Victor Stinner · 8 years ago
  41. 250e4b0 Fix _PyMethodDef_RawFastCallDict() argument parsing by Victor Stinner · 8 years ago
  42. c525723 Optimize methoddescr_call(): avoid temporary PyCFunction by Victor Stinner · 8 years ago
  43. 35ecebe Remove unused func parameter of _PyStack_UnpackDict() by Victor Stinner · 8 years ago
  44. 998c209 _PyStack_UnpackDict() now returns -1 on error by Victor Stinner · 8 years ago
  45. 7fc252a Optimize _PyCFunction_FastCallKeywords() by Victor Stinner · 8 years ago
  46. 5ab81d7 Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of dict. by Serhiy Storchaka · 8 years ago
  47. 476bd5e Fix warning in _PyCFunction_FastCallKeywords() by Victor Stinner · 8 years ago
  48. 57f91ac Document kwnames in _PyObject_FastCallKeywords() and _PyStack_AsDict() by Victor Stinner · 8 years ago
  49. b8d768b Revert change f860b7a775c5 by Victor Stinner · 8 years ago
  50. b1e169b ssue #27213: Reintroduce checks in _PyStack_AsDict() by Victor Stinner · 8 years ago
  51. b728105 Issue #27213: Fixed different issues with reworked CALL_FUNCTION* opcodes. by Serhiy Storchaka · 8 years ago
  52. a9efb2f Add METH_FASTCALL calling convention by Victor Stinner · 8 years ago
  53. ae8b69c Issue #27810: Add _PyCFunction_FastCallKeywords() by Victor Stinner · 8 years ago
  54. 74319ae Use Py_ssize_t type for number of arguments by Victor Stinner · 8 years ago
  55. b900939 _PyFunction_FastCallDict() supports keyword args by Victor Stinner · 8 years ago
  56. 9be7e7b Add _PyObject_FastCall() by Victor Stinner · 8 years ago
  57. ec1aa5c More typos in 3.5 documentation and comments by Martin Panter · 9 years ago
  58. 48050cb Merge 3.4 by Andrew Svetlov · 9 years ago
  59. 9df36c9 Issue #21354: PyCFunction_New function is exposed by python DLL again. by Andrew Svetlov · 9 years ago
  60. efde146 Issue #23571: _Py_CheckFunctionResult() now gives the name of the function by Victor Stinner · 9 years ago
  61. 4a7cc88 Issue #23571: PyObject_Call(), PyCFunction_Call() and call_function() now by Victor Stinner · 9 years ago
  62. b349e4c Issue #22116: C functions and methods (of the 'builtin_function_or_method' type) can now be weakref'ed. Patch by Wei Wu. by Antoine Pitrou · 10 years ago
  63. 2623c8c Issue #20530: Argument Clinic's signature format has been revised again. by Larry Hastings · 11 years ago
  64. 581ee36 Issue #20326: Argument Clinic now uses a simple, unique signature to by Larry Hastings · 11 years ago
  65. 5c66189 Issue #20189: Four additional builtin types (PyTypeObject, by Larry Hastings · 11 years ago
  66. d3afe78 Silence expression result unused warnings with clang. by Christian Heimes · 11 years ago
  67. 4c05d3b Make built-in methods picklable through the reduce protocol. by Alexandre Vassalotti · 11 years ago
  68. 44e2eaa Issue #19674: inspect.signature() now produces a correct signature by Larry Hastings · 11 years ago
  69. 9035ad9 Issue #18408: In debug mode, PyCFunction_Call() now checks if an exception was by Victor Stinner · 11 years ago
  70. dc040f0 Fix supernumerary 's' in sys._debugmallocstats() output. by Antoine Pitrou · 11 years ago
  71. 36b045f Fix supernumerary 's' in sys._debugmallocstats() output. by Antoine Pitrou · 11 years ago
  72. a2678f3 Fix the advertised size of PyCFunctionObjects in sys._debugmallocstats(). by Antoine Pitrou · 12 years ago
  73. 0811f98 Fix the advertised size of PyCFunctionObjects in sys._debugmallocstats(). by Antoine Pitrou · 12 years ago
  74. 4de2924 Fix compilation error for #15422 by Andrew Svetlov · 12 years ago
  75. 3ba3a3e Issue #15422: get rid of PyCFunction_New macro by Andrew Svetlov · 12 years ago
  76. 49526f4 Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allocation issues by David Malcolm · 12 years ago
  77. 5b62942 Issue #13577: Built-in methods and functions now have a __qualname__. by Antoine Pitrou · 13 years ago
  78. dfc80e3 Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. by Brian Curtin · 13 years ago
  79. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  80. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  81. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 16 years ago
  82. 1f900f1 #3247: get rid of Py_FindMethod by Amaury Forgeot d'Arc · 16 years ago
  83. 55b69e7 Oops, forgot that there are modules outside the win32 world. by Amaury Forgeot d'Arc · 16 years ago
  84. ba4105c #3247: Get rid of Py_FindMethod: by Amaury Forgeot d'Arc · 16 years ago
  85. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  86. a156e09 Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60845 via svnmerge from by Christian Heimes · 17 years ago
  87. 2202f87 Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60568-60598,60600-60616 via svnmerge from by Christian Heimes · 17 years ago
  88. bce52be Fixed some build issues and updated docs. by Christian Heimes · 17 years ago
  89. f2fc934 Get rid of METH_OLDARGS. by Georg Brandl · 17 years ago
  90. 928115a CFunctions' doc strings should be Unicode. by Guido van Rossum · 17 years ago
  91. 8dfc4a9 Remove support for __members__ and __methods__. There still might be by Neal Norwitz · 17 years ago
  92. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  93. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  94. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  95. a8add0e Merged revisions 55270-55324 via svnmerge from by Guido van Rossum · 17 years ago
  96. 47b9ff6 Restructure comparison dramatically. There is no longer a default by Guido van Rossum · 18 years ago
  97. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  98. eb079f1 Use Py_ssize_t for counts and sizes. Convert Py_ssize_t using PyInt_FromSsize_t by Martin v. Löwis · 19 years ago
  99. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  100. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago