Python 3.6.3
  1. c0e7736 [3.6] bpo-30923: Silence fall-through warnings included in -Wextra since gcc-7.0 (#3518) by Victor Stinner · 8 years ago
  2. cb356c2 [3.6] bpo-31373: remove overly strict float range checks (GH-3486) (#3495) by Benjamin Peterson · 8 years ago
  3. 2a0f7c3 Backport docstring improvements to OrderedDict. (GH-3470) by Henk-Jaap Wagenaar · 8 years ago
  4. ddb536b [3.6] bpo-31393: Fix the use of PyUnicode_READY(). (GH-3451). (#3453) by Serhiy Storchaka · 8 years ago
  5. b036232 [3.6] fixes bpo-31373: fix undefined floating-point demotions (GH-3396) (#3424) by Miss Islington (bot) · 8 years ago
  6. 3b9d444 [3.6] bpo-30662: fixed OrderedDict.__init__ docstring re PEP 468 (GH-2179) (GH-3370) by Mariatta · 8 years ago
  7. 2eea952 bpo-31095: fix potential crash during GC (GH-3195) by INADA Naoki · 8 years ago
  8. 680f04a bpo-31161: only check for parens error for SyntaxError (#3083) by Martijn Pieters · 8 years ago
  9. 1a05e87 [3.6] bpo-31232: Backport custom print rshift message (GH-3155) by Nick Coghlan · 8 years ago
  10. f08b2be4 [3.6] bpo-30978: str.format_map() now passes key lookup exceptions through. (GH-2790) (#2992) by Serhiy Storchaka · 8 years ago
  11. 82a9075 [3.6] bpo-22207: Add checks for possible integer overflows in unicodeobject.c. (GH-2623) (#2658) by Serhiy Storchaka · 8 years ago
  12. bfdc6fd [3.6] bpo-30597: Show expected input in custom 'print' error message. (GH-2531) by Nick Coghlan · 8 years ago
  13. 0834905 [3.6] bpo-13617: Reject embedded null characters in wchar* strings. (GH-2302) (#2462) by Serhiy Storchaka · 8 years ago
  14. 26daad4 bpo-30704, bpo-30604: Fix memleak in code_dealloc() (#2455) (#2456) by Victor Stinner · 8 years ago
  15. 0edffa3 [3.6] bpo-30708: Check for null characters in PyUnicode_AsWideCharString(). (GH-2285) (#2443) by Serhiy Storchaka · 8 years ago
  16. e713575 [3.6] bpo-30730: Prevent environment variables injection in subprocess on Windows. (GH-2325) (#2360) by Serhiy Storchaka · 8 years ago
  17. 2997fec [3.6] bpo-30604: Move co_extra_freefuncs to interpreter state to avoid crashes in threads (#2015) by Dino Viehland · 8 years ago
  18. f0ff849 bpo-30524: Fix _PyStack_UnpackDict() (#1886) by Victor Stinner · 8 years ago
  19. 564398a [3.6] bpo-27945: Fixed various segfaults with dict. (GH-1657) (#1677) by Serhiy Storchaka · 8 years ago
  20. 193f7e0 [3.6] bpo-25794: Fix `type.__setattr__()` for non-interned attribute names. (GH-1652) (#1673) by Serhiy Storchaka · 8 years ago
  21. 98b49a0 bpo-30281: Fix the default value for stop in PySlice_Unpack() (#1480) (#1529) by Xiang Zhang · 8 years ago
  22. 7a113a0 bpo-29802: Fix the cleaning up issue in PyUnicode_FSDecoder(). (#1217) by Serhiy Storchaka · 8 years ago
  23. df5df13 [3.6] bpo-12414: Update code_sizeof() to take in account co_extra memory. (#1168) (#1198) by Dong-hee Na · 8 years ago
  24. 680fea4 bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() (#1096) (#1180) by Serhiy Storchaka · 8 years ago
  25. 577fc04 [3.6] bpo-29549: Fixes docstring for str.index (GH-256) (GH-1028) by Mariatta · 8 years ago
  26. af685f9 bpo-29998: Pickling and copying ImportError now preserves name and path (#1010) (#1042) by Serhiy Storchaka · 8 years ago
  27. c26b19d Expand the PySlice_GetIndicesEx macro. (#1023) (#1044) by Serhiy Storchaka · 8 years ago
  28. 90e3518 bpo-29941: Assert fixes (#886) (#955) by T. Wouters · 8 years ago
  29. efde51a bpo-29949: Fix set memory usage regression (GH-945) by INADA Naoki · 8 years ago
  30. 0a17e58 bpo-28810: Update lnotab_notes.txt (GH-665) (GH-919) by Mariatta · 8 years ago
  31. bf4bb2e bpo-29935: Fixed error messages in the index() method of tuple, list and deque (#887) (#907) by Serhiy Storchaka · 8 years ago
  32. af839fe bpo-29864: Don't use Py_SIZE for dict object. (#747) (#750) by Serhiy Storchaka · 8 years ago
  33. 6fad409 bpo-28876: bool of large range raises OverflowError (#699) (#734) by Serhiy Storchaka · 8 years ago
  34. 3d258b1 bpo-29116: Fix error messages for concatenating bytes and bytearray with unsupported type. (#709) (#723) by Serhiy Storchaka · 8 years ago
  35. faa2cc6 bpo-28856: Let %b format for bytes support objects that follow the buffer protocol (GH-664) by Xiang Zhang · 8 years ago
  36. fa448de Fix wrapping into StopIteration of return values in generators and coroutines (#644) (#647) by Yury Selivanov · 8 years ago
  37. df6d7b4 [3.6] bpo-29714: Fix a regression that bytes format may fail when containing zero bytes inside. (GH-504) by Xiang Zhang · 8 years ago
  38. a6e8493 bpo-29683 - Fixes to _PyCode_SetExtra when co_extra->ce->extras is (#402) by Brian Coleman · 8 years ago
  39. d9b3cdd bpo-29602: fix signed zero handling in complex constructor. (#203) (#206) by Mark Dickinson · 8 years ago
  40. ce552e2 bpo-24274: fix erroneous comment in dictobject.c (GH-200) by INADA Naoki · 8 years ago
  41. 9a4577a bpo-29347: Fix possibly dereferencing undefined pointers when creating weakref objects (#128) (#186) by Xiang Zhang · 8 years ago
  42. 89ddffb bpo-29438: fixed use-after-free in key sharing dict (#39) by INADA Naoki · 9 years ago
  43. 512c57c Issue #27867: Function PySlice_GetIndicesEx() is replaced with a macro if by Serhiy Storchaka · 9 years ago
  44. b2a5be0 Issue #27867: Function PySlice_GetIndicesEx() is replaced with a macro if by Serhiy Storchaka · 9 years ago
  45. 4102d25 Issue #29337: Fixed possible BytesWarning when compare the code objects. by Serhiy Storchaka · 9 years ago
  46. 713640c Issue #29337: Fixed possible BytesWarning when compare the code objects. by Serhiy Storchaka · 9 years ago
  47. 4659ddc Merge doc fixes from 3.5 by Martin Panter · 9 years ago
  48. 536d70e Fix grammar, typos and markup in documentation and code comments by Martin Panter · 9 years ago
  49. 42e1ea9 Issue #28969: Fixed race condition in C implementation of functools.lru_cache. by Serhiy Storchaka · 9 years ago
  50. 6779652 Issue #28969: Fixed race condition in C implementation of functools.lru_cache. by Serhiy Storchaka · 9 years ago
  51. 95403d7 Issue #29145: Merge 3.5. by Xiang Zhang · 9 years ago
  52. b0541f4 Issue #29145: Fix overflow checks in str.replace() and str.join(). by Xiang Zhang · 9 years ago
  53. a634e23 Issue #29159: Fix regression in bytes(x) when x.__index__() raises Exception. by INADA Naoki · 9 years ago
  54. a50006c Merge 3.5. by Stefan Krah · 9 years ago
  55. 195319e Issue #29111: Fix memoryview signature. by Stefan Krah · 9 years ago
  56. c9ad8b7 Issue #29073: bytearray formatting no longer truncates on first null byte. by Serhiy Storchaka · 9 years ago
  57. d741ed4 Issue #28427: old keys should not remove new values from by Antoine Pitrou · 9 years ago
  58. e10ca3a Issue #28427: old keys should not remove new values from by Antoine Pitrou · 9 years ago
  59. 437a5d2 Issue #29044: Merge 3.5. by Xiang Zhang · 9 years ago
  60. ea1cf87 Issue #29044: Fix a use-after-free in string '%c' formatter. by Xiang Zhang · 9 years ago
  61. 6165d55 Issue #28147: Fix a memory leak in split-table dictionaries by INADA Naoki · 9 years ago
  62. 025f895 Issue #29000: Fixed bytes formatting of octals with zero padding in alternate by Serhiy Storchaka · 9 years ago
  63. b1a1619 Issue #29000: Fixed bytes formatting of octals with zero padding in alternate by Serhiy Storchaka · 9 years ago
  64. 76febd0 Issue #26919: On Android, operating system data is now always encoded/decoded by Xavier de Gaye · 9 years ago
  65. 3d3f264 Fix a memory leak in split-table dictionaries by Victor Stinner · 9 years ago
  66. 386072e Merge from 3.6. by Serhiy Storchaka · 9 years ago
  67. 49010ee Revert changeset 1f31bf3f76f5 (issue5322) except tests. by Serhiy Storchaka · 9 years ago
  68. 186b204 Fix typos in comment and documentation by Martin Panter · 9 years ago
  69. 5adfac2 Issue #5322: Fixed setting __new__ to a PyCFunction inside Python code. by Serhiy Storchaka · 9 years ago
  70. 419967b Issue #28808: PyUnicode_CompareWithASCIIString() now never raises exceptions. by Serhiy Storchaka · 9 years ago
  71. 2c5a830 Issue #28731: Optimize _PyDict_NewPresized() to create correct size dict. by INADA Naoki · 9 years ago
  72. 0c78634 Issue #5322: Fixed setting __new__ to a PyCFunction inside Python code. by Serhiy Storchaka · 9 years ago
  73. 9a953db Issue #28808: PyUnicode_CompareWithASCIIString() now never raises exceptions. by Serhiy Storchaka · 9 years ago
  74. 19d2467 Issue #23722: improve __classcell__ compatibility by Nick Coghlan · 9 years ago
  75. 9ec0772 Issue #28797: Modifying the class __dict__ inside the __set_name__ method of by Serhiy Storchaka · 9 years ago
  76. f7d199f Fix _PyGen_yf() by Victor Stinner · 9 years ago
  77. ac0720e Issue #28760: Clean up and fix comments in PyUnicode_AsUnicodeEscapeString(). by Serhiy Storchaka · 9 years ago
  78. 0651583 Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize by Serhiy Storchaka · 9 years ago
  79. 41782e4 Issue #28721: Fix asynchronous generators aclose() and athrow() by Yury Selivanov · 9 years ago
  80. a83a6a3 Issue #28701: _PyUnicode_EqualToASCIIId and _PyUnicode_EqualToASCIIString now by Serhiy Storchaka · 9 years ago
  81. df66b9c Fixed an off-by-one error in _PyUnicode_EqualToASCIIString (issue #28701). by Serhiy Storchaka · 9 years ago
  82. 292dd1b Fixed an off-by-one error in _PyUnicode_EqualToASCIIString (issue #28701). by Serhiy Storchaka · 9 years ago
  83. dddec81 Issue #21449: Removed private function _PyUnicode_CompareWithId. by Serhiy Storchaka · 9 years ago
  84. fab6acd Issue #28701: Replace _PyUnicode_CompareWithId with _PyUnicode_EqualToASCIIId. by Serhiy Storchaka · 9 years ago
  85. f5894dd Issue #28701: Replace _PyUnicode_CompareWithId with _PyUnicode_EqualToASCIIId. by Serhiy Storchaka · 9 years ago
  86. 3b73ea1 Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 9 years ago
  87. f4934ea Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 9 years ago
  88. babe4f8 Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS X by Serhiy Storchaka · 9 years ago
  89. 6b4b6e9 Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS X by Serhiy Storchaka · 9 years ago
  90. 84293af Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS X by Serhiy Storchaka · 9 years ago
  91. b626643 Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS X by Serhiy Storchaka · 9 years ago
  92. 6c10650 Merge 3.5 (issue #27942) by Yury Selivanov · 9 years ago
  93. d2fd359 ssue #27942: Fix memory leak in codeobject.c by Yury Selivanov · 9 years ago
  94. 29310c4 Issue #28003: Make WrappedVal, ASend and AThrow GC types by Yury Selivanov · 9 years ago
  95. 49ffdf6 Merge 3.5 by Yury Selivanov · 9 years ago
  96. 33499b7 genobject: Remove unnecessary tp_free slots from aiter_wrapper and coro_wrapper by Yury Selivanov · 9 years ago
  97. 78057b4 Closes #27781: Removes special cases for the experimental aspect of PEP 529 by Steve Dower · 9 years ago
  98. 3bd7900 merge 3.5 by Benjamin Peterson · 9 years ago
  99. db87c99 make sure dict view types are initialized by Benjamin Peterson · 9 years ago
  100. 60e49aa Issue #23996: Added _PyGen_SetStopIterationValue for safe raising by Serhiy Storchaka · 9 years ago