1. 561ca80 Document why functools.partial() must copy kwargs (#253) by Victor Stinner · 7 years ago
  2. 4cee049 bpo-27660: remove unnecessary overflow checks in list_resize (GH-189) by Xiang Zhang · 7 years ago
  3. 3e8d6cb bpo-29509: skip redundant intern (GH-197) by INADA Naoki · 7 years ago
  4. 112ec38 bpo-29602: fix signed zero handling in complex constructor. (#203) by Mark Dickinson · 7 years ago
  5. 1b8df10 bpo-24274: fix erroneous comment in dictobject.c (GH-196) by INADA Naoki · 7 years ago
  6. d0e8212 bpo-29347: Fix possibly dereferencing undefined pointers when creating weakref objects (#128) by Xiang Zhang · 7 years ago
  7. 72dccde bpo-29548: Fix some inefficient call API usage (GH-97) by INADA Naoki · 7 years ago
  8. c22bfaa bpo-29524: Add Objects/call.c file (#12) by Victor Stinner · 7 years ago
  9. 2294f3a bpo-29438: fixed use-after-free in key sharing dict (#17) by INADA Naoki · 7 years ago
  10. d2306ce Backed out changeset f23fa1f7b68f by Victor Stinner · 7 years ago
  11. 766af55 Issue #29465: Add Objects/call.c file by Victor Stinner · 7 years ago
  12. fe4ff83 Issue #29507: Fix _PyObject_CallFunctionVa() by Victor Stinner · 7 years ago
  13. 516b981 Optimize slots: avoid temporary PyMethodObject by Victor Stinner · 7 years ago
  14. 12c5838 Fix PyCFunction_Call() performance issue by Victor Stinner · 7 years ago
  15. 620580f Fix refleaks if Py_EnterRecursiveCall() fails by Victor Stinner · 7 years ago
  16. 7399a05 Issue #29306: Fix usage of Py_EnterRecursiveCall() by Victor Stinner · 7 years ago
  17. 68a001d Issue #29460: _PyArg_NoKeywords(), _PyArg_NoStackKeywords() and by Serhiy Storchaka · 7 years ago
  18. 5cd87a8 Reduce load factor (from 66% to 60%) to improve effectiveness of linear probing. by Raymond Hettinger · 7 years ago
  19. 19d2597 Issue #29311: Regenerate Argument Clinic. by Serhiy Storchaka · 7 years ago
  20. 5566bbb Issue #29263: LOAD_METHOD support for C methods by INADA Naoki · 7 years ago
  21. e1af696 Remove unnecessary variables. by Raymond Hettinger · 7 years ago
  22. 196a7bc Issue #29421: Make int.to_bytes() and int.from_bytes() slightly faster by Serhiy Storchaka · 7 years ago
  23. 495e880 Issue #20185: Converted the int class to Argument Clinic. by Serhiy Storchaka · 7 years ago
  24. 35a96a2 Issue #29383: reduce temporary interned unicode by INADA Naoki · 8 years ago
  25. bda5a2b Issue #29358: Add postcondition checks on types by Victor Stinner · 8 years ago
  26. 6e08baf Issue #27867: Function PySlice_GetIndicesEx() is deprecated and replaced with by Serhiy Storchaka · 8 years ago
  27. 512c57c Issue #27867: Function PySlice_GetIndicesEx() is replaced with a macro if by Serhiy Storchaka · 8 years ago
  28. b2a5be0 Issue #27867: Function PySlice_GetIndicesEx() is replaced with a macro if by Serhiy Storchaka · 8 years ago
  29. 78d9e58 Issues #29311, #29289: Fixed and improved docstrings for dict and OrderedDict by Serhiy Storchaka · 8 years ago
  30. 067cbd0 Issue #29337: Fixed possible BytesWarning when compare the code objects. by Serhiy Storchaka · 8 years ago
  31. 4102d25 Issue #29337: Fixed possible BytesWarning when compare the code objects. by Serhiy Storchaka · 8 years ago
  32. 713640c Issue #29337: Fixed possible BytesWarning when compare the code objects. by Serhiy Storchaka · 8 years ago
  33. c3858bd Issue #29360: _PyStack_AsDict() doesn't check kwnames by Victor Stinner · 8 years ago
  34. 91a8866 Fix grammar in doc string, RST markup by Martin Panter · 8 years ago
  35. d1302c0 Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever by Serhiy Storchaka · 8 years ago
  36. 228b12e Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever by Serhiy Storchaka · 8 years ago
  37. 2a404b6 Issue #28769: The result of PyUnicode_AsUTF8AndSize() and PyUnicode_AsUTF8() by Serhiy Storchaka · 8 years ago
  38. 7cf8beb Issue #29331: Simplified argument parsing in sorted() and list.sort(). by Serhiy Storchaka · 8 years ago
  39. a70eaf2 Issue #29289: Argument Clinic generates reasonable name for the parameter "default". by Serhiy Storchaka · 8 years ago
  40. 48088ee Issue #29311: Argument Clinic generates reasonable name for the parameter "default". by Serhiy Storchaka · 8 years ago
  41. 41baebd Issue #20186: Converted builtins enumerate() and reversed() to Argument Clinic. by Serhiy Storchaka · 8 years ago
  42. 91f0d4a Add a note explaining why dict_update() doesn't use METH_FASTCALL by Victor Stinner · 8 years ago
  43. 7dc6a5f dict.get() and dict.setdefault() now use AC by Victor Stinner · 8 years ago
  44. 06d3439 _PyStack_AsDict() now checks kwnames != NULL by Victor Stinner · 8 years ago
  45. 0a2e468 Cleanup _PyMethodDef_RawFastCallDict() by Victor Stinner · 8 years ago
  46. a8cb515 Rephrase !PyErr_Occurred() comment: may=>can by Victor Stinner · 8 years ago
  47. 98ccba8 _PyObject_FastCallKeywords() now checks !PyErr_Occurred() by Victor Stinner · 8 years ago
  48. c89ef82 PyCFunction_Call() now calls _PyCFunction_FastCallDict() by Victor Stinner · 8 years ago
  49. 250e4b0 Fix _PyMethodDef_RawFastCallDict() argument parsing by Victor Stinner · 8 years ago
  50. 2a1b676 _PyObject_FastCallKeywords() now checks the result by Victor Stinner · 8 years ago
  51. c525723 Optimize methoddescr_call(): avoid temporary PyCFunction by Victor Stinner · 8 years ago
  52. 35ecebe Remove unused func parameter of _PyStack_UnpackDict() by Victor Stinner · 8 years ago
  53. b05cbac Convert some OrderedDict methods to Argument Clinic by Victor Stinner · 8 years ago
  54. 0c4a828 Run Argument Clinic: METH_VARARGS=>METH_FASTCALL by Victor Stinner · 8 years ago
  55. 259f0e4 Run Argument Clinic: METH_VARARGS=>METH_FASTCALL by Victor Stinner · 8 years ago
  56. 998c209 _PyStack_UnpackDict() now returns -1 on error by Victor Stinner · 8 years ago
  57. 3e1fad6 Rename _PyArg_ParseStack to _PyArg_ParseStackAndKeywords by Victor Stinner · 8 years ago
  58. d526cfe type_prepare() now uses fast call (METH_FASTCALL) by Victor Stinner · 8 years ago
  59. 69de71b Add _PyStack_AsTupleSlice() helper by Victor Stinner · 8 years ago
  60. 7fc252a Optimize _PyCFunction_FastCallKeywords() by Victor Stinner · 8 years ago
  61. 15f9459 Issue #20180: forgot to update AC output. by INADA Naoki · 8 years ago
  62. 3ae2056 Issue #20180: convert unicode methods to AC. by INADA Naoki · 8 years ago
  63. 446a498 Merge doc fixes from 3.6 by Martin Panter · 8 years ago
  64. 4659ddc Merge doc fixes from 3.5 by Martin Panter · 8 years ago
  65. 536d70e Fix grammar, typos and markup in documentation and code comments by Martin Panter · 8 years ago
  66. 94b39ce Issue #1621: Overflow should not be possible in listextend() by Martin Panter · 8 years ago
  67. 617c775 Issue #28969: Fixed race condition in C implementation of functools.lru_cache. by Serhiy Storchaka · 8 years ago
  68. 42e1ea9 Issue #28969: Fixed race condition in C implementation of functools.lru_cache. by Serhiy Storchaka · 8 years ago
  69. 6779652 Issue #28969: Fixed race condition in C implementation of functools.lru_cache. by Serhiy Storchaka · 8 years ago
  70. b915bc3 Disable _PyStack_AsTuple() inlining by Victor Stinner · 8 years ago
  71. 434723f call_method() now uses _PyObject_FastCall() by Victor Stinner · 8 years ago
  72. 7a4da32 Issue #29145: Merge 3.6. by Xiang Zhang · 8 years ago
  73. 95403d7 Issue #29145: Merge 3.5. by Xiang Zhang · 8 years ago
  74. b0541f4 Issue #29145: Fix overflow checks in str.replace() and str.join(). by Xiang Zhang · 8 years ago
  75. 7ed28a8 Merge 3.6 by INADA Naoki · 8 years ago
  76. a634e23 Issue #29159: Fix regression in bytes(x) when x.__index__() raises Exception. by INADA Naoki · 8 years ago
  77. 6f7c0ae Issue #28839: Optimize function_call() by Victor Stinner · 8 years ago
  78. 089a062 Merge 3.6. by Stefan Krah · 8 years ago
  79. a50006c Merge 3.5. by Stefan Krah · 8 years ago
  80. 195319e Issue #29111: Fix memoryview signature. by Stefan Krah · 8 years ago
  81. c9ad8b7 Issue #29073: bytearray formatting no longer truncates on first null byte. by Serhiy Storchaka · 8 years ago
  82. c06ae20 Issue #28427: old keys should not remove new values from by Antoine Pitrou · 8 years ago
  83. d741ed4 Issue #28427: old keys should not remove new values from by Antoine Pitrou · 8 years ago
  84. e10ca3a Issue #28427: old keys should not remove new values from by Antoine Pitrou · 8 years ago
  85. 5a625d0 Issue #29049: Call _PyObject_GC_TRACK() lazily when calling Python function. by INADA Naoki · 8 years ago
  86. 62497d5 Issue #29044: Merge 3.6. by Xiang Zhang · 8 years ago
  87. 437a5d2 Issue #29044: Merge 3.5. by Xiang Zhang · 8 years ago
  88. ea1cf87 Issue #29044: Fix a use-after-free in string '%c' formatter. by Xiang Zhang · 8 years ago
  89. b211068 Issue #28822: Adjust indices handling of PyUnicode_FindChar(). by Xiang Zhang · 8 years ago
  90. 6165d55 Issue #28147: Fix a memory leak in split-table dictionaries by INADA Naoki · 8 years ago
  91. dd1da7f Issue #28927: bytes.fromhex() and bytearray.fromhex() now ignore all ASCII by Serhiy Storchaka · 8 years ago
  92. 9d16b61 Issue #29000: Fixed bytes formatting of octals with zero padding in alternate by Serhiy Storchaka · 8 years ago
  93. 025f895 Issue #29000: Fixed bytes formatting of octals with zero padding in alternate by Serhiy Storchaka · 8 years ago
  94. b1a1619 Issue #29000: Fixed bytes formatting of octals with zero padding in alternate by Serhiy Storchaka · 8 years ago
  95. 5bb8b91 Issue #18896: Python function can now have more than 255 parameters. by Serhiy Storchaka · 8 years ago
  96. 5ab81d7 Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of dict. by Serhiy Storchaka · 8 years ago
  97. 31eaf49 Merge 3.6. by Xavier de Gaye · 8 years ago
  98. 76febd0 Issue #26919: On Android, operating system data is now always encoded/decoded by Xavier de Gaye · 8 years ago
  99. 5cc70c9 Merge 3.6 by Victor Stinner · 8 years ago
  100. 3d3f264 Fix a memory leak in split-table dictionaries by Victor Stinner · 8 years ago