1. 8c663fd Replace KB unit with KiB (#4293) by Victor Stinner · 7 years ago
  2. 3cc4c53 bpo-31626: Mark ends of the reallocated block in debug build. (#4210) by Serhiy Storchaka · 7 years ago
  3. a5293b4 Fix miscellaneous typos (#4275) by luzpaz · 7 years ago
  4. e8b1965 bpo-23699: Use a macro to reduce boilerplate code in rich comparison functions (GH-793) by stratakis · 7 years ago
  5. 9ed83c4 bpo-18835: Cleanup pymalloc (#4200) by Victor Stinner · 7 years ago
  6. b484d56 bpo-31626: Fixed a bug in debug memory allocator. (#3844) by Serhiy Storchaka · 7 years ago
  7. a231428 bpo-20047: Make bytearray methods partition() and rpartition() rejecting (#4158) by Serhiy Storchaka · 7 years ago
  8. 56d1f5c bpo-30697: Fix PyErr_NormalizeException() when no memory (GH-2327) by xdegaye · 7 years ago
  9. 086c3ae bpo-31835: Optimize also FASTCALL using __future__ (#4087) by Victor Stinner · 7 years ago
  10. ae3087c Move exc state to generator. Fixes bpo-25612 (#1773) by Mark Shannon · 7 years ago
  11. 56cb465 bpo-31825: Fixed OverflowError in the 'unicode-escape' codec (#4058) by Serhiy Storchaka · 7 years ago
  12. 0ccc0f6 bpo-28280: Make PyMapping_Keys(), PyMapping_Values() and PyMapping_Items() always return a list (#3840) by Oren Milman · 7 years ago
  13. 79ba471 bpo-31655: Validate keyword names in SimpleNamespace constructor. (#3909) by Serhiy Storchaka · 7 years ago
  14. faa135a bpo-31709: Drop support for asynchronous __aiter__. (#3903) by Yury Selivanov · 7 years ago
  15. 85c0b89 bpo-31619: Fixed a ValueError when convert a string with large number of underscores (#3827) by Serhiy Storchaka · 7 years ago
  16. 2102c78 bpo-31336: Speed up type creation. (#3279) by scoder · 7 years ago
  17. 0e950dd bpo-31579: Fixed a possible leak in enumerate() with large indices. (#3753) by Serhiy Storchaka · 7 years ago
  18. 8110dbd bpo-26491 Defer DECREFs until enumobject is in a consistent state (#3747) by Raymond Hettinger · 7 years ago
  19. 5e02c78 bpo-31410: Optimized calling wrapper and classmethod descriptors. (#3481) by Serhiy Storchaka · 7 years ago
  20. b3a7796 bpo-27541: Reprs of subclasses of some classes now contain actual type name. (#3631) by Serhiy Storchaka · 7 years ago
  21. 0ad05c3 bpo-30486: Make cell_set_contents() symbol private (#3668) by Victor Stinner · 7 years ago
  22. a6c0c06 bpo-31506: Improve the error message logic for object.__new__ and object.__init__. (GH-3650) by Serhiy Storchaka · 7 years ago
  23. 6db7033 bpo-31492: Fix assertion failures in case of a module with a bad __name__ attribute. (#3620) by Oren Milman · 7 years ago
  24. 4ab46d7 bpo-31497: Add private helper _PyType_Name(). (#3630) by Serhiy Storchaka · 7 years ago
  25. 3f9eee6 bpo-28411: Support other mappings in PyInterpreterState.modules. (#3593) by Eric Snow · 7 years ago
  26. b2e5794 bpo-31338 (#3374) by Barry Warsaw · 7 years ago
  27. ccb3c76 bpo-30860: Fix deadcode in obmalloc.c (#3499) by Victor Stinner · 7 years ago
  28. d393c1b bpo-28411: Isolate PyInterpreterState.modules (#3575) by Eric Snow · 7 years ago
  29. dae0276 bpo-30860: Fix a refleak. (#3567) by Eric Snow · 7 years ago
  30. 93c92f7 bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565) by Eric Snow · 7 years ago
  31. 13ad3b7 bpo-31462: Remove trailing whitespaces. (#3564) by Serhiy Storchaka · 7 years ago
  32. 8728018 bpo-30860: Fix a refleak. (#3506) by Eric Snow · 7 years ago
  33. 2bb69a5 bpo-31373: remove overly strict float range checks (#3486) by Benjamin Peterson · 7 years ago
  34. 2b7953d replace custom table with pyctype (#3456) by Benjamin Peterson · 7 years ago
  35. e3b2b4b bpo-31393: Fix the use of PyUnicode_READY(). (#3451) by Serhiy Storchaka · 7 years ago
  36. 8e0ad46 update all_name_chars comment after 9020ac7cce97dddad51b285fffc31fe4ddf60898 (#3452) by Benjamin Peterson · 7 years ago
  37. 2ebc5ce bpo-30860: Consolidate stateful runtime globals. (#3397) by Eric Snow · 7 years ago
  38. 9020ac7 optimize all_name_chars (#3442) by Benjamin Peterson · 7 years ago
  39. 5a85167 bpo-31344: Per-frame control of trace events (GH-3417) by Nick Coghlan · 7 years ago
  40. a853a8b bpo-31373: fix undefined floating-point demotions (#3396) by Benjamin Peterson · 7 years ago
  41. a6a4dc8 bpo-31370: Remove support for threads-less builds (#3385) by Antoine Pitrou · 7 years ago
  42. 05351c1 Revert "bpo-30860: Consolidate stateful runtime globals." (#3379) by Eric Snow · 7 years ago
  43. 76d5abc bpo-30860: Consolidate stateful runtime globals. (#2594) by Eric Snow · 7 years ago
  44. faa57cb bpo-30662: fixed OrderedDict.__init__ docstring re PEP 468 (#2179) by Jonathan Eunice · 7 years ago
  45. a3070d5 bpo-31347: _PyObject_FastCall_Prepend: do not call memcpy if args might not be null (#3329) by Benjamin Peterson · 7 years ago
  46. 64263df Fix terminology in comment and add more design rationale. (#3335) by Raymond Hettinger · 7 years ago
  47. 86b7afd bpo-28411: Remove "modules" field from Py_InterpreterState. (#1638) by Eric Snow · 7 years ago
  48. dce6502 bpo-31279: Silence -Wstringop-overflow warning. (#3207) by Stefan Krah · 7 years ago
  49. a6296d3 bpo-31095: fix potential crash during GC (GH-2974) by INADA Naoki · 7 years ago
  50. 772d809 bpo-31161: only check for parens error for SyntaxError (#3082) by Martijn Pieters · 7 years ago
  51. f432a32 bpo-30923: Silence fall-through warnings included in -Wextra since gcc-7.0. (#3157) by Stefan Krah · 7 years ago
  52. a7c449b bpo-30721: Add missing '?' to new error message (GH-3131) by Sanyam Khurana · 7 years ago
  53. 5e2eb35 bpo-30721: Show correct syntax hint in Py3 when using Py2 redirection syntax (#2345) by Sanyam Khurana · 7 years ago
  54. 778928b bpo-29304: Simplify dict lookup functions (GH-2407) by INADA Naoki · 7 years ago
  55. 5075416 bpo-30978: str.format_map() now passes key lookup exceptions through. (#2790) by Serhiy Storchaka · 7 years ago
  56. c6ea897 bpo-30640: Fix undefined behavior in _PyFunction_FastCallDict() and PyEval_EvalCodeEx() (#2919) by Zackery Spytz · 7 years ago
  57. 64e461b bpo-22207: Add checks for possible integer overflows in unicodeobject.c. (#2623) by Serhiy Storchaka · 7 years ago
  58. 9648088 bpo-30878: Fix error message when keyword arguments are passed (#2635) by Sylvain · 7 years ago
  59. 378ebb6 bpo-30789: Use a single memory block for co_extra. (#2555) by Serhiy Storchaka · 7 years ago
  60. 6969eaf bpo-29464: Rename METH_FASTCALL to METH_FASTCALL|METH_KEYWORDS and make (#1955) by Serhiy Storchaka · 7 years ago
  61. f7eae0a [security] bpo-13617: Reject embedded null characters in wchar* strings. (#2302) by Serhiy Storchaka · 7 years ago
  62. 23e7944 bpo-30704, bpo-30604: Fix memleak in code_dealloc() (#2455) by Victor Stinner · 7 years ago
  63. e613e6a bpo-30708: Check for null characters in PyUnicode_AsWideCharString(). (#2285) by Serhiy Storchaka · 7 years ago
  64. 870c286 bp-29304: Simplify dictobject.c (GH-2347) by INADA Naoki · 7 years ago
  65. d174d24 bpo-30730: Prevent environment variables injection in subprocess on Windows. (#2325) by Serhiy Storchaka · 7 years ago
  66. 073ae48 bpo-29304: simplify lookdict_index() function. (GH-2273) by INADA Naoki · 7 years ago
  67. 279a962 bpo-30736: upgrade to Unicode 10.0 (#2344) by Benjamin Peterson · 7 years ago
  68. f3cffd2 bpo-30604: clean up co_extra support (#2144) by Dino Viehland · 7 years ago
  69. 3a7f035 bpo-30597: Show expected input in custom 'print' error message. (#2009) by Sanyam Khurana · 7 years ago
  70. 7445381 bpo-30600: Fix error messages (condition order in Argument Clinic) (#2051) by Sylvain · 7 years ago
  71. 64505a1 bpo-30486: Allow setting cell value (#1840) by Lisa Roach · 7 years ago
  72. 6cca5c8 bpo-30592: Fixed error messages for some builtins. (#1996) by Serhiy Storchaka · 7 years ago
  73. 5eb788b bpo-30534: Fixed error messages when pass keyword arguments (#1901) by Serhiy Storchaka · 7 years ago
  74. 4e624ca bpo-30509: Clean up calling type slots. (#1883) by Serhiy Storchaka · 7 years ago
  75. 753bca3 bpo-27945: Fixed various segfaults with dict. (#1657) by Serhiy Storchaka · 7 years ago
  76. d896985 bpo-25794: Fix `type.__setattr__()` for non-interned attribute names. (#1652) by Serhiy Storchaka · 7 years ago
  77. 7e19dbc bpo-28974: `object.__format__(x, '')` is now equivalent to `str(x)` (#506) by Serhiy Storchaka · 7 years ago
  78. a66f9c6 bpo-30341: Improve _PyTrash_thread_destroy_chain() a little bit (#1545) by Xiang Zhang · 7 years ago
  79. 2ddf5a1 bpo-30281: Fix the default value for stop in PySlice_Unpack() (#1480) by Xiang Zhang · 7 years ago
  80. 1a5856b bpo-29867: Add asserts in PyTuple_GET_SIZE, PyList_GET_SIZE and PySet_GET_SIZE. (#751) by Serhiy Storchaka · 7 years ago
  81. 40db90c bpo-29802: Fix reference counting in module-level struct functions (#1213) by Serhiy Storchaka · 7 years ago
  82. b4dc6af bpo-12414: Update code_sizeof() to take in account co_extra memory. (#1168) by Dong-hee Na · 7 years ago
  83. bf623ae bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() (#1096) by Serhiy Storchaka · 7 years ago
  84. 8e1ddbd fix a refleak in slot_sq_length (#1162) by Xiang Zhang · 7 years ago
  85. 55fe1ae bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051) by Serhiy Storchaka · 7 years ago
  86. baf9f29 bpo-29839: Raise ValueError rather than OverflowError in len() for negative values. (#701) by Serhiy Storchaka · 7 years ago
  87. 813f943 bpo-29838: Add asserts for checking results of sq_length and mq_length slots. (#700) by Serhiy Storchaka · 7 years ago
  88. b785396 bpo-29998: Pickling and copying ImportError now preserves name and path (#1010) by Serhiy Storchaka · 7 years ago
  89. b879fe8 Expand the PySlice_GetIndicesEx macro. (#1023) by Serhiy Storchaka · 7 years ago
  90. 205e00c bpo-29914: Fix default implementations of __reduce__ and __reduce_ex__(). (#843) by Serhiy Storchaka · 7 years ago
  91. bae6881 Update Argument Clinic generated code for bpo-29878. (#1001) by Serhiy Storchaka · 7 years ago
  92. 43ba886 bpo-29549: Fixes docstring for str.index (#256) by Lisa Roach · 7 years ago
  93. e82cf86 bpo-29949: Fix set memory usage regression (GH-943) by INADA Naoki · 7 years ago
  94. 06bb487 Fix spurious MemoryError introduced by PR #886. (#930) by T. Wouters · 7 years ago
  95. a00c3fd bpo-29941: Assert fixes (#886) by T. Wouters · 7 years ago
  96. d4edfc9 bpo-29935: Fixed error messages in the index() method of tuple, list and deque (#887) by Serhiy Storchaka · 7 years ago
  97. 918403c bpo-29816: Shift operation now has less opportunity to raise OverflowError. (#680) by Serhiy Storchaka · 7 years ago
  98. 0a58f72 bpo-24821: Fixed the slowing down to 25 times in the searching of some (#505) by Serhiy Storchaka · 7 years ago
  99. ba85d69 bpo-29878: Add global instances of int for 0 and 1. (#852) by Serhiy Storchaka · 7 years ago
  100. c431854 bpo-29927: Remove duplicate BufferError init and unnecessary semicolons (GH-866) by Louie Lu · 7 years ago