1. 9508402 Fix PyObject_Hash signature in comment (#4905) by Andrew Svetlov · 7 years ago
  2. a5552f0 bpo-32240: Add the const qualifier to declarations of PyObject* array arguments. (#4746) by Serhiy Storchaka · 7 years ago
  3. 49b2734 Spelling fixes (#2902) by Ville Skyttä · 7 years ago
  4. 762bf40 bpo-29852: Argument Clinic Py_ssize_t converter now supports None (#716) by Serhiy Storchaka · 7 years ago
  5. 0f7b0b3 bpo-29735: Optimize partial_call(): avoid tuple (#516) by Victor Stinner · 7 years ago
  6. 516b981 Optimize slots: avoid temporary PyMethodObject by Victor Stinner · 7 years ago
  7. c3858bd Issue #29360: _PyStack_AsDict() doesn't check kwnames by Victor Stinner · 8 years ago
  8. 35ecebe Remove unused func parameter of _PyStack_UnpackDict() by Victor Stinner · 8 years ago
  9. 998c209 _PyStack_UnpackDict() now returns -1 on error by Victor Stinner · 8 years ago
  10. 3e1fad6 Rename _PyArg_ParseStack to _PyArg_ParseStackAndKeywords by Victor Stinner · 8 years ago
  11. 69de71b Add _PyStack_AsTupleSlice() helper by Victor Stinner · 8 years ago
  12. 434723f call_method() now uses _PyObject_FastCall() by Victor Stinner · 8 years ago
  13. a171a03 Issue #29058: All stable API extensions added after Python 3.2 are now by Serhiy Storchaka · 8 years ago
  14. 34d0ac8 Issue #29058: All stable API extensions added after Python 3.2 are now by Serhiy Storchaka · 8 years ago
  15. b6522d0 abstract.h: remove long outdated comment by Victor Stinner · 8 years ago
  16. bc08ab4 Add _PY_FASTCALL_SMALL_STACK constant by Victor Stinner · 8 years ago
  17. 5bef7cd Issue #28838: Cleanup abstract.h by Victor Stinner · 8 years ago
  18. 7f39c0c Add _PyObject_VaCallFunctionObjArgs() private function by Victor Stinner · 8 years ago
  19. 2a358f8 Issue #28838: Fix weird indentation of abstract.h by Victor Stinner · 8 years ago
  20. 2d0eb65 Uniformize argument names of "call" functions by Victor Stinner · 8 years ago
  21. 8907204 Fixed misplaced comment. by Serhiy Storchaka · 8 years ago
  22. b0f75c5 Fixed misplaced comment. by Serhiy Storchaka · 8 years ago
  23. e503126 Fixed misplaced comment. by Serhiy Storchaka · 8 years ago
  24. 7bfb42d Issue #28858: Remove _PyObject_CallArg1() macro by Victor Stinner · 8 years ago
  25. 7cf9e13 fix _PyObject_CallArg1 compiler warnings (closes #28855) by Benjamin Peterson · 8 years ago
  26. 8be1c39 Backed out changeset 7efddbf1aa70 by Victor Stinner · 8 years ago
  27. ebea998 Uniformize argument names of "call" functions by Victor Stinner · 8 years ago
  28. 460bd0d Issue #19569: Compiler warnings are now emitted if use most of deprecated by Serhiy Storchaka · 8 years ago
  29. 4781b59 Issues #25909, #28211: Restored correct documentation of PyMapping_Items, by Serhiy Storchaka · 8 years ago
  30. 1d480be Issues #25909, #28211: Restored correct documentation of PyMapping_Items, by Serhiy Storchaka · 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. 9fab79b Issue #26900: Excluded underscored names and other private API from limited API. by Serhiy Storchaka · 8 years ago
  36. a9efb2f Add METH_FASTCALL calling convention by Victor Stinner · 8 years ago
  37. ae8b69c Issue #27810: Add _PyCFunction_FastCallKeywords() by Victor Stinner · 8 years ago
  38. d873572 Add _PyObject_FastCallKeywords() by Victor Stinner · 8 years ago
  39. 0be894b Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Martin Panter · 8 years ago
  40. 15f44ab Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Raymond Hettinger · 8 years ago
  41. e90bdb1 Issue #27830: Revert, remove _PyFunction_FastCallKeywords() by Victor Stinner · 8 years ago
  42. 3f1057a method_call() and slot_tp_new() now uses fast call by Victor Stinner · 8 years ago
  43. 577e1f8 Add _PyObject_FastCallKeywords() by Victor Stinner · 8 years ago
  44. 74319ae Use Py_ssize_t type for number of arguments by Victor Stinner · 8 years ago
  45. 559bb6a Rename _PyObject_FastCall() to _PyObject_FastCallDict() by Victor Stinner · 8 years ago
  46. 8a31c82 Fix PyObject_Call() parameter names by Victor Stinner · 8 years ago
  47. 9be7e7b Add _PyObject_FastCall() by Victor Stinner · 8 years ago
  48. 1538b3d issue25909 - Correct the documentation of PyMapping_Items, PyMapping_Keys and by Senthil Kumaran · 9 years ago
  49. 45be8d6 Issue #25701: Document C API functions that both set and delete objects by Martin Panter · 9 years ago
  50. 2eb819f Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
  51. 7462b649 Issue #25523: Correct "a" article to "an" article by Martin Panter · 9 years ago
  52. efde146 Issue #23571: _Py_CheckFunctionResult() now gives the name of the function by Victor Stinner · 9 years ago
  53. 4a7cc88 Issue #23571: PyObject_Call(), PyCFunction_Call() and call_function() now by Victor Stinner · 9 years ago
  54. d51374e PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) by Benjamin Peterson · 10 years ago
  55. 7ddf3eb use imperative by Benjamin Peterson · 10 years ago
  56. 1c0689c Issue #19526: Exclude all new API from the stable ABI. by Martin v. Löwis · 11 years ago
  57. c679227 Issue #1772673: The type of `char*` arguments now changed to `const char*`. by Serhiy Storchaka · 11 years ago
  58. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  59. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  60. 1cfebc7 Issue #9369: The types of `char*` arguments of PyObject_CallFunction() and by Serhiy Storchaka · 11 years ago
  61. 865eaa1 Closes #17892: Fix the name of _PyObject_CallMethodObjIdArgs by Alexandre Vassalotti · 11 years ago
  62. 74b38b1 Issue #16148: Small improvements and cleanup. Added version information by Armin Ronacher · 12 years ago
  63. aa9a79d Issue #16148: implemented PEP 424 by Armin Ronacher · 12 years ago
  64. 7d12d9d Issue #12834: Fix PyBuffer_ToContiguous() for non-contiguous arrays. by Stefan Krah · 12 years ago
  65. fd07415 Issue #2377: Make importlib the implementation of __import__(). by Brett Cannon · 12 years ago
  66. b7f1da5 make _PyNumber_ConvertIntegralToInt static, since it's only used in abstract.c by Benjamin Peterson · 12 years ago
  67. 0644741 Fix a comment: PySequence_Fast() creates a list, not a tuple. by Larry Hastings · 12 years ago
  68. 9a2d99e - Issue #10181: New memoryview implementation fixes multiple ownership by Stefan Krah · 12 years ago
  69. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  70. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 13 years ago
  71. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  72. c83bc3c Remove buffer API from stable ABI for now, see #10181. by Martin v. Löwis · 14 years ago
  73. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  74. b83df8f Merged revisions 84391 via svnmerge from by Antoine Pitrou · 14 years ago
  75. f68c2a7 Issue #3101: Helper functions _add_one_to_C() and _add_one_to_F() become by Antoine Pitrou · 14 years ago
  76. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago
  77. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  78. fb94c5f * Replaces the internals of the subprocess module from fork through exec on by Gregory P. Smith · 14 years ago
  79. 514c368 Merged revisions 73735-73736 via svnmerge from by Georg Brandl · 15 years ago
  80. 16f7651 remove comment about PyNumber_Int by Benjamin Peterson · 15 years ago
  81. 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
  82. a9cab51 Issue #4910: PyNumber_Int is deprecated in 3.0.1; will be removed in 3.1. by Mark Dickinson · 15 years ago
  83. e836423 Issue 1242657: list(obj) can swallow KeyboardInterrupt. by Raymond Hettinger · 15 years ago
  84. f02e0aa Issue #1717: remove the cmp builtin function, the C-API functions by Mark Dickinson · 15 years ago
  85. f343e01 Merged revisions 68560 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
  86. d746768 Issue #4910: replace "long" with "int" in docstring for __long__ slot and by Mark Dickinson · 16 years ago
  87. ec569b7 Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as to by Antoine Pitrou · 16 years ago
  88. 423be95 Merged revisions 65654 via svnmerge from by Martin v. Löwis · 16 years ago
  89. 8fd3eba Fixes for shared 2.6 code that implements PEP 3101, advanced string formatting. by Eric Smith · 16 years ago
  90. 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
  91. 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
  92. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  93. 255f53b Merged revisions 59376-59406 via svnmerge from by Christian Heimes · 17 years ago
  94. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  95. 8ae62b6 Change PyBuffer to Py_buffer to be consistent with other non-object structures like Py_complex. Add some more functionality to the memoryview object. by Travis E. Oliphant · 17 years ago
  96. 54cf12b Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE. by Sean Reifscheider · 17 years ago
  97. b99f762 Merged in py3k-buffer branch to main line. All objects now use the buffer protocol in PEP 3118. by Travis E. Oliphant · 17 years ago
  98. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  99. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  100. cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 17 years ago