1. 25fc088 bpo-38600: Change the mark up of NULL in the C API documentation. (GH-16950) by Serhiy Storchaka · 4 years, 9 months ago
  2. c4cacc8 Fix typos in comments, docs and test names (#15018) by Min ho Kim · 5 years ago
  3. 2ff58a2 bpo-37194: Add a new public PyObject_CallNoArgs() function (GH-13890) by Victor Stinner · 5 years ago
  4. 3c8724f bpo-33407: Implement Py_DEPRECATED() on MSVC (GH-8980) by Zackery Spytz · 5 years ago
  5. 4060283 bpo-35134: Create Include/cpython/abstract.h (GH-10728) by Victor Stinner · 6 years ago
  6. 5cbefa9 Clean up after bpo-33738. (GH-7627) by Serhiy Storchaka · 6 years ago
  7. 8398713 bpo-33738: Address review comments in GH #7477 (GH-7585) by Christian Tismer · 6 years ago
  8. ea62ce7 bpo-33738: Fix macros which contradict PEP 384 (GH-7477) by Christian Tismer · 6 years ago
  9. f5b1183 bpo-5945: Improve mappings and sequences C API docs. (GH-7029) by Serhiy Storchaka · 6 years ago
  10. 9508402 Fix PyObject_Hash signature in comment (#4905) by Andrew Svetlov · 7 years ago
  11. a5552f0 bpo-32240: Add the const qualifier to declarations of PyObject* array arguments. (#4746) by Serhiy Storchaka · 7 years ago
  12. 49b2734 Spelling fixes (#2902) by Ville Skyttä · 7 years ago
  13. 762bf40 bpo-29852: Argument Clinic Py_ssize_t converter now supports None (#716) by Serhiy Storchaka · 7 years ago
  14. 0f7b0b3 bpo-29735: Optimize partial_call(): avoid tuple (#516) by Victor Stinner · 7 years ago
  15. 516b981 Optimize slots: avoid temporary PyMethodObject by Victor Stinner · 7 years ago
  16. c3858bd Issue #29360: _PyStack_AsDict() doesn't check kwnames by Victor Stinner · 7 years ago
  17. 35ecebe Remove unused func parameter of _PyStack_UnpackDict() by Victor Stinner · 7 years ago
  18. 998c209 _PyStack_UnpackDict() now returns -1 on error by Victor Stinner · 7 years ago
  19. 3e1fad6 Rename _PyArg_ParseStack to _PyArg_ParseStackAndKeywords by Victor Stinner · 7 years ago
  20. 69de71b Add _PyStack_AsTupleSlice() helper by Victor Stinner · 7 years ago
  21. 434723f call_method() now uses _PyObject_FastCall() by Victor Stinner · 8 years ago
  22. a171a03 Issue #29058: All stable API extensions added after Python 3.2 are now by Serhiy Storchaka · 8 years ago
  23. 34d0ac8 Issue #29058: All stable API extensions added after Python 3.2 are now by Serhiy Storchaka · 8 years ago
  24. b6522d0 abstract.h: remove long outdated comment by Victor Stinner · 8 years ago
  25. bc08ab4 Add _PY_FASTCALL_SMALL_STACK constant by Victor Stinner · 8 years ago
  26. 5bef7cd Issue #28838: Cleanup abstract.h by Victor Stinner · 8 years ago
  27. 7f39c0c Add _PyObject_VaCallFunctionObjArgs() private function by Victor Stinner · 8 years ago
  28. 2a358f8 Issue #28838: Fix weird indentation of abstract.h by Victor Stinner · 8 years ago
  29. 2d0eb65 Uniformize argument names of "call" functions by Victor Stinner · 8 years ago
  30. 8907204 Fixed misplaced comment. by Serhiy Storchaka · 8 years ago
  31. b0f75c5 Fixed misplaced comment. by Serhiy Storchaka · 8 years ago
  32. e503126 Fixed misplaced comment. by Serhiy Storchaka · 8 years ago
  33. 7bfb42d Issue #28858: Remove _PyObject_CallArg1() macro by Victor Stinner · 8 years ago
  34. 7cf9e13 fix _PyObject_CallArg1 compiler warnings (closes #28855) by Benjamin Peterson · 8 years ago
  35. 8be1c39 Backed out changeset 7efddbf1aa70 by Victor Stinner · 8 years ago
  36. ebea998 Uniformize argument names of "call" functions by Victor Stinner · 8 years ago
  37. 460bd0d Issue #19569: Compiler warnings are now emitted if use most of deprecated by Serhiy Storchaka · 8 years ago
  38. 4781b59 Issues #25909, #28211: Restored correct documentation of PyMapping_Items, by Serhiy Storchaka · 8 years ago
  39. 1d480be Issues #25909, #28211: Restored correct documentation of PyMapping_Items, by Serhiy Storchaka · 8 years ago
  40. 57f91ac Document kwnames in _PyObject_FastCallKeywords() and _PyStack_AsDict() by Victor Stinner · 8 years ago
  41. b8d768b Revert change f860b7a775c5 by Victor Stinner · 8 years ago
  42. b1e169b ssue #27213: Reintroduce checks in _PyStack_AsDict() by Victor Stinner · 8 years ago
  43. b728105 Issue #27213: Fixed different issues with reworked CALL_FUNCTION* opcodes. by Serhiy Storchaka · 8 years ago
  44. 9fab79b Issue #26900: Excluded underscored names and other private API from limited API. by Serhiy Storchaka · 8 years ago
  45. a9efb2f Add METH_FASTCALL calling convention by Victor Stinner · 8 years ago
  46. ae8b69c Issue #27810: Add _PyCFunction_FastCallKeywords() by Victor Stinner · 8 years ago
  47. d873572 Add _PyObject_FastCallKeywords() by Victor Stinner · 8 years ago
  48. 0be894b Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Martin Panter · 8 years ago
  49. 15f44ab Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Raymond Hettinger · 8 years ago
  50. e90bdb1 Issue #27830: Revert, remove _PyFunction_FastCallKeywords() by Victor Stinner · 8 years ago
  51. 3f1057a method_call() and slot_tp_new() now uses fast call by Victor Stinner · 8 years ago
  52. 577e1f8 Add _PyObject_FastCallKeywords() by Victor Stinner · 8 years ago
  53. 74319ae Use Py_ssize_t type for number of arguments by Victor Stinner · 8 years ago
  54. 559bb6a Rename _PyObject_FastCall() to _PyObject_FastCallDict() by Victor Stinner · 8 years ago
  55. 8a31c82 Fix PyObject_Call() parameter names by Victor Stinner · 8 years ago
  56. 9be7e7b Add _PyObject_FastCall() by Victor Stinner · 8 years ago
  57. 1538b3d issue25909 - Correct the documentation of PyMapping_Items, PyMapping_Keys and by Senthil Kumaran · 8 years ago
  58. 45be8d6 Issue #25701: Document C API functions that both set and delete objects by Martin Panter · 9 years ago
  59. 2eb819f Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
  60. 7462b649 Issue #25523: Correct "a" article to "an" article by Martin Panter · 9 years ago
  61. efde146 Issue #23571: _Py_CheckFunctionResult() now gives the name of the function by Victor Stinner · 9 years ago
  62. 4a7cc88 Issue #23571: PyObject_Call(), PyCFunction_Call() and call_function() now by Victor Stinner · 9 years ago
  63. d51374e PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) by Benjamin Peterson · 10 years ago
  64. 7ddf3eb use imperative by Benjamin Peterson · 10 years ago
  65. 1c0689c Issue #19526: Exclude all new API from the stable ABI. by Martin v. Löwis · 11 years ago
  66. c679227 Issue #1772673: The type of `char*` arguments now changed to `const char*`. by Serhiy Storchaka · 11 years ago
  67. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  68. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  69. 1cfebc7 Issue #9369: The types of `char*` arguments of PyObject_CallFunction() and by Serhiy Storchaka · 11 years ago
  70. 865eaa1 Closes #17892: Fix the name of _PyObject_CallMethodObjIdArgs by Alexandre Vassalotti · 11 years ago
  71. 74b38b1 Issue #16148: Small improvements and cleanup. Added version information by Armin Ronacher · 12 years ago
  72. aa9a79d Issue #16148: implemented PEP 424 by Armin Ronacher · 12 years ago
  73. 7d12d9d Issue #12834: Fix PyBuffer_ToContiguous() for non-contiguous arrays. by Stefan Krah · 12 years ago
  74. fd07415 Issue #2377: Make importlib the implementation of __import__(). by Brett Cannon · 12 years ago
  75. b7f1da5 make _PyNumber_ConvertIntegralToInt static, since it's only used in abstract.c by Benjamin Peterson · 12 years ago
  76. 0644741 Fix a comment: PySequence_Fast() creates a list, not a tuple. by Larry Hastings · 12 years ago
  77. 9a2d99e - Issue #10181: New memoryview implementation fixes multiple ownership by Stefan Krah · 12 years ago
  78. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  79. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 13 years ago
  80. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  81. c83bc3c Remove buffer API from stable ABI for now, see #10181. by Martin v. Löwis · 14 years ago
  82. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  83. b83df8f Merged revisions 84391 via svnmerge from by Antoine Pitrou · 14 years ago
  84. f68c2a7 Issue #3101: Helper functions _add_one_to_C() and _add_one_to_F() become by Antoine Pitrou · 14 years ago
  85. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago
  86. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  87. fb94c5f * Replaces the internals of the subprocess module from fork through exec on by Gregory P. Smith · 14 years ago
  88. 514c368 Merged revisions 73735-73736 via svnmerge from by Georg Brandl · 15 years ago
  89. 16f7651 remove comment about PyNumber_Int by Benjamin Peterson · 15 years ago
  90. 7d5285e #6115: remove entries for the already removed PyNumber_Divide and PyNumber_InPlaceDivide from the header and the docs. by Georg Brandl · 15 years ago
  91. a9cab51 Issue #4910: PyNumber_Int is deprecated in 3.0.1; will be removed in 3.1. by Mark Dickinson · 15 years ago
  92. e836423 Issue 1242657: list(obj) can swallow KeyboardInterrupt. by Raymond Hettinger · 15 years ago
  93. f02e0aa Issue #1717: remove the cmp builtin function, the C-API functions by Mark Dickinson · 15 years ago
  94. f343e01 Merged revisions 68560 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
  95. d746768 Issue #4910: replace "long" with "int" in docstring for __long__ slot and by Mark Dickinson · 16 years ago
  96. ec569b7 Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as to by Antoine Pitrou · 16 years ago
  97. 423be95 Merged revisions 65654 via svnmerge from by Martin v. Löwis · 16 years ago
  98. 8fd3eba Fixes for shared 2.6 code that implements PEP 3101, advanced string formatting. by Eric Smith · 16 years ago
  99. 15ebc88 Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552-60567 via svnmerge from by Christian Heimes · 16 years ago
  100. c36625b Some VS 6.0 compatibility fixes from Hirokazu Yamamoto which are also useful for later versions of MSVC. VS6 claims that fortran is a reserved word by Christian Heimes · 17 years ago