1. bf8e82f [3.8] bpo-36974: separate vectorcall functions for each calling convention (GH-13781) (#14782) by Jeroen Demeyer · 5 years ago
  2. 530f506 bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464) by Jeroen Demeyer · 5 years ago
  3. 37788bc bpo-36974: rename _FastCallKeywords -> _Vectorcall (GH-13653) by Jeroen Demeyer · 5 years ago
  4. aacc77f bpo-36974: implement PEP 590 (GH-13185) by Jeroen Demeyer · 5 years ago
  5. bb86bf4 bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11047) by Serhiy Storchaka · 6 years ago
  6. b509d52 bpo-35059: PyObject_INIT() casts to PyObject* (GH-10674) by Victor Stinner · 6 years ago
  7. bcda8f1 bpo-35081: Add Include/internal/pycore_object.h (GH-10640) by Victor Stinner · 6 years ago
  8. 621cebe bpo-35081: Rename internal headers (GH-10275) by Victor Stinner · 6 years ago
  9. 27e2d1f bpo-35081: Add pycore_ prefix to internal header files (GH-10263) by Victor Stinner · 6 years ago
  10. b4435e2 bpo-35059: Convert PyObject_INIT() to function (GH-10077) by Victor Stinner · 6 years ago
  11. e502451 closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218) by Benjamin Peterson · 6 years ago
  12. 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
  13. 55edd0c bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030) by Siddhesh Poyarekar · 6 years ago
  14. 2ebc5ce bpo-30860: Consolidate stateful runtime globals. (#3397) by Eric Snow · 7 years ago
  15. c22bfaa bpo-29524: Add Objects/call.c file (#12) by Victor Stinner · 7 years ago
  16. d2306ce Backed out changeset f23fa1f7b68f by Victor Stinner · 7 years ago
  17. 766af55 Issue #29465: Add Objects/call.c file by Victor Stinner · 7 years ago
  18. 12c5838 Fix PyCFunction_Call() performance issue by Victor Stinner · 7 years ago
  19. 7399a05 Issue #29306: Fix usage of Py_EnterRecursiveCall() by Victor Stinner · 7 years ago
  20. 5566bbb Issue #29263: LOAD_METHOD support for C methods by INADA Naoki · 7 years ago
  21. 0a2e468 Cleanup _PyMethodDef_RawFastCallDict() by Victor Stinner · 8 years ago
  22. a8cb515 Rephrase !PyErr_Occurred() comment: may=>can by Victor Stinner · 8 years ago
  23. c89ef82 PyCFunction_Call() now calls _PyCFunction_FastCallDict() by Victor Stinner · 8 years ago
  24. 250e4b0 Fix _PyMethodDef_RawFastCallDict() argument parsing by Victor Stinner · 8 years ago
  25. c525723 Optimize methoddescr_call(): avoid temporary PyCFunction by Victor Stinner · 8 years ago
  26. 35ecebe Remove unused func parameter of _PyStack_UnpackDict() by Victor Stinner · 8 years ago
  27. 998c209 _PyStack_UnpackDict() now returns -1 on error by Victor Stinner · 8 years ago
  28. 7fc252a Optimize _PyCFunction_FastCallKeywords() by Victor Stinner · 8 years ago
  29. 5ab81d7 Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of dict. by Serhiy Storchaka · 8 years ago
  30. 476bd5e Fix warning in _PyCFunction_FastCallKeywords() by Victor Stinner · 8 years ago
  31. 57f91ac Document kwnames in _PyObject_FastCallKeywords() and _PyStack_AsDict() by Victor Stinner · 8 years ago
  32. b8d768b Revert change f860b7a775c5 by Victor Stinner · 8 years ago
  33. b1e169b ssue #27213: Reintroduce checks in _PyStack_AsDict() by Victor Stinner · 8 years ago
  34. b728105 Issue #27213: Fixed different issues with reworked CALL_FUNCTION* opcodes. by Serhiy Storchaka · 8 years ago
  35. a9efb2f Add METH_FASTCALL calling convention by Victor Stinner · 8 years ago
  36. ae8b69c Issue #27810: Add _PyCFunction_FastCallKeywords() by Victor Stinner · 8 years ago
  37. 74319ae Use Py_ssize_t type for number of arguments by Victor Stinner · 8 years ago
  38. b900939 _PyFunction_FastCallDict() supports keyword args by Victor Stinner · 8 years ago
  39. 9be7e7b Add _PyObject_FastCall() by Victor Stinner · 8 years ago
  40. ec1aa5c More typos in 3.5 documentation and comments by Martin Panter · 9 years ago
  41. 48050cb Merge 3.4 by Andrew Svetlov · 9 years ago
  42. 9df36c9 Issue #21354: PyCFunction_New function is exposed by python DLL again. by Andrew Svetlov · 9 years ago
  43. efde146 Issue #23571: _Py_CheckFunctionResult() now gives the name of the function by Victor Stinner · 9 years ago
  44. 4a7cc88 Issue #23571: PyObject_Call(), PyCFunction_Call() and call_function() now by Victor Stinner · 9 years ago
  45. 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
  46. 2623c8c Issue #20530: Argument Clinic's signature format has been revised again. by Larry Hastings · 10 years ago
  47. 581ee36 Issue #20326: Argument Clinic now uses a simple, unique signature to by Larry Hastings · 10 years ago
  48. 5c66189 Issue #20189: Four additional builtin types (PyTypeObject, by Larry Hastings · 10 years ago
  49. d3afe78 Silence expression result unused warnings with clang. by Christian Heimes · 11 years ago
  50. 4c05d3b Make built-in methods picklable through the reduce protocol. by Alexandre Vassalotti · 11 years ago
  51. 44e2eaa Issue #19674: inspect.signature() now produces a correct signature by Larry Hastings · 11 years ago
  52. 9035ad9 Issue #18408: In debug mode, PyCFunction_Call() now checks if an exception was by Victor Stinner · 11 years ago
  53. dc040f0 Fix supernumerary 's' in sys._debugmallocstats() output. by Antoine Pitrou · 11 years ago
  54. 36b045f Fix supernumerary 's' in sys._debugmallocstats() output. by Antoine Pitrou · 11 years ago
  55. a2678f3 Fix the advertised size of PyCFunctionObjects in sys._debugmallocstats(). by Antoine Pitrou · 12 years ago
  56. 0811f98 Fix the advertised size of PyCFunctionObjects in sys._debugmallocstats(). by Antoine Pitrou · 12 years ago
  57. 4de2924 Fix compilation error for #15422 by Andrew Svetlov · 12 years ago
  58. 3ba3a3e Issue #15422: get rid of PyCFunction_New macro by Andrew Svetlov · 12 years ago
  59. 49526f4 Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allocation issues by David Malcolm · 12 years ago
  60. 5b62942 Issue #13577: Built-in methods and functions now have a __qualname__. by Antoine Pitrou · 13 years ago
  61. dfc80e3 Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. by Brian Curtin · 13 years ago
  62. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  63. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  64. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago
  65. 1f900f1 #3247: get rid of Py_FindMethod by Amaury Forgeot d'Arc · 16 years ago
  66. 55b69e7 Oops, forgot that there are modules outside the win32 world. by Amaury Forgeot d'Arc · 16 years ago
  67. ba4105c #3247: Get rid of Py_FindMethod: by Amaury Forgeot d'Arc · 16 years ago
  68. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  69. 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 · 16 years ago
  70. 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 · 16 years ago
  71. bce52be Fixed some build issues and updated docs. by Christian Heimes · 17 years ago
  72. f2fc934 Get rid of METH_OLDARGS. by Georg Brandl · 17 years ago
  73. 928115a CFunctions' doc strings should be Unicode. by Guido van Rossum · 17 years ago
  74. 8dfc4a9 Remove support for __members__ and __methods__. There still might be by Neal Norwitz · 17 years ago
  75. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  76. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  77. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  78. a8add0e Merged revisions 55270-55324 via svnmerge from by Guido van Rossum · 17 years ago
  79. 47b9ff6 Restructure comparison dramatically. There is no longer a default by Guido van Rossum · 18 years ago
  80. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  81. eb079f1 Use Py_ssize_t for counts and sizes. Convert Py_ssize_t using PyInt_FromSsize_t by Martin v. Löwis · 18 years ago
  82. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  83. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  84. 8f5cdaa * Added a new method flag, METH_COEXIST. by Raymond Hettinger · 21 years ago
  85. 6b29c01 Make __module__ writable except in restricted mode (like for classic classes). by Guido van Rossum · 21 years ago
  86. ff71c98 Make __module__ settable on functions and methods. by Jeremy Hylton · 21 years ago
  87. 4f0dcc9 Provide __module__ attributes for functions defined in C and Python. by Jeremy Hylton · 21 years ago
  88. 541ceec PyCFunction_Call(): Combined two switch cases w/ identical bodies. by Tim Peters · 22 years ago
  89. bf43f8a SF Patch #661440: Refactor and streamline PyCFunction_Call by Raymond Hettinger · 22 years ago
  90. 7bf9715 Introduce two new flag bits that can be set in a PyMethodDef method by Fred Drake · 22 years ago
  91. d91eec9 Re-enable GC of method objects. by Neil Schemenauer · 22 years ago
  92. 32d34c8 Add optional docstrings to getset descriptors. Fortunately, there's by Guido van Rossum · 23 years ago
  93. 38b88c2 Removed some unreachable break statements to silence SGI compiler. by Sjoerd Mullender · 23 years ago
  94. 7ce3694 repr's converted to using PyString_FromFormat() instead of sprintf'ing by Barry Warsaw · 23 years ago
  95. e3eb1f2 Patch #427190: Implement and use METH_NOARGS and METH_O. by Martin v. Löwis · 23 years ago
  96. 910d7d4 Remove much dead code from ceval.c by Jeremy Hylton · 23 years ago
  97. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  98. 10c6692 GC for method objects. by Neil Schemenauer · 23 years ago
  99. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  100. ee238b9 ANSI-fication of the sources. by Fred Drake · 24 years ago