1. 14e6d09 Remove useless variable initialization by Victor Stinner · 9 years ago
  2. 5abaa2b Use PyObject_CallFunctionObjArgs() by Victor Stinner · 9 years ago
  3. 7f39c0c Add _PyObject_VaCallFunctionObjArgs() private function by Victor Stinner · 9 years ago
  4. ef7def9 _PyObject_CallFunctionVa() uses fast call by Victor Stinner · 9 years ago
  5. e83aab1 Add _PyObject_CallFunctionVa() helper by Victor Stinner · 9 years ago
  6. 3bb7119 Add _PyObject_FastCallVa() helper by Victor Stinner · 9 years ago
  7. f2d568f _PyObject_FastCallKeywords() now calls directly tp_call by Victor Stinner · 9 years ago
  8. 2f35ca3 Fix typo in a comment of abstract.c by Victor Stinner · 9 years ago
  9. f17c3de Use _PyObject_CallNoArg() by Victor Stinner · 9 years ago
  10. 2d0eb65 Uniformize argument names of "call" functions by Victor Stinner · 9 years ago
  11. 7bfb42d Issue #28858: Remove _PyObject_CallArg1() macro by Victor Stinner · 9 years ago
  12. de4ae3d Backed out changeset b9c9691c72c5 by Victor Stinner · 9 years ago
  13. 27580c1 Replace PyObject_CallFunctionObjArgs() with fastcall by Victor Stinner · 9 years ago
  14. 8be1c39 Backed out changeset 7efddbf1aa70 by Victor Stinner · 9 years ago
  15. ebea998 Uniformize argument names of "call" functions by Victor Stinner · 9 years ago
  16. 460bd0d Issue #19569: Compiler warnings are now emitted if use most of deprecated by Serhiy Storchaka · 9 years ago
  17. 467ab19 Issue #28410: Added _PyErr_FormatFromCause() -- the helper for raising by Serhiy Storchaka · 9 years ago
  18. 7b7228a remove unneeded cast by Benjamin Peterson · 9 years ago
  19. 2f2fee1 va_end() all va_copy()ed va_lists. by Christian Heimes · 9 years ago
  20. 0c21214 replace usage of Py_VA_COPY with the (C99) standard va_copy by Benjamin Peterson · 9 years ago
  21. f051e43 Issue #28126: Replace Py_MEMCPY with memcpy(). Visual Studio can properly optimize memcpy(). by Christian Heimes · 9 years ago
  22. 57f91ac Document kwnames in _PyObject_FastCallKeywords() and _PyStack_AsDict() by Victor Stinner · 9 years ago
  23. b8d768b Revert change f860b7a775c5 by Victor Stinner · 9 years ago
  24. b1e169b ssue #27213: Reintroduce checks in _PyStack_AsDict() by Victor Stinner · 9 years ago
  25. b728105 Issue #27213: Fixed different issues with reworked CALL_FUNCTION* opcodes. by Serhiy Storchaka · 9 years ago
  26. a9efb2f Add METH_FASTCALL calling convention by Victor Stinner · 9 years ago
  27. ae8b69c Issue #27810: Add _PyCFunction_FastCallKeywords() by Victor Stinner · 9 years ago
  28. d873572 Add _PyObject_FastCallKeywords() by Victor Stinner · 9 years ago
  29. ea525a2 Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation. by Serhiy Storchaka · 9 years ago
  30. 2250c4c Issue #27830: Remove unused _PyStack_AsDict() by Victor Stinner · 9 years ago
  31. e90bdb1 Issue #27830: Revert, remove _PyFunction_FastCallKeywords() by Victor Stinner · 9 years ago
  32. 3f1057a method_call() and slot_tp_new() now uses fast call by Victor Stinner · 9 years ago
  33. f7507dd Issue #27830: Fix _PyObject_FastCallKeywords() by Victor Stinner · 9 years ago
  34. 53cb489 _PyObject_FastCallDict(): avoid _Py_CheckFunctionResult() by Victor Stinner · 9 years ago
  35. 577e1f8 Add _PyObject_FastCallKeywords() by Victor Stinner · 9 years ago
  36. 74319ae Use Py_ssize_t type for number of arguments by Victor Stinner · 9 years ago
  37. dd69564 PyObject_CallMethodObjArgs() now uses fast call by Victor Stinner · 9 years ago
  38. d48af09 Backed out changeset 0e4f26083bbb (PyObject_CallMethodObjArgs) by Victor Stinner · 9 years ago
  39. e62b852 PyObject_CallMethodObjArgs() now uses fast call by Victor Stinner · 9 years ago
  40. b900939 _PyFunction_FastCallDict() supports keyword args by Victor Stinner · 9 years ago
  41. 559bb6a Rename _PyObject_FastCall() to _PyObject_FastCallDict() by Victor Stinner · 9 years ago
  42. 54cd196 Issue #26984: int() now always returns an instance of exact int. by Serhiy Storchaka · 9 years ago
  43. 8a31c82 Fix PyObject_Call() parameter names by Victor Stinner · 9 years ago
  44. 0d1a799 Avoid call_function_tail() for empty format str by Victor Stinner · 9 years ago
  45. 71aea8e PEP 7: add {...} around null_error() in abstract.c by Victor Stinner · 9 years ago
  46. d042f1f Cleanup callmethod() by Victor Stinner · 9 years ago
  47. 64faad6 Cleanup call_function_tail() by Victor Stinner · 9 years ago
  48. 8880708 call_function_tail() uses fast call by Victor Stinner · 9 years ago
  49. 9be7e7b Add _PyObject_FastCall() by Victor Stinner · 9 years ago
  50. 32d2ce3 Issue #27581: Merge overflow fix from 3.5 by Martin Panter · 9 years ago
  51. e8db861 Issue #27581: Don’t rely on overflow wrapping in PySequence_Tuple() by Martin Panter · 9 years ago
  52. 590dcab Merge spelling fixes from 3.5 by Martin Panter · 9 years ago
  53. 2275e62 Fix spelling errors in code comments by Martin Panter · 9 years ago
  54. 5697c4b Comment fixes extracted from patch by Demur Rumed. by Serhiy Storchaka · 9 years ago
  55. 16931c3 Issue #26983: float() now always return an instance of exact float. by Serhiy Storchaka · 9 years ago
  56. 9513ba3 Issue #24802: Merge null termination fixes from 3.5 by Martin Panter · 10 years ago
  57. 61d6e4a Issue #24802: Merge null termination fixes from 3.4 into 3.5 by Martin Panter · 10 years ago
  58. eeb896c Issue #24802: Copy bytes-like objects to null-terminated buffers if necessary by Martin Panter · 10 years ago
  59. e20310f Issue #25556: Add assertions to PyObject_GetItem() to ensure that an exception by Victor Stinner · 10 years ago
  60. 2eb819f Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 by Martin Panter · 10 years ago
  61. 7462b649 Issue #25523: Correct "a" article to "an" article by Martin Panter · 10 years ago
  62. ec1aa5c More typos in 3.5 documentation and comments by Martin Panter · 10 years ago
  63. 740d613 merge by Raymond Hettinger · 10 years ago
  64. 610a51f Issue #23757: Only call the concrete list API for exact lists. by Raymond Hettinger · 10 years ago
  65. 944fbcc Issue #23571: Enhance _Py_CheckFunctionResult() by Victor Stinner · 10 years ago
  66. 3b06dfb Issue #23571: In debug mode, _Py_CheckFunctionResult() now calls by Victor Stinner · 10 years ago
  67. efde146 Issue #23571: _Py_CheckFunctionResult() now gives the name of the function by Victor Stinner · 10 years ago
  68. 283f3f8 Issue #23571: Oops, fix #ifdef assert() by Victor Stinner · 10 years ago
  69. 4a7cc88 Issue #23571: PyObject_Call(), PyCFunction_Call() and call_function() now by Victor Stinner · 10 years ago
  70. 5178d91 Issue #14203: Remove obsolete support for view==NULL in PyBuffer_FillInfo() by Stefan Krah · 11 years ago
  71. 3dd3e26 Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() by Serhiy Storchaka · 11 years ago
  72. 4fdb684 Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() by Serhiy Storchaka · 11 years ago
  73. 2e6658b Merge from 3.4. by Stefan Krah · 11 years ago
  74. 7213fcc Issue #23370: Fix off-by-one error for non-contiguous buffers. by Stefan Krah · 11 years ago
  75. 363af44 Issue #22445: PyBuffer_IsContiguous() now implements precise contiguity by Stefan Krah · 11 years ago
  76. b95b561 Issue20284: Implement PEP461 by Ethan Furman · 11 years ago
  77. 861470c #16518: Bring error messages in harmony with docs ("bytes-like object") by R David Murray · 11 years ago
  78. 72b8a80 Closes #22540: speed up PyObject_IsInstance and PyObject_IsSubclass in the common case that the second argument has metaclass "type". by Georg Brandl · 11 years ago
  79. 8f4ec8d Issue #22290: PyObject_Call() now fails with an assertion error when called by Victor Stinner · 11 years ago
  80. 3cbae68 merge 3.4 by Benjamin Peterson · 11 years ago
  81. 1791c22 use NULL not 0 by Benjamin Peterson · 11 years ago
  82. d51374e PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) by Benjamin Peterson · 11 years ago
  83. 4ac9c00 Better assertion in PyObject_Call() to detect functions returning a result with by Victor Stinner · 12 years ago
  84. c4f3212 Issue #17576: Deprecation warning emitted now when __int__() or __index__() by Serhiy Storchaka · 12 years ago
  85. 31a6554 Issue #17576: Deprecation warning emitted now when __int__() or __index__() by Serhiy Storchaka · 12 years ago
  86. 0b0c867 Issue #19437: Fix PyObject_CallFunction(), handle Py_VaBuildValue() and by Victor Stinner · 12 years ago
  87. f740d46 Issue #19369: Optimized the usage of __length_hint__(). by Serhiy Storchaka · 12 years ago
  88. c679227 Issue #1772673: The type of `char*` arguments now changed to `const char*`. by Serhiy Storchaka · 12 years ago
  89. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 12 years ago
  90. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 12 years ago
  91. 579ddc2 Issue #16741: Fix an error reporting in int(). by Serhiy Storchaka · 12 years ago
  92. f6d0aee Issue #16741: Fix an error reporting in int(). by Serhiy Storchaka · 12 years ago
  93. f243ee4 Issue #18408: add more assertions on PyErr_Occurred() in ceval.c to detect bugs by Victor Stinner · 12 years ago
  94. 3de5869 Issue #18408: PyObject_Call() now fails with an assertion error in debug mode by Victor Stinner · 12 years ago
  95. 0e2d3cf Issue #18203: Replace malloc() with PyMem_Malloc() in _PySequence_BytesToCharpArray() by Victor Stinner · 12 years ago
  96. 1cfebc7 Issue #9369: The types of `char*` arguments of PyObject_CallFunction() and by Serhiy Storchaka · 12 years ago
  97. 865eaa1 Closes #17892: Fix the name of _PyObject_CallMethodObjIdArgs by Alexandre Vassalotti · 12 years ago
  98. 93196eb Issue #17715: Merge fix from 3.3. by Mark Dickinson · 12 years ago
  99. c973448 Issue #17715: Add missing NULL Check to PyNumber_Long. by Mark Dickinson · 12 years ago
  100. ee57f15 Revert a premature patch for issue #14010 (changeset 846bd418aee5). by Serhiy Storchaka · 12 years ago