1. 2865848 bpo-34604: Fix possible mojibake in pwd.getpwnam() and grp.getgrnam() (GH-9098) by William Grzybowski · 6 years ago
  2. 254a466 bpo-20104: Add flag capabilities to posix_spawn (GH-6693) by Pablo Galindo · 6 years ago
  3. 23e65b2 bpo-33625: Release GIL for grp.getgr{nam,gid} and pwd.getpw{nam,uid} (GH-7081) by William Grzybowski · 6 years ago
  4. f9925d8 _sre.c: Removed unused SRE_IS_ALNUM macro (GH-9090) by Sergey Fedoseev · 6 years ago
  5. 874809e closes bpo-34581 : Conditionalize use of __pragma in Modules/socketmodule.c. (GH-9067) by Erik Janssens · 6 years ago
  6. 266f490 bpo-34563: Fix for invalid assert on big output of multiprocessing.Process (GH-9027) by Alexander Buchkovsky · 6 years ago
  7. e9ba370 bpo-33083 - Make math.factorial reject arguments that are not int-like (GH-6149) by Pablo Galindo · 6 years ago
  8. 73b00be bpo-34544: pymain_read_conf() don't change LC_ALL (GH-9045) by Victor Stinner · 6 years ago
  9. 2094c2b bpo-34567: pythoninfo gets coreconfig (GH-9043) by Victor Stinner · 6 years ago
  10. f01b2a1 bpo-34544: Fix setlocale() in pymain_read_conf() (GH-9041) by Victor Stinner · 6 years ago
  11. f326714 Minor improvement to code clarity (GH-9036) by Raymond Hettinger · 6 years ago
  12. 2d7102e closes bpo-34555: Fix incorrectly nested test for HAVE_LINUX_VM_SOCKETS_H (GH-9016) by Thomas Herzog · 6 years ago
  13. 745c0f3 Simplify vector_norm() by eliminating special cases in the main loop (GH-9006) by Raymond Hettinger · 6 years ago
  14. fbca908 bpo-34523: Use _PyCoreConfig instead of globals (GH-9005) by Victor Stinner · 6 years ago
  15. 3d4226a bpo-34523: Support surrogatepass in locale codecs (GH-8995) by Victor Stinner · 6 years ago
  16. c5989cd bpo-34523: Py_DecodeLocale() use UTF-8 on Windows (GH-8998) by Victor Stinner · 6 years ago
  17. b2457ef bpo-34523: Add _PyCoreConfig.filesystem_encoding (GH-8963) by Victor Stinner · 6 years ago
  18. 177d921 bpo-34485, Windows: LC_CTYPE set to user preference (GH-8988) by Victor Stinner · 6 years ago
  19. 21786f5 Improve commutativity of math.hypot() and math.dist() (GH-8984) by Raymond Hettinger · 6 years ago
  20. 124b9eb bpo-34485: Add _Py_ClearStandardStreamEncoding() (GH-8982) by Victor Stinner · 6 years ago
  21. 2c8ddcf bpo-34485: Fix _Py_InitializeCore() for C locale coercion (GH-8979) by Victor Stinner · 6 years ago
  22. 9e4994d bpo-34485: Enhance init_sys_streams() (GH-8978) by Victor Stinner · 6 years ago
  23. 74734f7 Fast path for exact floats in math.hypot() and math.dist() (GH-8949) by Raymond Hettinger · 6 years ago
  24. 1871a4a Remove unneeded PyErr_Clear() in _winapi_SetNamedPipeHandleState_impl() (GH-8281) by Zackery Spytz · 6 years ago
  25. 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
  26. 86b8991 Fix upsizing of marks stack in pickle module. (GH-8860) by Sergey Fedoseev · 6 years ago
  27. 76be0ff bpo-13312: Avoid int underflow in time year. (GH-8912) by Gregory P. Smith · 6 years ago
  28. 4988453 closes bpo-34471: _datetime: Add missing NULL check to tzinfo_from_isoformat_results. (GH-8869) by Alexey Izbyshev · 6 years ago
  29. 096329f bpo-34454: fix .fromisoformat() methods crashing on inputs with surrogate code points (GH-8862) by Paul Ganssle · 6 years ago
  30. 48ce489 bpo-34412: Make signal.strsignal() work on HP-UX (GH-8786) by Michael Osipov · 6 years ago
  31. 89487f5 bpo-34207: Fix pymain_read_conf() for UTF-8 Mode (GH-8868) by Victor Stinner · 6 years ago
  32. c583919 bpo-34462: Add missing NULL check to _copy_raw_string() (GH-8863) by Alexey Izbyshev · 6 years ago
  33. e7d4b2f bpo-2122: Make mmap.flush() behave same on all platforms (GH-8692) by Berker Peksag · 6 years ago
  34. f8c06b0 bpo-34456: pickle: Add missing NULL check to save_global(). (GH-8851) by Alexey Izbyshev · 6 years ago
  35. cdbf50c bpo-34441: Fix ABC.__subclasscheck__ crash on classes with invalid __subclasses__ (GH-8835) by Alexey Izbyshev · 6 years ago
  36. 0e6e7a1 bpo-34419: selectmodule.c does not compile on HP-UX due to bpo-31938 (GH-8796) by Michael Osipov · 6 years ago
  37. e6a4755 bpo-34217: Use lowercase for windows headers (GH-8472) by Erik Janssens · 6 years ago
  38. 67b9cc8 bpo-34395: Fix memory leaks caused by incautious usage of PyMem_Resize(). (GH-8756) by Sergey Fedoseev · 6 years ago
  39. e0b5b20 bpo-34384: Fix os.readlink() on Windows (GH-8740) by Berker Peksag · 6 years ago
  40. a47f394 Minor code clean-up. Don't alter the input vector. Use variables instead. GH-8748 by Raymond Hettinger · 6 years ago
  41. 0041459 Add more tests and assertions for math.hypot() and math.dist() (GH-8747) by Raymond Hettinger · 6 years ago
  42. c630e10 Factor-out common code. Also, optimize common cases by preallocating space on the stack. GH-8738 by Raymond Hettinger · 6 years ago
  43. 1399074 Replace straight addition with Kahan summation and move max to the end (GH-8727) by Raymond Hettinger · 6 years ago
  44. a754823 Fixed inconsistency in string handling in the Task C implementation (GH-8717) by Alex Grönholm · 6 years ago
  45. cca4eec bpo-34270: Make it possible to name asyncio tasks (GH-8547) by Alex Grönholm · 6 years ago
  46. 8b58468 Remove unneeded PyErr_Clear() calls after PyErr_Print(). (GH-8699) by Zackery Spytz · 6 years ago
  47. d807862 bpo-34170: Fix pymain_run_file() (GH-8660) by Victor Stinner · 6 years ago
  48. caba55b bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592) by Victor Stinner · 6 years ago
  49. 2ebd381 Fix docstring of Profiler class (GH-8651) by INADA Naoki · 6 years ago
  50. 72ec319 bpo-34170: Cleanup pymain_run_filename() (GH-8631) by Victor Stinner · 6 years ago
  51. fc512e3 bpo-34287: Do not use second argument of METH_NOARGS functions (GH-8582) by jdemeyer · 6 years ago
  52. 80b762f bpo-31650: Remove _Py_CheckHashBasedPycsMode global config var (GH-8608) by Victor Stinner · 6 years ago
  53. 6c785c0 bpo-34170: Add Python/coreconfig.c for _PyCoreConfig (GH-8607) by Victor Stinner · 6 years ago
  54. fc96437 bpo-33499: Fix pymain_init_pycache_prefix() (GH-8596) by Victor Stinner · 6 years ago
  55. ea68d83 bpo-34170: _PyCoreConfig_Read() defaults to argc=0 (GH-8595) by Victor Stinner · 6 years ago
  56. 9851227 bpo-34170: Rename _PyCoreConfig.unbuffered_stdip (GH-8594) by Victor Stinner · 6 years ago
  57. a4d20b2 bpo-34170: Py_Main() updates config when setting Py_InspectFlag (GH-8593) by Victor Stinner · 6 years ago
  58. b75d7e2 bpo-34170: Add _PyCoreConfig._frozen parameter (GH-8591) by Victor Stinner · 6 years ago
  59. 9c18b1a bpo-33089: Add math.dist() for computing the Euclidean distance between two points (GH-8561) by Raymond Hettinger · 6 years ago
  60. 9d57273 bpo-33871: Fix os.sendfile(), os.writev(), os.readv(), etc. (GH-7931) by Serhiy Storchaka · 6 years ago
  61. f1d36d8 bpo-33729: Fix issues with arguments parsing in hashlib. (GH-8346) by Serhiy Storchaka · 6 years ago
  62. b229b07 Remove creation of a list for row_cast_map in pysqlite_cursor_init() (GH-8494) by Sergey Fedoseev · 6 years ago
  63. b7fd738 bpo-34231: PYTHONBREAKPOINT is not documented on python --help (GH-8475) by Stéphane Wirtel · 6 years ago
  64. c6dabe3 bpo-33089: Multidimensional math.hypot() (GH-8474) by Raymond Hettinger · 6 years ago
  65. aee632d Remove some unused code in _pysqlite_query_execute() (GH-8495) by Sergey Fedoseev · 6 years ago
  66. d145775 bpo-34170: Cleanup pymain_read_conf() (GH-8476) by Victor Stinner · 6 years ago
  67. e0d67f1 bpo-34201: Make ndarray.readonly a bool and use stricter tests in test_buffer. (GH-8414) by Serhiy Storchaka · 6 years ago
  68. 7cb7bcf bpo-20260: Implement non-bitwise unsigned int converters for Argument Clinic. (GH-8434) by Serhiy Storchaka · 6 years ago
  69. 323748a bpo-34197: Make _csv.Dialect attributes booleans. (GH-8440) by Serhiy Storchaka · 6 years ago
  70. ecf411c bpo-34170: Enhance _PyCoreConfig_Read() (GH-8468) by Victor Stinner · 6 years ago
  71. 60b04c9 bpo-34228: Allow PYTHONTRACEMALLOC=0 (GH-8467) by Victor Stinner · 6 years ago
  72. 96d1e69 bpo-29097: Forego fold detection on windows for low timestamp values (GH-2385) by Ammar Askar · 6 years ago
  73. ee98e7b bpo-34218: Fix a leak in _elementtree.c introduced in GH-6769. (GH-8460) by Serhiy Storchaka · 6 years ago
  74. d3b1919 bpo-34170: Cleanup pymain_run_python() (GH-8455) by Victor Stinner · 6 years ago
  75. 1dc6e39 bpo-34170: Add _Py_InitializeFromConfig() (GH-8454) by Victor Stinner · 6 years ago
  76. 6cf8255 bpo-34217: Use lowercase header for Windows (GH-8453) by erikjanss · 6 years ago
  77. 53b7d4e bpo-34170: Add _PyCoreConfig.bytes_warning (GH-8447) by Victor Stinner · 6 years ago
  78. d19d8d5 bpo-34170: Add _PyCoreConfig.isolated (GH-8417) by Victor Stinner · 6 years ago
  79. 02ec92f bpo-29209: Remove old-deprecated features in ElementTree. (GH-6769) by Serhiy Storchaka · 6 years ago
  80. f2626ce bpo-34170: _PyCoreConfig_Read() leaves Py_IsolatedFlag unchanged (GH-8361) by Victor Stinner · 6 years ago
  81. b1147e4 bpo-34170: Rework _PyCoreConfig_Read() to avoid side effect (GH-8353) by Victor Stinner · 6 years ago
  82. fb47bca bpo-34008: Allow to call Py_Main() after Py_Initialize() (GH-8043) by Victor Stinner · 6 years ago
  83. ce75df3 bpo-30237: Output error when ReadConsole is canceled by CancelSynchronousIo. (GH-7911) by ValeriyaSinevich · 6 years ago
  84. 5d4cb54 bpo-34141: Optimized pickling simple non-recursive values. (GH-8318) by Serhiy Storchaka · 6 years ago
  85. 28f0736 bpo-34068: _io__IOBase_close_impl could call _PyObject_SetAttrId with an exception set (GH-8282) by Zackery Spytz · 6 years ago
  86. 961d54c bpo-32430: Rename Modules/Setup.dist to Modules/Setup (GH-8229) by Antoine Pitrou · 6 years ago
  87. 66953f0 Factor-out two substantially identical code blocks. (GH-8219) by Raymond Hettinger · 6 years ago
  88. 5ac9e6e bpo-33597: Reduce PyGC_Head size (GH-7043) by INADA Naoki · 6 years ago
  89. 7762e4d prefix internal sqlite symbols with _pysqlite_ (GH-8215) by Benjamin Peterson · 6 years ago
  90. d6d4432 delete some unused pysqlite forward declarations (GH-8211) by Benjamin Peterson · 6 years ago
  91. 0830858 bpo-34041: Allow creating deterministic functions in Connection.create_function() (GH-8086) by Sergey Fedoseev · 6 years ago
  92. 9b50a7f Make PySimpleQueueType static. (GH-8175) by Benjamin Peterson · 6 years ago
  93. 6cfe45a Make various internal _testbuffer symbols static. (GH-8160) by Benjamin Peterson · 6 years ago
  94. 4629c0d Hide some symbols from _xxsubinterpreters. (GH-8151) by Benjamin Peterson · 6 years ago
  95. cb4bae7 Make two PyModuleDef_Slot symbols static in _testmultiphase. (GH-8147) by Benjamin Peterson · 6 years ago
  96. 3c8aae9 Make TaskStepMethWrapper_Type and TaskWakeupMethWrapper_Type static. (GH-8127) by Benjamin Peterson · 6 years ago
  97. 97ae32c Make GenericAlias_Type and Generic_Type static. (GH-8076) by Benjamin Peterson · 6 years ago
  98. b4588c2 Don't export pending_threadfunc from _testcapi. (GH-8075) by Benjamin Peterson · 6 years ago
  99. 6dc57e2 bpo-31938: Convert selectmodule.c to Argument Clinic (GH-4265) by Tal Einat · 6 years ago
  100. fdb5a50 bpo-25862: Fix several bugs in the _io module. (GH-8026) by Serhiy Storchaka · 6 years ago