1. 4207907 Fix division by 0 when checking for overflow in math.prod (GH-11808) by Pablo Galindo · 5 years ago
  2. 2dda72a lru_cache: Add more comments. Fix comment typos. Clarify a comment. (GH-11795) by Raymond Hettinger · 5 years ago
  3. bc09851 bpo-35606: Implement math.prod (GH-11359) by Pablo Galindo · 5 years ago
  4. 89427cd bpo-32417: Make timedelta arithmetic respect subclasses (#10902) by Paul Ganssle · 5 years ago
  5. b82bfac bpo-29734: nt._getfinalpathname handle leak (GH-740) by Mark Becwar · 5 years ago
  6. 4860f01 bpo-33895: Relase GIL while calling functions that acquire Windows loader lock (GH-7789) by Tony Roberts · 5 years ago
  7. e5ef45b bpo-35813: Added shared_memory submodule of multiprocessing. (#11664) by Davin Potts · 5 years ago
  8. 325e4ba bpo-35537: Fix function name in os.posix_spawnp() errors (GH-11719) by Victor Stinner · 5 years ago
  9. 80c5dfe bpo-35537: Add setsid parameter to os.posix_spawn() and os.posix_spawnp() (GH-11608) by Joannah Nanjekye · 5 years ago
  10. 05f1b93 Speed-up argument parsing for common cases in deque.__init__()(GH-11717) by Raymond Hettinger · 5 years ago
  11. ffdf1c3 Consistently move the misses update to just before the user function call (GH-11715) by Raymond Hettinger · 5 years ago
  12. dcfcd14 bpo-35766: Merge typed_ast back into CPython (GH-11645) by Guido van Rossum · 5 years ago
  13. cfd735e Move float conversion into a macro. Apply to fsum (GH-11698) by Raymond Hettinger · 6 years ago
  14. 742d768 bpo-35847: RISC-V needs CTYPES_PASS_BY_REF_HACK (GH-11694) by Andreas Schwab · 6 years ago
  15. 808180c Fast path for int inputs to math.dist() and math.hypot() (GH-11692) by Raymond Hettinger · 6 years ago
  16. d8080c0 bpo-35780: Fix errors in lru_cache() C code (GH-11623) by Raymond Hettinger · 6 years ago
  17. 35ca182 bpo-35720: Fixing a memory leak in pymain_parse_cmdline_impl() (GH-11528) by Lucas Cimon · 6 years ago
  18. 9932a22 bpo-33416: Add end positions to Python AST (GH-11605) by Ivan Levkivskyi · 6 years ago
  19. 92b8322 bpo-35674: Add os.posix_spawnp() (GH-11554) by Joannah Nanjekye · 6 years ago
  20. a37f524 bpo-35746: Fix segfault in ssl's cert parser (GH-11569) by Christian Heimes · 6 years ago
  21. 454b3d4 bpo-35066: _dateime.datetime.strftime copies trailing '%' (GH-10692) by MichaelSaah · 6 years ago
  22. d0d3e99 bpo-35719: Optimize multi-argument math functions. (GH-11527) by Serhiy Storchaka · 6 years ago
  23. 7934266 bpo-35582: Inline arguments tuple unpacking in handwritten code. (GH-11524) by Serhiy Storchaka · 6 years ago
  24. cb08a71 bpo-34838: Use subclass_of for math.dist. (GH-9659) by Ammar Askar · 6 years ago
  25. fdf282d bpo-35423: Stop using the "pending calls" machinery for signals. (gh-10972) by Eric Snow · 6 years ago
  26. 2a39d25 bpo-35582: Argument Clinic: Optimize the "all boring objects" case. (GH-11520) by Serhiy Storchaka · 6 years ago
  27. 4fa9591 bpo-35582: Argument Clinic: inline parsing code for positional parameters. (GH-11313) by Serhiy Storchaka · 6 years ago
  28. 5485085 bpo-32710: Fix _overlapped.Overlapped memory leaks (GH-11489) by Victor Stinner · 6 years ago
  29. 572168a bpo-35702: Add new identifier time.CLOCK_UPTIME_RAW for macOS 10.12 (GH-11503) by Joannah Nanjekye · 6 years ago
  30. a234e14 bpo-32710: Fix leak in Overlapped_WSASend() (GH-11469) by Victor Stinner · 6 years ago
  31. c24c6c2 bpo-35568: add 'raise_signal' function (GH-11335) by Vladimir Matveev · 6 years ago
  32. 2d53bed bpo-35664: Optimize operator.itemgetter (GH-11435) by Raymond Hettinger · 6 years ago
  33. d466c43 closes bpo-35643: Fix a SyntaxWarning: invalid escape sequence in Modules/_sha3/cleanup.py (GH-11411) by Mickaël Schoentgen · 6 years ago
  34. 052b2df bpo-32492: Tweak _collections._tuplegetter. (GH-11367) by Serhiy Storchaka · 6 years ago
  35. 1d300ce bpo-35214: Annotate posix calls for clang MSan. (#11389) by Gregory P. Smith · 6 years ago
  36. 6f9bc72 bpo-35550: Fix incorrect Solaris define guards (GH-11275) by Jakub Kulík · 6 years ago
  37. c7e2191 Dead code removal from _hashopenssl. (GH-11379) by Gregory P. Smith · 6 years ago
  38. b474e67 bpo-35214: MSan workarounds for socket, time, and test_faulthandler. (GH-11375) by Gregory P. Smith · 6 years ago
  39. 387512c bpo-28503: Use crypt_r() when available instead of crypt() (GH-11373) by Gregory P. Smith · 6 years ago
  40. 3f5fc70 bpo-32492: 1.6x speed up in namedtuple attribute access using C fast-path (#10495) by Pablo Galindo · 6 years ago
  41. e2926b7 bpo-34373: fix test_mktime and test_pthread_getcpuclickid tests on AIX (GH-8726) by Michael Felt · 6 years ago
  42. c6c7237 bpo-20182: AC convert remaining functions/methods in _hashopenssl.c (GH-9213) by Tal Einat · 6 years ago
  43. 22462da bpo-27643 - skip test_ctypes test case with XLC compiler. (GH-5164) by Michael Felt · 6 years ago
  44. 32d96a2 bpo-23867: Argument Clinic: inline parsing code for a single positional parameter. (GH-9689) by Serhiy Storchaka · 6 years ago
  45. d77d97c bpo-35529: Fix a reference counting bug in PyCFuncPtr_FromDll(). (GH-11229) by Zackery Spytz · 6 years ago
  46. d2a75c6 bpo-35502: Fix reference leaks in ElementTree.TreeBuilder. (GH-11170) by Serhiy Storchaka · 6 years ago
  47. 842acaa bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11175) by Zackery Spytz · 6 years ago
  48. 4db62e1 bpo-35490: Remove the DecodeFSDefault return converter in AC. (#11152) by Serhiy Storchaka · 6 years ago
  49. e991270 bpo-35415: validate fileno argument to socket.socket (GH-10917) by Dima Tisnek · 6 years ago
  50. afb3e71 bpo-35489: Use "const Py_UNICODE *" for the Py_UNICODE converter in AC. (GH-11150) by Serhiy Storchaka · 6 years ago
  51. 7b36016 bpo-31446: Copy command line that should be passed to CreateProcessW(). (GH-11141) by Vladimir Matveev · 6 years ago
  52. 4fb0b8b bpo-33106: change dbm key deletion error for readonly file from KeyError to dbm.error (#6295) by Xiang Zhang · 6 years ago
  53. 8905fcc bpo-35454: Fix miscellaneous minor issues in error handling. (#11077) by Serhiy Storchaka · 6 years ago
  54. bb86bf4 bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11047) by Serhiy Storchaka · 6 years ago
  55. b6ef6f6 bpo-31374: expat doesn't include <pyconfig.h> on Windows (GH-11079) by Victor Stinner · 6 years ago
  56. fc662ac bpo-32788: Better error handling in sqlite3. (GH-3723) by Serhiy Storchaka · 6 years ago
  57. cf24735 bpo-31374: Include pyconfig.h earlier in expat (GH-11064) by Victor Stinner · 6 years ago
  58. 2eb6ad8 bpo-35050: AF_ALG length check off-by-one error (GH-10058) by Christian Heimes · 6 years ago
  59. 6fef0f1 bpo-35445: Do not ignore memory errors when create posix.environ. (GH-11049) by Serhiy Storchaka · 6 years ago
  60. e448f9c Remove a duplicate descriptor in gdbm. (GH-11053) by Serhiy Storchaka · 6 years ago
  61. 99d56b5 bpo-35441: Remove dead and buggy code related to PyList_SetItem(). (GH-11033) by Zackery Spytz · 6 years ago
  62. 1133a8c bpo-22005: Fix condition for unpickling a date object. (GH-11025) by Serhiy Storchaka · 6 years ago
  63. 8452ca1 bpo-22005: Fixed unpickling instances of datetime classes pickled by Python 2. (GH-11017) by Serhiy Storchaka · 6 years ago
  64. 4c49da0 bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-11015) by Zackery Spytz · 6 years ago
  65. 3ffa8b9 bpo-35384: The repr of ctypes.CArgObject no longer fails for non-ascii character. (GH-10863) by Serhiy Storchaka · 6 years ago
  66. 7f52415 bpo-35310: Clear select() lists before returning upon EINTR (GH-10877) by Oran Avraham · 6 years ago
  67. 34c7f0c bpo-34604: Use %R because of invisible characters or trailing whitespaces. (GH-9165) by William Grzybowski · 6 years ago
  68. 25d3897 bpo-34987: Fix a possible null pointer dereference in _pickle.c's save_reduce(). (GH-9886) by Zackery Spytz · 6 years ago
  69. 5b25f1d bpo-34052: Prevent SQLite functions from setting callbacks on exceptions. (GH-8113) by Sergey Fedoseev · 6 years ago
  70. 398bd27 bpo-32787: Better error handling in ctypes. (#3727) by Serhiy Storchaka · 6 years ago
  71. 3bb150d bpo-35373: Fix PyInit_time() error handling (GH-10865) by Victor Stinner · 6 years ago
  72. ab66149 bpo-35373: Fix PyInit_timezone() if HAVE_DECL_TZNAME is defined (GH-10861) by Victor Stinner · 6 years ago
  73. 062cbb6 bpo-10320: Replace nonstandard sprintf() length modifier in ctypes' PyCArg_repr(). (GH-10853) by Zackery Spytz · 6 years ago
  74. 32bc11c bpo-35371: Fix possible crash in os.utime() on Windows. (GH-10844) by Serhiy Storchaka · 6 years ago
  75. 503ce5c get_gmtoff() now returns time_t (GH-10838) by Victor Stinner · 6 years ago
  76. 1600f60 Fix compiler warning in call_readline() (GH-10820) by Victor Stinner · 6 years ago
  77. a2e3585 bpo-35356: Fix a possible reference leak in nis.maps(). (GH-10808) by Zackery Spytz · 6 years ago
  78. 1cdfcfc bpo-35337: Fix gettmarg(): use PyStructSequence_GET_ITEM() (GH-10765) by Victor Stinner · 6 years ago
  79. d4f9cf5 bpo-33029: Fix signatures of getter and setter functions. (GH-10746) by Serhiy Storchaka · 6 years ago
  80. 62be742 bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749) by Serhiy Storchaka · 6 years ago
  81. 8152402 bpo-33012: Fix signatures of METH_NOARGS funstions. (GH-10736) by Serhiy Storchaka · 6 years ago
  82. 4a934d4 bpo-33012: Fix invalid function cast warnings with gcc 8 in Argument Clinic. (GH-6748) by Serhiy Storchaka · 6 years ago
  83. da324d5 closes bpo-34212: Build core extension modules with Py_BUILD_CORE_BUILTIN. (GH-8712) by E. M. Bray · 6 years ago
  84. ec13b93 bpo-35081: Add Include/internal/pycore_tupleobject.h (GH-10705) by Victor Stinner · 6 years ago
  85. 5b83ef7 bpo-35303: Fix a reference leak in _operator.c's methodcaller_repr(). (GH-10689) by Zackery Spytz · 6 years ago
  86. b409ffa bpo-35189: Retry fnctl calls on EINTR (GH-10413) by nierob · 6 years ago
  87. 3bb183d bpo-35177, Python-ast.h: Fix "Yield" compiler warning (GH-10664) by Victor Stinner · 6 years ago
  88. 9a0d7a7 bpo-24658: os.read() reuses _PY_READ_MAX (GH-10657) by Victor Stinner · 6 years ago
  89. 28f468c bpo-9566: Fix compiler warnings in pyexpat.c (GH-10654) by Victor Stinner · 6 years ago
  90. cdbcb77 cjkcodecs: Fix compiler warning (GH-10651) by Victor Stinner · 6 years ago
  91. a42de74 bpo-35059: Cast void* to PyObject* (GH-10650) by Victor Stinner · 6 years ago
  92. b37672d bpo-35059: Cleanup usage of Python macros (GH-10648) by Victor Stinner · 6 years ago
  93. 271753a bpo-35059: Convert _PyObject_GC_TRACK() to inline function (GH-10643) by Victor Stinner · 6 years ago
  94. bcda8f1 bpo-35081: Add Include/internal/pycore_object.h (GH-10640) by Victor Stinner · 6 years ago
  95. b1dede3 bpo-25750: Fix a compiler warning introduced in GH-9084. (GH-10234) by Serhiy Storchaka · 6 years ago
  96. 3ec0f49 bpo-35021: Fix assertion failures in _datetimemodule.c. (GH-10039) by Serhiy Storchaka · 6 years ago
  97. 02e6bf7 bpo-28604: Fix localeconv() for different LC_MONETARY (GH-10606) by Victor Stinner · 6 years ago
  98. 4c596d5 Fix a possible reference leak in _socket.getaddrinfo(). (GH-10543) by Zackery Spytz · 6 years ago
  99. 01de89c bpo-35233: InitConfigTests tests more config vars (GH-10541) by Victor Stinner · 6 years ago
  100. 7ddd56f bpo-35233: Rewrite test_embed.InitConfigTests (GH-10524) by Victor Stinner · 6 years ago