1. 79d1c2e bpo-25711: Rewrite zipimport in pure Python. (GH-6809) by Serhiy Storchaka · 6 years ago
  2. cb5778f bpo-34623: Use XML_SetHashSalt in _elementtree (GH-9146) by Christian Heimes · 6 years ago
  3. 0185f34 bpo-33721: Make some os.path functions and pathlib.Path methods be tolerant to invalid paths. (#7695) by Serhiy Storchaka · 6 years ago
  4. 7bdf282 bpo-32455: Add jump parameter to dis.stack_effect(). (GH-6610) by Serhiy Storchaka · 6 years ago
  5. 7a0791b bpo-34589: C locale coercion off by default (GH-9073) by Victor Stinner · 6 years ago
  6. 188ebfa bpo-34589: Make _PyCoreConfig.coerce_c_locale private (GH-9371) by Victor Stinner · 6 years ago
  7. 1fb399b bpo-34715: Revert "Simplify PyInit_timezone. (GH-9323)" (GH-9366) by Victor Stinner · 6 years ago
  8. c6fd1c1 bpo-32533: Fixed thread-safety of error handling in _ssl. (GH-7158) by Steve Dower · 6 years ago
  9. 12a69db Convert os.readlink() to Argument Clinic. (GH-8778) by Serhiy Storchaka · 6 years ago
  10. b3a271f bpo-34710: fix SSL module build (GH-9347) by Alexandru Ardelean · 6 years ago
  11. 7843cae bpo-34603, ctypes/libffi_msvc: Fix returning structs from functions (GH-9258) by Vladimir Matveev · 6 years ago
  12. afde1c1 Simplify PyInit_timezone. (GH-9323) by Benjamin Peterson · 6 years ago
  13. 5903296 bpo-34651: Only allow the main interpreter to fork. (gh-9279) by Eric Snow · 6 years ago
  14. b93062b bpo-34672: Don't pass NULL to gmtime_r. (GH-9312) by Benjamin Peterson · 6 years ago
  15. 5633c4f bpo-34672: Try to pass the C library's own timezone strings back to it. (GH-9288) by Benjamin Peterson · 6 years ago
  16. ea13740 bpo-34674: Assume unistd.h exists on Unix. (GH-9290) by Benjamin Peterson · 6 years ago
  17. 1401018 Remove wording that could be deemed to be perjorative (GH-9287) by Raymond Hettinger · 6 years ago
  18. a20b6ad bpo-34658: Fix rare subprocess prexec_fn fork error. (GH-9255) by Gregory P. Smith · 6 years ago
  19. 6f82bff bpo-34649: Add missing NULL checks to _encoded_const() (GH-9225) by Alexey Izbyshev · 6 years ago
  20. 0bd1a2d bpo-31577: Fix a crash in os.utime() in case of a bad ns argument. (GH-3752) by Oren Milman · 6 years ago
  21. e502451 closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218) by Benjamin Peterson · 6 years ago
  22. 7f0d59f Simplified implementation of _sre.ascii_iscased(). (GH-9097) by Sergey Fedoseev · 6 years ago
  23. 731ff68 closes bpo-25041: Document AF_PACKET socket address format. (GH-4092) by Cheryl Sabella · 6 years ago
  24. b9bf9d0 Delete old expat comment. (GH-9197) by Benjamin Peterson · 6 years ago
  25. 4859ba0 closes bpo-31903: Release the GIL when calling into SystemConfiguration (GH-4178) by Max Bélanger · 6 years ago
  26. ec014a1 bpo-34636: Use fast path for more chars in SRE category macros. (GH-9170) by Sergey Fedoseev · 6 years ago
  27. c4bccd3 bpo-20180: convert most of itertoolsmodule.c to use Argument Clinic (GH-9164) by Tal Einat · 6 years ago
  28. 24bd50b closes bpo-31608: Fix a crash in methods of a subclass of _collections.deque with a bad __new__(). (GH-3788) by Oren Milman · 6 years ago
  29. b690b9b bpo-29386: Pass -1 to epoll_wait() when timeout is < -1 (GH-9040) by Berker Peksag · 6 years ago
  30. 0baa72f bpo-34622: Extract asyncio exceptions into a separate module (GH-9141) by Andrew Svetlov · 6 years ago
  31. 735171e closes bpo-29832: Remove "getsockaddrarg" from error messages. (GH-3163) by Oren Milman · 6 years ago
  32. 5033aa7 bpo-34625: Update vendorized expat version to 2.2.6. (GH-9150) by Benjamin Peterson · 6 years ago
  33. ce34410 bpo-32270: Don't close stdin/out/err in pass_fds (GH-6242) by Gregory P. Smith · 6 years ago
  34. 3286ce4 bpo-20180: itertools.groupby Argument Clinic conversion (GH-4170) by Tal Einat · 6 years ago
  35. 0e0bc4e Fix misleading mentions of tp_size in comments (GH-9093) by Peter Eisentraut · 6 years ago
  36. d700f97 bpo-20104: Change the file_actions parameter of os.posix_spawn(). (GH-6725) by Serhiy Storchaka · 6 years ago
  37. 2865848 bpo-34604: Fix possible mojibake in pwd.getpwnam() and grp.getgrnam() (GH-9098) by William Grzybowski · 6 years ago
  38. 254a466 bpo-20104: Add flag capabilities to posix_spawn (GH-6693) by Pablo Galindo · 6 years ago
  39. 23e65b2 bpo-33625: Release GIL for grp.getgr{nam,gid} and pwd.getpw{nam,uid} (GH-7081) by William Grzybowski · 6 years ago
  40. f9925d8 _sre.c: Removed unused SRE_IS_ALNUM macro (GH-9090) by Sergey Fedoseev · 6 years ago
  41. 874809e closes bpo-34581 : Conditionalize use of __pragma in Modules/socketmodule.c. (GH-9067) by Erik Janssens · 6 years ago
  42. 266f490 bpo-34563: Fix for invalid assert on big output of multiprocessing.Process (GH-9027) by Alexander Buchkovsky · 6 years ago
  43. e9ba370 bpo-33083 - Make math.factorial reject arguments that are not int-like (GH-6149) by Pablo Galindo · 6 years ago
  44. 73b00be bpo-34544: pymain_read_conf() don't change LC_ALL (GH-9045) by Victor Stinner · 6 years ago
  45. 2094c2b bpo-34567: pythoninfo gets coreconfig (GH-9043) by Victor Stinner · 6 years ago
  46. f01b2a1 bpo-34544: Fix setlocale() in pymain_read_conf() (GH-9041) by Victor Stinner · 6 years ago
  47. f326714 Minor improvement to code clarity (GH-9036) by Raymond Hettinger · 6 years ago
  48. 2d7102e closes bpo-34555: Fix incorrectly nested test for HAVE_LINUX_VM_SOCKETS_H (GH-9016) by Thomas Herzog · 6 years ago
  49. 745c0f3 Simplify vector_norm() by eliminating special cases in the main loop (GH-9006) by Raymond Hettinger · 6 years ago
  50. fbca908 bpo-34523: Use _PyCoreConfig instead of globals (GH-9005) by Victor Stinner · 6 years ago
  51. 3d4226a bpo-34523: Support surrogatepass in locale codecs (GH-8995) by Victor Stinner · 6 years ago
  52. c5989cd bpo-34523: Py_DecodeLocale() use UTF-8 on Windows (GH-8998) by Victor Stinner · 6 years ago
  53. b2457ef bpo-34523: Add _PyCoreConfig.filesystem_encoding (GH-8963) by Victor Stinner · 6 years ago
  54. 177d921 bpo-34485, Windows: LC_CTYPE set to user preference (GH-8988) by Victor Stinner · 6 years ago
  55. 21786f5 Improve commutativity of math.hypot() and math.dist() (GH-8984) by Raymond Hettinger · 6 years ago
  56. 124b9eb bpo-34485: Add _Py_ClearStandardStreamEncoding() (GH-8982) by Victor Stinner · 6 years ago
  57. 2c8ddcf bpo-34485: Fix _Py_InitializeCore() for C locale coercion (GH-8979) by Victor Stinner · 6 years ago
  58. 9e4994d bpo-34485: Enhance init_sys_streams() (GH-8978) by Victor Stinner · 6 years ago
  59. 74734f7 Fast path for exact floats in math.hypot() and math.dist() (GH-8949) by Raymond Hettinger · 6 years ago
  60. 1871a4a Remove unneeded PyErr_Clear() in _winapi_SetNamedPipeHandleState_impl() (GH-8281) by Zackery Spytz · 6 years ago
  61. 90555ec bpo-34395: Don't free allocated memory on realloc fail in load_mark() in _pickle.c. (GH-8788) by Sergey Fedoseev · 6 years ago
  62. 86b8991 Fix upsizing of marks stack in pickle module. (GH-8860) by Sergey Fedoseev · 6 years ago
  63. 76be0ff bpo-13312: Avoid int underflow in time year. (GH-8912) by Gregory P. Smith · 6 years ago
  64. 4988453 closes bpo-34471: _datetime: Add missing NULL check to tzinfo_from_isoformat_results. (GH-8869) by Alexey Izbyshev · 6 years ago
  65. 096329f bpo-34454: fix .fromisoformat() methods crashing on inputs with surrogate code points (GH-8862) by Paul Ganssle · 6 years ago
  66. 48ce489 bpo-34412: Make signal.strsignal() work on HP-UX (GH-8786) by Michael Osipov · 6 years ago
  67. 89487f5 bpo-34207: Fix pymain_read_conf() for UTF-8 Mode (GH-8868) by Victor Stinner · 6 years ago
  68. c583919 bpo-34462: Add missing NULL check to _copy_raw_string() (GH-8863) by Alexey Izbyshev · 6 years ago
  69. e7d4b2f bpo-2122: Make mmap.flush() behave same on all platforms (GH-8692) by Berker Peksag · 6 years ago
  70. f8c06b0 bpo-34456: pickle: Add missing NULL check to save_global(). (GH-8851) by Alexey Izbyshev · 6 years ago
  71. cdbf50c bpo-34441: Fix ABC.__subclasscheck__ crash on classes with invalid __subclasses__ (GH-8835) by Alexey Izbyshev · 6 years ago
  72. 0e6e7a1 bpo-34419: selectmodule.c does not compile on HP-UX due to bpo-31938 (GH-8796) by Michael Osipov · 6 years ago
  73. e6a4755 bpo-34217: Use lowercase for windows headers (GH-8472) by Erik Janssens · 6 years ago
  74. 67b9cc8 bpo-34395: Fix memory leaks caused by incautious usage of PyMem_Resize(). (GH-8756) by Sergey Fedoseev · 6 years ago
  75. e0b5b20 bpo-34384: Fix os.readlink() on Windows (GH-8740) by Berker Peksag · 6 years ago
  76. a47f394 Minor code clean-up. Don't alter the input vector. Use variables instead. GH-8748 by Raymond Hettinger · 6 years ago
  77. 0041459 Add more tests and assertions for math.hypot() and math.dist() (GH-8747) by Raymond Hettinger · 6 years ago
  78. c630e10 Factor-out common code. Also, optimize common cases by preallocating space on the stack. GH-8738 by Raymond Hettinger · 6 years ago
  79. 1399074 Replace straight addition with Kahan summation and move max to the end (GH-8727) by Raymond Hettinger · 6 years ago
  80. a754823 Fixed inconsistency in string handling in the Task C implementation (GH-8717) by Alex Grönholm · 6 years ago
  81. cca4eec bpo-34270: Make it possible to name asyncio tasks (GH-8547) by Alex Grönholm · 6 years ago
  82. 8b58468 Remove unneeded PyErr_Clear() calls after PyErr_Print(). (GH-8699) by Zackery Spytz · 6 years ago
  83. d807862 bpo-34170: Fix pymain_run_file() (GH-8660) by Victor Stinner · 6 years ago
  84. caba55b bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592) by Victor Stinner · 6 years ago
  85. 2ebd381 Fix docstring of Profiler class (GH-8651) by INADA Naoki · 6 years ago
  86. 72ec319 bpo-34170: Cleanup pymain_run_filename() (GH-8631) by Victor Stinner · 6 years ago
  87. fc512e3 bpo-34287: Do not use second argument of METH_NOARGS functions (GH-8582) by jdemeyer · 6 years ago
  88. 80b762f bpo-31650: Remove _Py_CheckHashBasedPycsMode global config var (GH-8608) by Victor Stinner · 6 years ago
  89. 6c785c0 bpo-34170: Add Python/coreconfig.c for _PyCoreConfig (GH-8607) by Victor Stinner · 6 years ago
  90. fc96437 bpo-33499: Fix pymain_init_pycache_prefix() (GH-8596) by Victor Stinner · 6 years ago
  91. ea68d83 bpo-34170: _PyCoreConfig_Read() defaults to argc=0 (GH-8595) by Victor Stinner · 6 years ago
  92. 9851227 bpo-34170: Rename _PyCoreConfig.unbuffered_stdip (GH-8594) by Victor Stinner · 6 years ago
  93. a4d20b2 bpo-34170: Py_Main() updates config when setting Py_InspectFlag (GH-8593) by Victor Stinner · 6 years ago
  94. b75d7e2 bpo-34170: Add _PyCoreConfig._frozen parameter (GH-8591) by Victor Stinner · 6 years ago
  95. 9c18b1a bpo-33089: Add math.dist() for computing the Euclidean distance between two points (GH-8561) by Raymond Hettinger · 6 years ago
  96. 9d57273 bpo-33871: Fix os.sendfile(), os.writev(), os.readv(), etc. (GH-7931) by Serhiy Storchaka · 6 years ago
  97. f1d36d8 bpo-33729: Fix issues with arguments parsing in hashlib. (GH-8346) by Serhiy Storchaka · 6 years ago
  98. b229b07 Remove creation of a list for row_cast_map in pysqlite_cursor_init() (GH-8494) by Sergey Fedoseev · 6 years ago
  99. b7fd738 bpo-34231: PYTHONBREAKPOINT is not documented on python --help (GH-8475) by Stéphane Wirtel · 6 years ago
  100. c6dabe3 bpo-33089: Multidimensional math.hypot() (GH-8474) by Raymond Hettinger · 6 years ago