1. 2afb598 bpo-36324: NormalDist() add more tests and update comments (GH-12476) by Raymond Hettinger · 5 years ago
  2. aa3ecb8 bpo-36285: Fix integer overflow in the array module. (GH-12317) by sth · 5 years ago
  3. c1e2c28 bpo-36312: Fix decoders for some code pages. (GH-12369) by Serhiy Storchaka · 5 years ago
  4. cc60cdd9 bpo-8677: use PY_DWORD_MAX instead of INT_MAX (GH-12469) by Inada Naoki · 5 years ago
  5. d5f18a6 bpo-8677: use PY_SSIZE_T_CLEAN in PC/winreg.c (GH-12466) by Inada Naoki · 5 years ago
  6. e9a1dcb bpo-8677: use PY_SSIZE_T_CLEAN in socketmodule.c (GH-12467) by Inada Naoki · 5 years ago
  7. c5a216e bpo-8677: use PY_SSIZE_T_CLEAN in Modules/_gdbmodule.c (GH-12464) by Inada Naoki · 5 years ago
  8. 9b4a1b1 bpo-36374: Fix a possible null pointer dereference (GH-12449) by Zackery Spytz · 5 years ago
  9. fa15376 bpo-36301: Add _PyPreCmdline internal API (GH-12458) by Victor Stinner · 5 years ago
  10. abbdd1f bpo-23984: Improve descriptor documentation (GH-1034) by Shubham Aggarwal · 5 years ago
  11. 4a1468e bpo-36356: Fix _PyCoreConfig_Read() (GH-12454) by Victor Stinner · 5 years ago
  12. f29084d bpo-36301: Add _PyRuntime.pre_initialized (GH-12457) by Victor Stinner · 5 years ago
  13. 0d765e3 bpo-36362: Avoid unused variables when HAVE_DYNAMIC_LOADING is not defined (GH-12430) by Stéphane Wirtel · 5 years ago
  14. c70ab02 bpo-36365: Rewrite structseq_repr() using _PyUnicodeWriter (GH-12440) by Victor Stinner · 5 years ago
  15. fd23cfa bpo-35388: Fix _PyRuntime_Finalize() (GH-12443) by Victor Stinner · 5 years ago
  16. fe13883 bpo-36324: Improved code formatting for the NormalDist.inv_cdf rational approximation (GH-12448) by Raymond Hettinger · 5 years ago
  17. 52a594b NormalDist.inv_cdf(): In-line constants because the variable names were not informative (GH-12446) by Raymond Hettinger · 5 years ago
  18. fc96e54 bpo-36236: Fix _PyPathConfig_ComputeSysPath0() for empty argv (GH-12441) by Victor Stinner · 5 years ago
  19. cb90c89 bpo-36367: Free buffer if realloc fails in tokenize.c (GH-12442) by Pablo Galindo · 5 years ago
  20. dcf6171 bpo-36236: Handle removed cwd at Python init (GH-12424) by Victor Stinner · 5 years ago
  21. f5f336a bpo-36356: pymain_free() calls _PyRuntime_Finalize() (GH-12435) by Victor Stinner · 5 years ago
  22. fecc4f2 bpo-36356: Release Unicode interned strings on Valgrind (#12431) by Victor Stinner · 5 years ago
  23. a712679 bpo-36333, bpo-36356: Fix _PyEval_FiniThreads() (GH-12432) by Victor Stinner · 5 years ago
  24. 29198ea bpo-8677: use PY_SSIZE_T_CLEAN in sqlite (GH-12434) by Inada Naoki · 5 years ago
  25. 943395f bpo-36333: Fix leak _PyRuntimeState_Fini (GH-12400) by Stéphane Wirtel · 5 years ago
  26. e130a07 bpo-36356: Fix memory leak in _PyPreConfig_Read() (GH-12425) by btharper · 5 years ago
  27. 5f1e8b4 Add docstrings to the arithmetic methods in NormalDist() (GH-12426) by Raymond Hettinger · 5 years ago
  28. 714c60d bpo-36324: Add inv_cdf() to statistics.NormalDist() (GH-12377) by Raymond Hettinger · 5 years ago
  29. faddaed bpo-36352: Avoid hardcoded MAXPATHLEN size in getpath.c (GH-12423) by Victor Stinner · 5 years ago
  30. 5f9cf23 bpo-36301: Error if decoding pybuilddir.txt fails (GH-12422) by Victor Stinner · 5 years ago
  31. 7b14f0c bpo-36352: Add error handling to getpath.c (GH-12421) by Victor Stinner · 5 years ago
  32. c183444 bpo-36301: Fix Py_Main() memory leaks (GH-12420) by Victor Stinner · 5 years ago
  33. a10d426 bpo-36292: Mark unreachable code as such in long bitwise ops (GH-12333) by stratakis · 5 years ago
  34. f7b57df bpo-36320: Switch typing.NamedTuple from OrderedDict to regular dict (GH-12396) by Raymond Hettinger · 5 years ago
  35. 1be0d11 bpo-36352: Clarify fileutils.h documentation (GH-12406) by Victor Stinner · 5 years ago
  36. 72c7b37 bpo-36235: Enhance distutils test_customize_compiler() (GH-12403) by Victor Stinner · 5 years ago
  37. 9e06d2b bpo-36328: Fix compiler warning in Py_NewInterpreter() (GH-12381) by Stéphane Wirtel · 5 years ago
  38. 0c9258a bpo-36332: Allow compile() to handle AST objects with assignment expressions (GH-12398) by Pablo Galindo · 5 years ago
  39. 2ddc7f6 bpo-30040: optimize inserting into empty dict (GH-12307) by Inada Naoki · 5 years ago
  40. 09a9f17 bpo-36329: Declare the version of Python to use for Tools/scripts/serve.py (#12385) by Stéphane Wirtel · 5 years ago
  41. 74ae50e bpo-36307: Travis: upgrade to Xenial environment (GH-12356) by CAM Gerlach · 5 years ago
  42. b4b97af Fix typo in _PyObject_FastCallDict documentation (GH-12383) by Rémi Lapeyre · 5 years ago
  43. 23581c0 bpo-36321: Fix misspelled attribute in namedtuple() (GH-12375) by Raymond Hettinger · 5 years ago
  44. 6a16b18 bpo-36297: remove "unicode_internal" codec (GH-12342) by Inada Naoki · 5 years ago
  45. 6fb544d Fix "catchs" typos in NEWS entries (GH-12364) by Harmon · 5 years ago
  46. dc69f69 Fix typo in unittest.mock documentation: manger -> manager (GH-12352) by Joan Massich · 5 years ago
  47. f683f46 bpo-34745: Fix asyncio sslproto memory issues (GH-12386) by Fantix King · 5 years ago
  48. 06e1e68 bpo-34160: Update news entry for XML order attributes (#12335) by Diego Rojas · 5 years ago
  49. 0bb5e75 bpo-23216: IDLE: Add docstrings to search modules (GH-12141) by Cheryl Sabella · 5 years ago
  50. 7c99454 bpo-35493: Use Process.sentinel instead of sleeping for polling worker status in multiprocessing.Pool (#11488) by Pablo Galindo · 5 years ago
  51. 962bdea bpo-35715: Liberate return value of _process_worker (GH-11514) by Dave Chevell · 5 years ago
  52. 9c68543 Update the seealso entries for namedtuple() (GH-12373) by Raymond Hettinger · 5 years ago
  53. 5927cfd Minor grammar fix in docs (GH-12371) by Raymond Hettinger · 5 years ago
  54. 1b0393d bpo-36127: Fix compiler warning in _PyArg_UnpackKeywords(). (GH-12353) by Serhiy Storchaka · 5 years ago
  55. f40b4a0 bpo-36138: Clarify docs about converting datetime.timedelta to scalars. (GH-12137) by Yasser A · 5 years ago
  56. d2fdd1f bpo-36124: Add PyInterpreterState.dict. (gh-12132) by Eric Snow · 5 years ago
  57. c11183c bpo-36097: Use only public C-API in the_xxsubinterpreters module (adding as necessary). (gh-12359) by Eric Snow · 5 years ago
  58. 842a2f0 bpo-33608: Deal with pending calls relative to runtime shutdown. (gh-12246) by Eric Snow · 5 years ago
  59. 7c4fcb6 Add the meaning of the returned value of PyTypeObject.tp_init (GH-12325) by Stéphane Wirtel · 5 years ago
  60. e3f4070 bpo-33608: Fix PyEval_InitThreads() warning (GH-12346) by Victor Stinner · 5 years ago
  61. 6259976 bpo-36301: _PyCoreConfig_Read() ensures that argv is not empty (GH-12347) by Victor Stinner · 5 years ago
  62. 74f6568 bpo-36301: Add _PyWstrList structure (GH-12343) by Victor Stinner · 5 years ago
  63. 86082c2 bpo-36235: Fix CFLAGS in distutils customize_compiler() (GH-12236) by Victor Stinner · 5 years ago
  64. 65f64b1 bpo-36272: Logging now propagates RecursionError (GH-12312) by Rémi Lapeyre · 5 years ago
  65. 1c668d1 Correct the heading levels (GH-12338) by Raymond Hettinger · 5 years ago
  66. b420428 Document actual string.punctuation value. (GH-12270) by Andre Delfino · 5 years ago
  67. 53c2935 Fix typo duplicate period in a docstring in the zipfile module. (GH-12326) by nick sung · 5 years ago
  68. 3fe7fa3 bpo-30040: update news entry (GH-12324) by Inada Naoki · 5 years ago
  69. 41f0b78 Simplify overlap() formula for case where variances are equal (GH-12323) by Raymond Hettinger · 5 years ago
  70. 3191391 bpo-36127: Argument Clinic: inline parsing code for keyword parameters. (GH-12058) by Serhiy Storchaka · 5 years ago
  71. 2c0d3f4 bpo-36254: Fix yet one invalid use of %d in format string in C. (GH-12318) by Serhiy Storchaka · 5 years ago
  72. f2f55e7 bpo-36282: Improved error message for too much positional arguments. (GH-12310) by Serhiy Storchaka · 5 years ago
  73. d53fe5f bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264) by Serhiy Storchaka · 5 years ago
  74. 10f8ce6 bpo-36280: Add Constant.kind field (GH-12295) by Guido van Rossum · 5 years ago
  75. 8b5bdda bpo-31904: Adapt the _signal module to VxWorks RTOS (GH-12304) by pxinwr · 5 years ago
  76. 9776b06 bpo-36262: Fix _Py_dg_strtod() memory leak (goto undfl) (GH-12276) by Victor Stinner · 5 years ago
  77. 86900a4 Fix stepping into a frame without a __name__ (GH-12064) by Anthony Sottile · 5 years ago
  78. 839b925 bpo-35661: Fix failing test on buildbot (GH-12297) by Cheryl Sabella · 5 years ago
  79. 26c910c bpo-36174: Update nuget authoring for new license field. (GH-12300) by Steve Dower · 5 years ago
  80. 20843a9 Correct minor edit to news entry. (GH-12298) by Ned Deily · 5 years ago
  81. 8ef864d bpo-36264: Updates documentation for change to expanduser on Windows (GH-12294) by Steve Dower · 5 years ago
  82. f45813d Minor edits to news entries (ported from 3.7) (GH-12293) by Ned Deily · 5 years ago
  83. 25ec4a4 bpo-36264: Don't honor POSIX HOME in os.path.expanduser on Windows (GH-12282) by Anthony Sottile · 5 years ago
  84. 410aea1 canonicalize "Inada Naoki" in ACKS and 3.8 News (GH-12286) by Inada Naoki · 5 years ago
  85. f2a1867 bpo-30040: new empty dict uses key-sharing dict (GH-1080) by Inada Naoki · 5 years ago
  86. fc06a19 bpo-35892: Fix mode() and add multimode() (#12089) by Raymond Hettinger · 5 years ago
  87. 3e93643 bpo-35931: Gracefully handle any exception in pdb debug command (GH-12103) by Daniel Hahler · 5 years ago
  88. 1ceb3a3 bpo-35132: Fixes missing target in gdb pep0393 check. (GH-11848) by Lisa Roach · 5 years ago
  89. d9bd8ec Doc: Fix inconsistency in multiprocessing (GH-12273) by Julien Palard · 5 years ago
  90. 876e82b bpo-36234: Add more tests to PosixUidGidTests (GH-12234) by Victor Stinner · 5 years ago
  91. cc353a0 Various refinements to the NormalDist examples and recipes (GH-12272) by Raymond Hettinger · 5 years ago
  92. 491ef53 bpo-36176: Fix IDLE autocomplete & calltip popup colors. (#12262) by Terry Jan Reedy · 5 years ago
  93. 0e1f1f0 bpo-35647: Fix path check in cookiejar (#11436) by Xtreak · 5 years ago
  94. 1aeeaeb bpo-21314: Add a FAQ entry about positional only parameters (GH-10641) by Lysandros Nikolaou · 5 years ago
  95. 11205b8 Fix padding on asyncio.IncompleteReadError docs (GH-12258) by Andre Delfino · 5 years ago
  96. 8b91eda bpo-36251: Fix format strings used in match_repr() and stdprinter_repr(). (GH-12252) by sth · 5 years ago
  97. ca7fe50 bpo-35121: prefix dot in domain for proper subdomain validation (GH-10258) by Xtreak · 5 years ago
  98. 738c19f closes bpo-33376: Update to Unicode 12.0.0. (GH-12256) by Benjamin Peterson · 5 years ago
  99. 0411411 Rework integer overflow path in math.prod and add more tests (GH-11809) by Pablo Galindo · 5 years ago
  100. 62fa51f Fix typos and improve grammar in threading.Barrier docstrings (GH-12210) by Carl Bordum Hansen · 5 years ago