1. 3e1fad6 Rename _PyArg_ParseStack to _PyArg_ParseStackAndKeywords by Victor Stinner · 8 years ago
  2. d526cfe type_prepare() now uses fast call (METH_FASTCALL) by Victor Stinner · 8 years ago
  3. 69de71b Add _PyStack_AsTupleSlice() helper by Victor Stinner · 8 years ago
  4. 7fc252a Optimize _PyCFunction_FastCallKeywords() by Victor Stinner · 8 years ago
  5. 15f9459 Issue #20180: forgot to update AC output. by INADA Naoki · 8 years ago
  6. 3ae2056 Issue #20180: convert unicode methods to AC. by INADA Naoki · 8 years ago
  7. 446a498 Merge doc fixes from 3.6 by Martin Panter · 8 years ago
  8. 4659ddc Merge doc fixes from 3.5 by Martin Panter · 8 years ago
  9. 536d70e Fix grammar, typos and markup in documentation and code comments by Martin Panter · 8 years ago
  10. 94b39ce Issue #1621: Overflow should not be possible in listextend() by Martin Panter · 8 years ago
  11. 617c775 Issue #28969: Fixed race condition in C implementation of functools.lru_cache. by Serhiy Storchaka · 8 years ago
  12. 42e1ea9 Issue #28969: Fixed race condition in C implementation of functools.lru_cache. by Serhiy Storchaka · 8 years ago
  13. 6779652 Issue #28969: Fixed race condition in C implementation of functools.lru_cache. by Serhiy Storchaka · 8 years ago
  14. b915bc3 Disable _PyStack_AsTuple() inlining by Victor Stinner · 8 years ago
  15. 434723f call_method() now uses _PyObject_FastCall() by Victor Stinner · 8 years ago
  16. 7a4da32 Issue #29145: Merge 3.6. by Xiang Zhang · 8 years ago
  17. 95403d7 Issue #29145: Merge 3.5. by Xiang Zhang · 8 years ago
  18. b0541f4 Issue #29145: Fix overflow checks in str.replace() and str.join(). by Xiang Zhang · 8 years ago
  19. 7ed28a8 Merge 3.6 by INADA Naoki · 8 years ago
  20. a634e23 Issue #29159: Fix regression in bytes(x) when x.__index__() raises Exception. by INADA Naoki · 8 years ago
  21. 6f7c0ae Issue #28839: Optimize function_call() by Victor Stinner · 8 years ago
  22. 089a062 Merge 3.6. by Stefan Krah · 8 years ago
  23. a50006c Merge 3.5. by Stefan Krah · 8 years ago
  24. 195319e Issue #29111: Fix memoryview signature. by Stefan Krah · 8 years ago
  25. c9ad8b7 Issue #29073: bytearray formatting no longer truncates on first null byte. by Serhiy Storchaka · 8 years ago
  26. c06ae20 Issue #28427: old keys should not remove new values from by Antoine Pitrou · 8 years ago
  27. d741ed4 Issue #28427: old keys should not remove new values from by Antoine Pitrou · 8 years ago
  28. e10ca3a Issue #28427: old keys should not remove new values from by Antoine Pitrou · 8 years ago
  29. 5a625d0 Issue #29049: Call _PyObject_GC_TRACK() lazily when calling Python function. by INADA Naoki · 8 years ago
  30. 62497d5 Issue #29044: Merge 3.6. by Xiang Zhang · 8 years ago
  31. 437a5d2 Issue #29044: Merge 3.5. by Xiang Zhang · 8 years ago
  32. ea1cf87 Issue #29044: Fix a use-after-free in string '%c' formatter. by Xiang Zhang · 8 years ago
  33. b211068 Issue #28822: Adjust indices handling of PyUnicode_FindChar(). by Xiang Zhang · 8 years ago
  34. 6165d55 Issue #28147: Fix a memory leak in split-table dictionaries by INADA Naoki · 8 years ago
  35. dd1da7f Issue #28927: bytes.fromhex() and bytearray.fromhex() now ignore all ASCII by Serhiy Storchaka · 8 years ago
  36. 9d16b61 Issue #29000: Fixed bytes formatting of octals with zero padding in alternate by Serhiy Storchaka · 8 years ago
  37. 025f895 Issue #29000: Fixed bytes formatting of octals with zero padding in alternate by Serhiy Storchaka · 8 years ago
  38. b1a1619 Issue #29000: Fixed bytes formatting of octals with zero padding in alternate by Serhiy Storchaka · 8 years ago
  39. 5bb8b91 Issue #18896: Python function can now have more than 255 parameters. by Serhiy Storchaka · 8 years ago
  40. 5ab81d7 Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of dict. by Serhiy Storchaka · 8 years ago
  41. 31eaf49 Merge 3.6. by Xavier de Gaye · 8 years ago
  42. 76febd0 Issue #26919: On Android, operating system data is now always encoded/decoded by Xavier de Gaye · 8 years ago
  43. 5cc70c9 Merge 3.6 by Victor Stinner · 8 years ago
  44. 3d3f264 Fix a memory leak in split-table dictionaries by Victor Stinner · 8 years ago
  45. 944dbc6 Use _PyDict_NewPresized() in _PyStack_AsDict() by Victor Stinner · 8 years ago
  46. bc08ab4 Add _PY_FASTCALL_SMALL_STACK constant by Victor Stinner · 8 years ago
  47. d1e35dd Fix _PyObject_CallFunctionVa(), use the small stack by Victor Stinner · 8 years ago
  48. bdfc5ff Merge from 3.6. by Serhiy Storchaka · 8 years ago
  49. 386072e Merge from 3.6. by Serhiy Storchaka · 8 years ago
  50. 49010ee Revert changeset 1f31bf3f76f5 (issue5322) except tests. by Serhiy Storchaka · 8 years ago
  51. f239213 Issue #26110: Add LOAD_METHOD/CALL_METHOD opcodes. by Yury Selivanov · 8 years ago
  52. 9bcaa37 Issue #28820: Merge typo fixes from 3.6 by Martin Panter · 8 years ago
  53. 186b204 Fix typos in comment and documentation by Martin Panter · 8 years ago
  54. 59a7327 Backed out changeset 99c34e47348b by Victor Stinner · 8 years ago
  55. 0ca246c Inline PyEval_EvalFrameEx() in callers by Victor Stinner · 8 years ago
  56. 14e6d09 Remove useless variable initialization by Victor Stinner · 8 years ago
  57. 5abaa2b Use PyObject_CallFunctionObjArgs() by Victor Stinner · 8 years ago
  58. 887b430 Use _PyObject_FastCallVa() in type slots by Victor Stinner · 8 years ago
  59. 7f39c0c Add _PyObject_VaCallFunctionObjArgs() private function by Victor Stinner · 8 years ago
  60. 7e42541 Use _PyObject_CallMethodIdObjArgs() by Victor Stinner · 8 years ago
  61. ef7def9 _PyObject_CallFunctionVa() uses fast call by Victor Stinner · 8 years ago
  62. e83aab1 Add _PyObject_CallFunctionVa() helper by Victor Stinner · 8 years ago
  63. 3bb7119 Add _PyObject_FastCallVa() helper by Victor Stinner · 8 years ago
  64. ba60977 Issue #28818: Simplify lookdict functions by INADA Naoki · 8 years ago
  65. 1b58d8a Issue #5322: Fixed setting __new__ to a PyCFunction inside Python code. by Serhiy Storchaka · 8 years ago
  66. 0c78634 Issue #5322: Fixed setting __new__ to a PyCFunction inside Python code. by Serhiy Storchaka · 8 years ago
  67. f2d568f _PyObject_FastCallKeywords() now calls directly tp_call by Victor Stinner · 8 years ago
  68. 2f35ca3 Fix typo in a comment of abstract.c by Victor Stinner · 8 years ago
  69. f17c3de Use _PyObject_CallNoArg() by Victor Stinner · 8 years ago
  70. a5ed5f0 Use _PyObject_CallNoArg() by Victor Stinner · 8 years ago
  71. 2d0eb65 Uniformize argument names of "call" functions by Victor Stinner · 8 years ago
  72. fb3134f Issue #28808: PyUnicode_CompareWithASCIIString() now never raises exceptions. by Serhiy Storchaka · 8 years ago
  73. 9a953db Issue #28808: PyUnicode_CompareWithASCIIString() now never raises exceptions. by Serhiy Storchaka · 8 years ago
  74. 419967b Issue #28808: PyUnicode_CompareWithASCIIString() now never raises exceptions. by Serhiy Storchaka · 8 years ago
  75. 9083eb6 Use directly _PyObject_GenericSetAttrWithDict() by Victor Stinner · 8 years ago
  76. 7bfb42d Issue #28858: Remove _PyObject_CallArg1() macro by Victor Stinner · 8 years ago
  77. d77e5b7 Merge #23722 from 3.6 by Nick Coghlan · 8 years ago
  78. 19d2467 Issue #23722: improve __classcell__ compatibility by Nick Coghlan · 8 years ago
  79. de4ae3d Backed out changeset b9c9691c72c5 by Victor Stinner · 8 years ago
  80. 5adfac2 Issue #5322: Fixed setting __new__ to a PyCFunction inside Python code. by Serhiy Storchaka · 8 years ago
  81. 4778eab Replace PyObject_CallFunction() with fastcall by Victor Stinner · 8 years ago
  82. 27580c1 Replace PyObject_CallFunctionObjArgs() with fastcall by Victor Stinner · 8 years ago
  83. 8be1c39 Backed out changeset 7efddbf1aa70 by Victor Stinner · 8 years ago
  84. ebea998 Uniformize argument names of "call" functions by Victor Stinner · 8 years ago
  85. baa7223 Issue #28797: Modifying the class __dict__ inside the __set_name__ method of by Serhiy Storchaka · 8 years ago
  86. 9ec0772 Issue #28797: Modifying the class __dict__ inside the __set_name__ method of by Serhiy Storchaka · 8 years ago
  87. ed6de73 Merge 3.6 by Victor Stinner · 8 years ago
  88. f7d199f Fix _PyGen_yf() by Victor Stinner · 8 years ago
  89. 99250d5 Issue #28774: Simplified encoding a str result of an error handler in ASCII by Serhiy Storchaka · 8 years ago
  90. d04d847 Issue #28774: Fix start/end pos in unicode_encode_ucs1(). by Xiang Zhang · 8 years ago
  91. 2c5a830 Issue #28731: Optimize _PyDict_NewPresized() to create correct size dict. by INADA Naoki · 8 years ago
  92. 007d7ff Issue #28761: The fields name and doc of structures PyMemberDef, PyGetSetDef, by Serhiy Storchaka · 8 years ago
  93. 92c50ee Issue #28731: Optimize _PyDict_NewPresized() to create correct size dict by INADA Naoki · 8 years ago
  94. 5091147 Issue #28760: Clean up and fix comments in PyUnicode_AsUnicodeEscapeString(). by Serhiy Storchaka · 8 years ago
  95. ac0720e Issue #28760: Clean up and fix comments in PyUnicode_AsUnicodeEscapeString(). by Serhiy Storchaka · 8 years ago
  96. b57d9ea Issue #28748: Private variable _Py_PackageContext is now of type "const char *" by Serhiy Storchaka · 8 years ago
  97. 460bd0d Issue #19569: Compiler warnings are now emitted if use most of deprecated by Serhiy Storchaka · 8 years ago
  98. 85b0f5b Added the const qualifier to char* variables that refer to readonly internal by Serhiy Storchaka · 8 years ago
  99. a98c4a9 Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize by Serhiy Storchaka · 8 years ago
  100. 0651583 Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize by Serhiy Storchaka · 8 years ago