1. 364f0b0 bpo-35810: Incref heap-allocated types in PyObject_Init (GH-11661) by Eddie Elizondo · 5 years ago
  2. 1fc5bf2 Doc: Fixed missing punctuation in datamodel.rst (GH-12581) by Jules Lasne (jlasne) · 5 years ago
  3. bc284f0 bpo-32380: add "versionadded: 3.8" to singledispatchmethod (GH-12580) by Inada Naoki · 5 years ago
  4. da08470 bpo-36431: Use PEP 448 dict unpacking for merging two dicts. (GH-12553) by Serhiy Storchaka · 5 years ago
  5. 384b81d bpo-36407: Fix writing indentations of CDATA section (xml.dom.minidom). (GH-12514) by Vladimir Surjaninov · 5 years ago
  6. f760610 bpo-33832: Add "magic method" glossary entry (GH-7630) by Andre Delfino · 5 years ago
  7. dfd775a Minor doc improvement (GH-10341) by Andre Delfino · 5 years ago
  8. 484f20d bpo-36444: Add _PyCoreConfig._init_main (GH-12572) by Victor Stinner · 5 years ago
  9. 8b9dbc0 bpo-36444: Remove _PyMainInterpreterConfig (GH-12571) by Victor Stinner · 5 years ago
  10. 6a258c8 bpo-36429: Fix starting IDLE with pyshell (#12548) by Terry Jan Reedy · 5 years ago
  11. 6da20a4 bpo-36301: Test Python init with isolated (GH-12569) by Victor Stinner · 5 years ago
  12. 6cd658b bpo-34203: FAQ: improve wording of paragraph about 2.x vs. 3.x (GH-9821) by Tal Einat · 5 years ago
  13. 3b7e47a bpo-36364: fix SharedMemoryManager examples (GH-12439) by Pierre Glaser · 5 years ago
  14. f8ba6f5 bpo-36301: Cleanup preconfig.c and coreconfig.c (GH-12563) by Victor Stinner · 5 years ago
  15. 414b1cd bpo-36436: Fix _testcapi.pymem_buffer_overflow() (GH-12560) by Victor Stinner · 5 years ago
  16. 871309c bpo-36433: fix confusing error messages in classmethoddescr_call (GH-12556) by Inada Naoki · 5 years ago
  17. b4d8f28 Post v3.8.0a3 by Łukasz Langa · 5 years ago
  18. 9f966df Merge tag 'v3.8.0a3' by Łukasz Langa · 5 years ago
  19. 0523c39 bpo-36430: Fix a possible reference leak in itertools.count(). (GH-12551) by Zackery Spytz · 5 years ago
  20. 3e700e4 Document that logging registers shutdown as an atexit handler (GH-12378) by Andre Delfino · 5 years ago
  21. 577277f Fix "the the" in the idle docs. (GH-12549) by Benjamin Peterson · 5 years ago
  22. 2000495 bpo-36301: Remove _PyCoreConfig.preconfig (GH-12546) by Victor Stinner · 5 years ago
  23. f78a5e9 bpo-36301: Add _Py_GetEnv() function (GH-12542) by Victor Stinner · 5 years ago
  24. 548cb60 bpo-34085: Improve wording on classmethod/staticmethod (#8228) by Andre Delfino · 5 years ago
  25. 360e1e4 bpo-36345: Add a new example in the documentation of wsgiref (#12511) by Stéphane Wirtel · 5 years ago
  26. 1075d16 bpo-36301: Add _Py_GetConfigsAsDict() function (GH-12540) by Victor Stinner · 5 years ago
  27. 91759d9 bpo-36143: Regenerate Lib/keyword.py from the Grammar and Tokens file using pgen (GH-12456) by Pablo Galindo · 5 years ago
  28. 027b09c bpo-36370: Check for PyErr_Occurred() after PyImport_GetModule() (GH-12504) by Stefan Krah · 5 years ago
  29. d1e768a bpo-36326: Let inspect.getdoc() find docstrings for __slots__ (GH-12498) by Raymond Hettinger · 5 years ago
  30. 713a8ae Add note to Queue.get() docs about block=True (GH-2223) by Stephen Rosen · 5 years ago
  31. 9a44885 v3.8.0a3 by Łukasz Langa · 5 years ago
  32. a6fbc4e bpo-36301: Add _Py_PreInitializeFromConfig() (GH-12536) by Victor Stinner · 5 years ago
  33. f72346c bpo-36301: Cleanup preconfig code (GH-12535) by Victor Stinner · 5 years ago
  34. 68d228f bpo-35884: Add string-keys-only microbenchmark for dict access to var_access_benchmark.py (GH-11905) by Stefan Behnel · 5 years ago
  35. 5e33378 bpo-36421: Fix a possible double decref in _ctypes.c's PyCArrayType_new(). (GH-12530) by Zackery Spytz · 5 years ago
  36. dd5417a bpo-36218: Fix handling of heterogeneous values in list.sort (GH-12209) by Rémi Lapeyre · 5 years ago
  37. 9dcc095 Fix line ending (GH-12531) by Raymond Hettinger · 5 years ago
  38. 62be338 bpo-36401: Have help() show readonly properties separately (GH-12517) by Raymond Hettinger · 5 years ago
  39. 113d735 bpo-30348: IDLE: Add test_autocomplete unittest (GH-2209) by Louie Lu · 5 years ago
  40. 13c1f72 bpo-31822: Document that urllib.parse.{Defrag,Split,Parse}Result are namedtuples (GH-4434) by Lisa Roach · 5 years ago
  41. 0fe4513 bpo-36405: IDLE - Restore __main__ and add tests (#12518) by Terry Jan Reedy · 5 years ago
  42. 6661c17 Replace "DOS box" with link to Windows FAQ. (GH-12390) by Ned Deily · 5 years ago
  43. 3d07c1e bpo-36412: fix a possible crash in dictobject.c's new_dict() (GH-12519) by Zackery Spytz · 5 years ago
  44. a7987e7 bpo-32217: Correct usage of ABI tags in freeze. (GH-4719) by AraHaan · 5 years ago
  45. d3c72a2 bpo-36381: warn when no PY_SSIZE_T_CLEAN defined (GH-12473) by Inada Naoki · 5 years ago
  46. d60f658 bpo-23205: IDLE: Add tests and refactor grep's findfiles (GH-12203) by Cheryl Sabella · 5 years ago
  47. 6d5ee97 bpo-36301: Add _PyRuntimeState.preconfig (GH-12506) by Victor Stinner · 5 years ago
  48. 2b75155 bpo-36405: Use dict unpacking in idlelib (#12507) by Terry Jan Reedy · 5 years ago
  49. 7a2e84c bpo-33319: Clarify subprocess call docs. (GH-12508) by Gregory P. Smith · 5 years ago
  50. 7c822e5 Fix typo in doc for pprint.pp (GH-12500) by Xavier GUIHOT · 5 years ago
  51. c141957 bpo-36396: Remove fgBg param of idlelib.config.GetHighlight() (GH-12491) by Terry Jan Reedy · 5 years ago
  52. 5086589 bpo-36298: Raise ModuleNotFoundError in pyclbr when a module can't be found (GH-12358) by Brett Cannon · 5 years ago
  53. dd7c4ce bpo-35155: clarify protocol handler method naming (GH-10313) by Denton Liu · 5 years ago
  54. 96831c7 bpo-30670: Add pp function to the pprint module (GH-11769) by Rémi Lapeyre · 5 years ago
  55. c5c6cda asyncio: PendingDeprecationWarning -> DeprecationWarning (GH-12494) by Inada Naoki · 5 years ago
  56. b0df45e bpo-21269: Provide args and kwargs attributes on mock call objects GH11807 by Kumar Akshay · 5 years ago
  57. 40b6907 Raise the timeout in test_multiprocessing_* for slow buildbots (GH-12489) by Pablo Galindo · 5 years ago
  58. 97f5de0 bpo-35284: Fix the error handling in the compiler's compiler_call(). (GH-10625) by Zackery Spytz · 5 years ago
  59. 93e8012 bpo-36398: Fix a possible crash in structseq_repr(). (GH-12492) by Zackery Spytz · 5 years ago
  60. 9a0000d bpo-36256: Fix bug in parsermodule when parsing if statements (GH-12477) by Pablo Galindo · 5 years ago
  61. aedc273 Fix registry key for Windows SDK detection (GH-12445) by Isuru Fernando · 5 years ago
  62. 8bba81f bpo-35978: Correctly skips venv tests in venvs (GH-12220) by Steve Dower · 5 years ago
  63. 7ee88bf bpo-36245: Avoid problems when building in a directory containing spaces. (GH-12241) by Jess · 5 years ago
  64. 14e3c44 Fix table formatting in itertools doc (GH-12228) by Benedikt Werner · 5 years ago
  65. e680c3d bpo-36268: Change default tar format to pax from GNU. (GH-12355) by CAM Gerlach · 5 years ago
  66. ed5e29c bpo-36385: Add ``elif`` sentence on to avoid multiple ``if`` (GH-12478) by Emmanuel Arias · 5 years ago
  67. 2afb598 bpo-36324: NormalDist() add more tests and update comments (GH-12476) by Raymond Hettinger · 5 years ago
  68. aa3ecb8 bpo-36285: Fix integer overflow in the array module. (GH-12317) by sth · 5 years ago
  69. c1e2c28 bpo-36312: Fix decoders for some code pages. (GH-12369) by Serhiy Storchaka · 5 years ago
  70. cc60cdd9 bpo-8677: use PY_DWORD_MAX instead of INT_MAX (GH-12469) by Inada Naoki · 5 years ago
  71. d5f18a6 bpo-8677: use PY_SSIZE_T_CLEAN in PC/winreg.c (GH-12466) by Inada Naoki · 5 years ago
  72. e9a1dcb bpo-8677: use PY_SSIZE_T_CLEAN in socketmodule.c (GH-12467) by Inada Naoki · 5 years ago
  73. c5a216e bpo-8677: use PY_SSIZE_T_CLEAN in Modules/_gdbmodule.c (GH-12464) by Inada Naoki · 5 years ago
  74. 9b4a1b1 bpo-36374: Fix a possible null pointer dereference (GH-12449) by Zackery Spytz · 5 years ago
  75. fa15376 bpo-36301: Add _PyPreCmdline internal API (GH-12458) by Victor Stinner · 5 years ago
  76. abbdd1f bpo-23984: Improve descriptor documentation (GH-1034) by Shubham Aggarwal · 5 years ago
  77. 4a1468e bpo-36356: Fix _PyCoreConfig_Read() (GH-12454) by Victor Stinner · 5 years ago
  78. f29084d bpo-36301: Add _PyRuntime.pre_initialized (GH-12457) by Victor Stinner · 5 years ago
  79. 0d765e3 bpo-36362: Avoid unused variables when HAVE_DYNAMIC_LOADING is not defined (GH-12430) by Stéphane Wirtel · 5 years ago
  80. c70ab02 bpo-36365: Rewrite structseq_repr() using _PyUnicodeWriter (GH-12440) by Victor Stinner · 5 years ago
  81. fd23cfa bpo-35388: Fix _PyRuntime_Finalize() (GH-12443) by Victor Stinner · 5 years ago
  82. fe13883 bpo-36324: Improved code formatting for the NormalDist.inv_cdf rational approximation (GH-12448) by Raymond Hettinger · 5 years ago
  83. 52a594b NormalDist.inv_cdf(): In-line constants because the variable names were not informative (GH-12446) by Raymond Hettinger · 5 years ago
  84. fc96e54 bpo-36236: Fix _PyPathConfig_ComputeSysPath0() for empty argv (GH-12441) by Victor Stinner · 5 years ago
  85. cb90c89 bpo-36367: Free buffer if realloc fails in tokenize.c (GH-12442) by Pablo Galindo · 5 years ago
  86. dcf6171 bpo-36236: Handle removed cwd at Python init (GH-12424) by Victor Stinner · 5 years ago
  87. f5f336a bpo-36356: pymain_free() calls _PyRuntime_Finalize() (GH-12435) by Victor Stinner · 5 years ago
  88. fecc4f2 bpo-36356: Release Unicode interned strings on Valgrind (#12431) by Victor Stinner · 5 years ago
  89. a712679 bpo-36333, bpo-36356: Fix _PyEval_FiniThreads() (GH-12432) by Victor Stinner · 5 years ago
  90. 29198ea bpo-8677: use PY_SSIZE_T_CLEAN in sqlite (GH-12434) by Inada Naoki · 5 years ago
  91. 943395f bpo-36333: Fix leak _PyRuntimeState_Fini (GH-12400) by Stéphane Wirtel · 5 years ago
  92. e130a07 bpo-36356: Fix memory leak in _PyPreConfig_Read() (GH-12425) by btharper · 5 years ago
  93. 5f1e8b4 Add docstrings to the arithmetic methods in NormalDist() (GH-12426) by Raymond Hettinger · 5 years ago
  94. 714c60d bpo-36324: Add inv_cdf() to statistics.NormalDist() (GH-12377) by Raymond Hettinger · 5 years ago
  95. faddaed bpo-36352: Avoid hardcoded MAXPATHLEN size in getpath.c (GH-12423) by Victor Stinner · 5 years ago
  96. 5f9cf23 bpo-36301: Error if decoding pybuilddir.txt fails (GH-12422) by Victor Stinner · 5 years ago
  97. 7b14f0c bpo-36352: Add error handling to getpath.c (GH-12421) by Victor Stinner · 5 years ago
  98. c183444 bpo-36301: Fix Py_Main() memory leaks (GH-12420) by Victor Stinner · 5 years ago
  99. a10d426 bpo-36292: Mark unreachable code as such in long bitwise ops (GH-12333) by stratakis · 5 years ago
  100. f7b57df bpo-36320: Switch typing.NamedTuple from OrderedDict to regular dict (GH-12396) by Raymond Hettinger · 5 years ago