1. 963eb0f bpo-35431: Drop the k <= n requirement (GH-13798) by Raymond Hettinger · 6 years ago
  2. 0fd2c30 Revert "bpo-36818: Add PyInterpreterState.runtime field. (gh-13129)" (GH-13795) by Victor Stinner · 6 years ago
  3. 9535aff Revert "bpo-35621: Support running subprocesses in asyncio when loop is executed in non-main thread (#13630)" (GH-13793) by Andrew Svetlov · 6 years ago
  4. eddef86 bpo-37146: disable opcache when Py_DEBUG is defined (GH-13787) by Inada Naoki · 6 years ago
  5. 0f0a30f bpo-34037, asyncio: add BaseEventLoop.wait_executor_on_close (GH-13786) by Victor Stinner · 6 years ago
  6. 78c7d52 bpo-37120: Add SSLContext.num_tickets (GH-13719) by Christian Heimes · 6 years ago
  7. 47eb223 bpo-36868: Fix what's new for SSLContext.hostname_checks_common_name (GH-13248) by Christian Heimes · 6 years ago
  8. e35d1ba bpo-34271: Fix compatibility with 1.0.2 (GH-13728) by Christian Heimes · 6 years ago
  9. 06651ee bpo-37081: Test with OpenSSL 1.1.1c (GH-13631) by Christian Heimes · 6 years ago
  10. e225beb Revert "bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-13714)" (GH-13780) by Victor Stinner · 6 years ago
  11. 49a7e34 bpo-37137: Fix test_asyncio: use TestCase.set_event_loop() (GH-13779) by Victor Stinner · 6 years ago
  12. 0b9956e bpo-37087: Adding native ID support for OpenBSD (GH-13654) by David Carlier · 6 years ago
  13. 141da44 Doc fix: duplicate object description of email.message (GH-13742) by Julien Palard · 6 years ago
  14. 01ae897 Add credits to What's New in Python 3.8 (GH-13776) by Victor Stinner · 6 years ago
  15. 395420e bpo-26219: remove unused code (GH-13775) by Inada Naoki · 6 years ago
  16. 91234a1 bpo-26219: per opcode cache for LOAD_GLOBAL (GH-12884) by Inada Naoki · 6 years ago
  17. 29ec422 Pin macOS installer Sphinx to v2.0.1 (GH-13774) by Ned Deily · 6 years ago
  18. 0288dd6 bpo-36231: Support building on macOS without /usr/include (GH-13773) by Ned Deily · 6 years ago
  19. 8565f6b bpo-35814: Allow unpacking in r.h.s of annotated assignment expressions (GH-13760) by Pablo Galindo · 6 years ago
  20. d9677f3 IDLE: Fix typos in docs and comments (GH-13749) by Xtreak · 6 years ago
  21. cba9f84 bpo-36546: Add design notes to aid future discussions (GH-13769) by Raymond Hettinger · 6 years ago
  22. d337169 Fix variable name copy/paste error in build-installer.py (GH-13038) by cclauss · 6 years ago
  23. 01ee12b bpo-33569 Preserve type information with dataclasses.InitVar (GH-8927) by Augusto Hack · 6 years ago
  24. 0025350 bpo-37069: tests use catch_unraisable_exception() (GH-13762) by Victor Stinner · 6 years ago
  25. 13136e8 bpo-36896: Clarify that some types constructors are unstable (GH-13271) by Matthias Bussonnier · 6 years ago
  26. 1e375c6 bpo-36027: Really fix "incompatible pointer type" compiler warning (GH-13761) by Petr Viktorin · 6 years ago
  27. be718c3 bpo-36974: add some assertions for PEP 590 (GH-13682) by Jeroen Demeyer · 6 years ago
  28. 9e3e06e bpo-36974: document PEP 590 (GH-13450) by Jeroen Demeyer · 6 years ago
  29. 82eac26 Update the annotated assignment docs (GH-13757) by Ivan Levkivskyi · 6 years ago
  30. 3cf7ea1 bpo-37100: Fix test_coroutines with -Werror (GH-13756) by Victor Stinner · 6 years ago
  31. 7f4ae1b bpo-37012: Clean up special cases in PyType_FromSpecWithBases slot assignments (GH-13496) by Petr Viktorin · 6 years ago
  32. 0d70227 Fix typos in docs and docstrings (GH-13745) by Xtreak · 6 years ago
  33. e584cbf bpo-36027 bpo-36974: Fix "incompatible pointer type" compiler warnings (GH-13758) by Petr Viktorin · 6 years ago
  34. c6789d6 bpo-35621: Fix tests when SafeChildWatcher is expected instead of ThreadedChildWatcher (GH-13754) by Andrew Svetlov · 6 years ago
  35. fb9423f bpo-36974: Make tp_call=PyVectorcall_Call work for inherited types (GH-13699) by Petr Viktorin · 6 years ago
  36. e1179a5 bpo-19184: Update the documentation of dis module. (GH-13652) by Michele Angrisano · 6 years ago
  37. 64e2c64 test_gdb.test_pycfunction: test more calling conventions (GH-13668) by Petr Viktorin · 6 years ago
  38. cdce057 bpo-36829: test_threading: Fix a ref cycle (GH-13752) by Victor Stinner · 6 years ago
  39. aca273e bpo-37014: Update docstring and Documentation of fileinput.FileInput(). (GH-13545) by Michele Angrisano · 6 years ago
  40. 3caf4de Call PyObject_GC_UnTrack in structseq dealloc (GH-13751) by Pablo Galindo · 6 years ago
  41. c0295db bpo-37124: Fix reference leak in test_msilib (GH-13750) by Pablo Galindo · 6 years ago
  42. 6bdc4de bpo-35610: IDLE - Replace .context_use_ps1 with .prompt_last_line (GH-11307) by Cheryl Sabella · 6 years ago
  43. 5df4025 Add description to the command line help of the argument clinic (GH-8518) by Tim Hoffmann · 6 years ago
  44. 7ffcf84 bpo-37126: Allow structseq objects to be tracked by the GC (GH-13729) by Pablo Galindo · 6 years ago
  45. 13ed079 bpo-35621: Support running subprocesses in asyncio when loop is executed in non-main thread (#13630) by Andrew Svetlov · 6 years ago
  46. c529967 bpo-36027: Extend three-argument pow to negative second argument (GH-13266) by Mark Dickinson · 6 years ago
  47. 5ae299a bpo-37128: Add math.perm(). (GH-13731) by Serhiy Storchaka · 6 years ago
  48. d71f317 Add more tests for preserving identity in marshal. (GH-13736) by Serhiy Storchaka · 6 years ago
  49. b7daabd Improve version added references in `typing` module docs (GH-13457) by Anthony Sottile · 6 years ago
  50. b7fade4 Put math.comb() docs is correct place alphabetically (GH-13734) by Raymond Hettinger · 6 years ago
  51. 6a150bc bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-13714) by Eric Snow · 6 years ago
  52. 218e47b bpo-29414: Change 'the for statement is such an iterator' in Tutorial (GH-273) by Marco Buttu · 6 years ago
  53. 36dcaab Fix the error handling in bytesio_sizeof(). (GH-10459) by Zackery Spytz · 6 years ago
  54. bdbad71 bpo-20092. Use __index__ in constructors of int, float and complex. (GH-13108) by Serhiy Storchaka · 6 years ago
  55. 1a4d9ff bpo-32411: IDLE: Remove line number sort in browser.py (#5011) by Cheryl Sabella · 6 years ago
  56. e5f6207 bpo-34303: Micro-optimizations in functools.reduce() (GH-8598) by Sergey Fedoseev · 6 years ago
  57. 3b57f50 bpo-36842: Pass positional only parameters to code_new audit hook (GH-13707) by Pablo Galindo · 6 years ago
  58. 938d9a0 Fix compiler warnings in the pystrehex module (GH-13730) by Pablo Galindo · 6 years ago
  59. faa2948 Clean up and reduce visual clutter in the makeunicode.py script. (GH-7558) by Stefan Behnel · 6 years ago
  60. 56624a9 bpo-28595: Allow shlex whitespace_split with punctuation_chars (GH-2071) by Evan · 6 years ago
  61. 2b843ac bpo-35431: Refactor math.comb() implementation. (GH-13725) by Serhiy Storchaka · 6 years ago
  62. 9843bc1 Improve exception message for str.format (GH-12675) by Francisco Couzo · 6 years ago
  63. cd74e66 bpo-37122: Make co->co_argcount represent the total number of positonal arguments in the code object (GH-13726) by Pablo Galindo · 6 years ago
  64. 059b9ea bpo-31968: Documentation -- add clarification on the globals dict for exec() (GH-13140) by Anthony Shaw · 6 years ago
  65. 6650105 Doc: Correct the creation year and the credits of the Logo Programming language (GH-13520) by Stéphane Wirtel · 6 years ago
  66. a0adffb Move whats-new entry for math.factorial to the math module section. (GH-13723) by Mark Dickinson · 6 years ago
  67. 6b282e1 bpo-36813: Fix QueueListener to call task_done() upon termination. (GH-13113) by Bar Harel · 6 years ago
  68. 70c5f2a Use more PEP 570 syntax in the documentation. (GH-13720) by Serhiy Storchaka · 6 years ago
  69. 2085bd0 bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700) by Serhiy Storchaka · 6 years ago
  70. 4a68650 bpo-35431: Implemented math.comb (GH-11414) by Yash Aggarwal · 6 years ago
  71. 5ac0b98 bpo-18911: clarify that the minidom XML writer receives texts but not bytes (GH-13352) by Windson yang · 6 years ago
  72. 354227a Add option to trace to run modules (GH-5134) by Mario Corchero · 6 years ago
  73. 664fe39 bpo-29984: Improve 'heapq' test coverage (GH-992) by Rob Day · 6 years ago
  74. 5c22476 Improve docstring of list.sort (GH-8516) by Tim Hoffmann · 6 years ago
  75. 396e0a8 bpo-36818: Add PyInterpreterState.runtime field. (gh-13129) by Eric Snow · 6 years ago
  76. 1c263e3 bpo-37029: keep usable_arenas in sorted order without searching (#13612) by Tim Peters · 6 years ago
  77. 549e55a bpo-12202: Properly check MsiSummaryInfoGetProperty() calls in msilib (GH-13711) by Zackery Spytz · 6 years ago
  78. ed9f356 bpo-37105: Add deprecated-remove information on stream doc (#13672) by Emmanuel Arias · 6 years ago
  79. a747c3a bpo-15115: Document deprecation of email.encoders in Python 3 (GH-5354) by Cheryl Sabella · 6 years ago
  80. a6ec1ce bpo-33361: Fix bug with seeking in StreamRecoders (GH-8278) by Ammar Askar · 6 years ago
  81. aac4d03 bpo-26826: Expose copy_file_range in the os module (GH-7255) by Pablo Galindo · 6 years ago
  82. 545a3b8 Document changes for PyCode_New regarding PEP570 (GH-13706) by Pablo Galindo · 6 years ago
  83. c8d5bf6 bpo-12639: msilib.Directory.start_component() fails if *keyfile* is not None (GH-13688) by Zackery Spytz · 6 years ago
  84. 4612671 bpo-25735: math.factorial doc should mention integer return type (GH-6420) by Akshay Sharma · 6 years ago
  85. 8cbb5b6 bpo-26835: Add file sealing constants to fcntl (GH-13694) by Christian Heimes · 6 years ago
  86. ffed76b bpo-37094: Add example for TestCase.skipTest in unittest doc (GH-13645) by Makdon · 6 years ago
  87. a0c01bf bpo-37115: Support annotations in positional-only arguments (GH-13698) by Pablo Galindo · 6 years ago
  88. 2f58a84 bpo-37112: Allow compile to work on AST with positional only arguments with defaults (GH-13697) by Pablo Galindo · 6 years ago
  89. ed222a7 Update data model docs to include missing attributes for code objects (GH-13696) by Pablo Galindo · 6 years ago
  90. 3a46d5c bpo-37108: Support super with methods that use positional-only arguments (GH-13695) by Pablo Galindo · 6 years ago
  91. c7f803b bpo-36379: __ipow__ must be a ternaryfunc, not a binaryfunc (GH-13546) by Zackery Spytz · 6 years ago
  92. c7f7069 bpo-34271: Add ssl debugging helpers (GH-10031) by Christian Heimes · 6 years ago
  93. e9b51c0 bpo-26660, bpo-35144: Fix permission errors in TemporaryDirectory cleanup. (GH-10320) by Serhiy Storchaka · 6 years ago
  94. 38ab7d4 bpo-31829: Make protocol 0 pickles be loadable in text mode in Python 2. (GH-11859) by Serhiy Storchaka · 6 years ago
  95. ba04302 IDLE - Capitalize search dialogs' 'Close' button label. (#13691) by Terry Jan Reedy · 6 years ago
  96. 14a0e16 bpo-36548: Improve the repr of re flags. (GH-12715) by Serhiy Storchaka · 6 years ago
  97. 65fb2c0 bpo-339827: Do not swallow exceptions in the _ssl module. (GH-12756) by Serhiy Storchaka · 6 years ago
  98. 530f506 bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464) by Jeroen Demeyer · 6 years ago
  99. 4c23aff bpo-29262: Add get_origin() and get_args() introspection helpers to typing (GH-13685) by Ivan Levkivskyi · 6 years ago
  100. 2a58b06 bpo-5028: Fix up rest of documentation for tokenize documenting line (GH-13686) by Anthony Sottile · 6 years ago