1. ec8a973 bpo-39562: Allow executing asynchronous comprehensions in the asyncio REPL (GH-18968) by Miss Islington (bot) · 5 years ago
  2. 7f5302f bpo-39360: Ensure all workers exit when finalizing a multiprocessing Pool (GH-19009) by Miss Islington (bot) · 5 years ago
  3. f7e32fc bpo-39965: Correctly raise SyntaxError if await is used outside async functions when PyCF_ALLOW_TOP_LEVEL_AWAIT is set (GH-19010) by Miss Islington (bot) · 5 years ago
  4. ff69c9d bpo-38576: Disallow control characters in hostnames in http.client (GH-18995) by Miss Islington (bot) · 5 years ago
  5. e634a8a [3.8] bpo-39871: Fix possible SystemError in atan2, copysign and remainder (GH-18806) (GH-18989) by Mark Dickinson · 5 years ago
  6. f6bdac1 bpo-39915: Ensure await_args_list is updated according to the order in which coroutines were awaited (GH-18927) by Miss Islington (bot) · 5 years ago
  7. f8ce3e2 bpo-39689: Do not test undefined casts to _Bool (GH-18964) (#18966) by Miss Islington (bot) · 5 years ago
  8. ab9c729 [3.8] bpo-38643: Raise SystemError instead of crashing when PyNumber_ToBase is called with invalid base. (GH-18863). (GH-18954) by Serhiy Storchaka · 5 years ago
  9. 99ef1ac Fix syntax error in an example in the ast documentation and sync docstrings (GH-18946) by Miss Islington (bot) · 5 years ago
  10. cd07b4d bpo-39520: Fix un-parsing of ext slices with no dimensions (GH-18304) by Miss Islington (bot) · 5 years ago
  11. c228799 bpo-39916: Use os.scandir() as context manager in Path.glob(). (GH-18880) by Miss Islington (bot) · 5 years ago
  12. 212acf5 bpo-38662: ensurepip invokes pip via runpy (GH-18901) by Miss Islington (bot) · 5 years ago
  13. caec8a0 [3.8] bpo-39828: Fix json.tool to catch BrokenPipeError (GH-18779). (GH-18894) by Dong-hee Na · 5 years ago
  14. cadfe52 bpo-27115: Use Query subclass for IDLE editor Goto (GH-18871) by Miss Islington (bot) · 5 years ago
  15. 3ede1bc [3.8] bpo-39850: Add support for abstract sockets in multiprocessing (GH-18866) (GH-18876) by Pablo Galindo · 5 years ago
  16. f3f0c7a bpo-27115: Move IDLE Query error blanking (GH-18868) by Miss Islington (bot) · 5 years ago
  17. 0687bdf bpo-39517: Allow runpy.run_path() to accept path-like objects (GH-18699) by Miss Islington (bot) · 5 years ago
  18. b2e8240 bpo-39885: IDLE context menu clears selection (GH-18859) by Miss Islington (bot) · 5 years ago
  19. a5e821c bpo-39852: IDLE 'Go to line' deletes selection, updates status (GH-18801) by Miss Islington (bot) · 5 years ago
  20. 928b4dd bpo-38894: Fix pathlib.Path.glob in the presence of symlinks and insufficient permissions (GH-18815) by Miss Islington (bot) · 5 years ago
  21. 92b7278 [3.8] bpo-39889: Fix unparse.py for subscript. (GH-18824). (GH-18826) by Serhiy Storchaka · 5 years ago
  22. 6b452ff bpo-13487: Use sys.modules.copy() in inspect.getmodule() for thread safety. (GH-18786) by Miss Islington (bot) · 5 years ago
  23. 0d20364 bpo-38597: Never statically link extension initialization code on Windows (GH-18724) by Miss Islington (bot) · 5 years ago
  24. 9ddcb91 [3.8] bpo-39778: Don't traverse weak-reference lists OrderedDict's tp_traverse and tp_clear (GH-18749) (GH-18756) by Pablo Galindo · 5 years ago
  25. 43932dc bpo-39764: Make Task.get_stack accept ag_frame (GH-18669) by Miss Islington (bot) · 5 years ago
  26. f28b0c7 bpo-38971: Open file in codecs.open() closes if exception raised. (GH-17666) by Miss Islington (bot) · 5 years ago
  27. 12b7143 [3.8] bpo-39815: add cached_property to all (GH-18726) (GH-18728) by Pablo Galindo · 5 years ago
  28. ce720d3 bpo-39769: Fix compileall ddir for subpkgs. (GH-18676) (GH-18718) by Gregory P. Smith · 5 years ago
  29. 4d70124 [3.8] bpo-39794: Add --without-decimal-contextvar (GH-18702) by Stefan Krah · 5 years ago
  30. e4686b7 bpo-39548: Fix handling of 'WWW-Authenticate' header for Digest Auth (GH-18338) by Miss Islington (bot) · 5 years ago
  31. 846ca49 bpo-39781: Do not jump when select in IDLE codecontext (GH-18683) by Miss Islington (bot) · 5 years ago
  32. a0e59d3 Merge tag 'v3.8.2' into 3.8 by Łukasz Langa · 5 years ago
  33. daef21c bpo-30566: Fix IndexError when using punycode codec (GH-18632) by Miss Islington (bot) · 5 years ago
  34. 7b3ab59 Python 3.8.2 by Łukasz Langa · 5 years ago
  35. 45cc9ce Give proper credit for figuring out and writing PEP-3118 tests. (GH-18644) (#18646) by Miss Islington (bot) · 5 years ago
  36. c97fc56 bpo-39649: Remove obsolete check for `__args__` in bdb.Bdb.format_stack_entry (GH-18531) by Miss Islington (bot) · 5 years ago
  37. b19f7ec bpo-39681: Fix C pickle regression with minimal file-like objects (GH-18592) (#18630) by Miss Islington (bot) · 5 years ago
  38. 0c1827e bpo-39382: Avoid dangling object use in abstract_issubclass() (GH-18530) by Miss Islington (bot) · 5 years ago
  39. b627102 bpo-39576: Prevent memory error for overly optimistic precisions (GH-18581) (#18584) by Miss Islington (bot) · 5 years ago
  40. 44c6901 bpo-39572: Document ’total’ flag of TypedDict (GH-18554) by Miss Islington (bot) · 5 years ago
  41. d77e771 bpo-39555: Fix distutils test to handle _d suffix on Windows debug build (GH-18357) (GH-18548) by Miss Islington (bot) · 5 years ago
  42. 5bf58ce bpo-39432: Implement PEP-489 algorithm for non-ascii "PyInit_*" symbol names in distutils (GH-18150) (GH-18546) by Miss Islington (bot) · 5 years ago
  43. e40b7dc Merge tag 'v3.8.2rc2' into 3.8 by Łukasz Langa · 5 years ago
  44. e412cbb [3.8] bpo-39546: argparse: Honor allow_abbrev=False for specified prefix_chars (GH-18337) (GH-18543) by Miss Islington (bot) · 5 years ago
  45. 7fd752c bpo-39663: IDLE: Add additional tests for pyparse (GH-18536) by Miss Islington (bot) · 5 years ago
  46. 777ba07 Python 3.8.2rc2 by Łukasz Langa · 5 years ago
  47. f64abd1 [3.8] bpo-39453: Fix contains method of list to hold strong references (GH-18204) by Dong-hee Na · 5 years ago
  48. ea316fd Revert "[3.8] bpo-27657: Fix urlparse() with numeric paths (GH-16839)" (GH-18525) by Senthil Kumaran · 5 years ago
  49. 8dbdf5f [3.8] bpo-39606: allow closing async generators that are already closed (GH-18475) (GH-18501) by Miss Islington (bot) · 5 years ago
  50. a00b5be bpo-39184: Add audit events to functions in `fcntl`, `msvcrt`, `os`, `resource`, `shutil`, `signal`, `syslog` (GH-18407) by Steve Dower · 5 years ago
  51. 2076d4f bpo-39474: Fix AST pos for expressions like (a)(b), (a)[b] and (a).b. (GH-18477) by Miss Islington (bot) · 5 years ago
  52. ac6f4d2 bpo-21016: pydoc and trace use sysconfig (GH-18476) by Miss Islington (bot) · 5 years ago
  53. efd878c bpo-39219: Fix SyntaxError attributes in the tokenizer. (GH-17828) by Miss Islington (bot) · 5 years ago
  54. ed4d263 bpo-39595: Improve zipfile.Path performance (GH-18406) (GH-18472) by Miss Islington (bot) · 6 years ago
  55. d3f9fb2 bpo-39299: Add more tests for mimetypes and its cli. (GH-17949) by Miss Islington (bot) · 6 years ago
  56. 2cceef5 Merge tag 'v3.8.2rc1' into 3.8 by Łukasz Langa · 6 years ago
  57. c372f9b bpo-39600: Adjust code, add idlelib/NEWS item (GH-18449) by Miss Islington (bot) · 6 years ago
  58. 021a569 bpo-39600, IDLE: Remove duplicated font names (GH-18430) by Miss Islington (bot) · 6 years ago
  59. 8623e68 Python 3.8.2rc1 by Łukasz Langa · 6 years ago
  60. dc56f5f bpo-39590: make deque.__contains__ and deque.count hold strong references (GH-18421) (GH-18423) by Miss Islington (bot) · 6 years ago
  61. 8b9cebc [3.8] bpo-39579: Fix Attribute end_col_offset to point at the current node (GH-18405) (GH-18408) by Lysandros Nikolaou · 6 years ago
  62. 0d03a10 bpo-39274: Ensure Fraction.__bool__() returns a bool (GH-18017) by Miss Islington (bot) · 6 years ago
  63. 708f472 bpo-38149: Call sys.audit() only once per call for glob.glob(). (GH-18360) by Miss Islington (bot) · 6 years ago
  64. 927d3aa bpo-39505: delete the redundant '/' in $env:VIRTUAL_ENV (GH-18290) (GH-18359) by Miss Islington (bot) · 6 years ago
  65. 3498ac5 bpo-39184: Add audit events to command execution functions in os and pty modules (GH-17824) by Miss Islington (bot) · 6 years ago
  66. 30e7693 closes bpo-39510: Fix use-after-free in BufferedReader.readinto() (GH-18295) by Miss Islington (bot) · 6 years ago
  67. 9a740b6 bpo-37224: Improve test__xxsubinterpreters.DestroyTests (GH-18058) by Miss Islington (bot) · 6 years ago
  68. a0389ba Fixes in sorting descriptions (GH-18317) by Miss Islington (bot) · 6 years ago
  69. 02395fa bpo-39450 Stripped whitespace before parsing the docstring in TestCase.shortDescription (GH-18175) (#18323) by Miss Islington (bot) · 6 years ago
  70. 1723687 [3.8] bpo-39492: Fix a reference cycle between reducer_override and a Pickler instance (GH-18266) (#18316) by Antoine Pitrou · 6 years ago
  71. 83d3202 bpo-38792: Remove IDLE shell calltip before new prompt. (GH-17150) by Miss Islington (bot) · 6 years ago
  72. b841633 bpo-39502: Skip test_zipfile.test_add_file_after_2107() on AIX (GH-18282) by Miss Islington (bot) · 6 years ago
  73. 58076df bpo-39493: Fix definition of IO.closed in typing.py (GH-18265) by Miss Islington (bot) · 6 years ago
  74. 696d232 bpo-39485: fix corner-case in method-detection of mock (GH-18255) by Miss Islington (bot) · 6 years ago
  75. 2b675f0 bpo-39460: Fix test_zipfile.test_add_file_after_2107() (GH-18247) by Miss Islington (bot) · 6 years ago
  76. dbb37aa bpo-39439: Fix multiprocessing spawn path in a venv on Windows (GH-18158) by Miss Islington (bot) · 6 years ago
  77. 595b516 bpo-38883: Don't use POSIX `$HOME` in `pathlib.Path.home/expanduser` on Windows (GH-17961) by Miss Islington (bot) · 6 years ago
  78. cf9d005 [3.8] bpo-39390 shutil: fix argument types for ignore callback (GH-18122) by mbarkhau · 6 years ago
  79. 7b57b15 bpo-30780: Add IDLE configdialog tests (GH-3592) by Miss Islington (bot) · 6 years ago
  80. 19be85c [3.8] bpo-39082: Allow AsyncMock to correctly patch static/class methods (GH-18190) by Matthew Kokotovich · 6 years ago
  81. a5906b2 bpo-38473: Handle autospecced functions and methods used with attach_mock (GH-16784) (GH-18167) by Miss Islington (bot) · 6 years ago
  82. a234492 bpo-39388: IDLE: Fix bug when cancelling out of configdialog (GH-18068) by Miss Islington (bot) · 6 years ago
  83. ea4a61f bpo-39430: Fix race condition in lazy imports in tarfile. (GH-18161) by Miss Islington (bot) · 6 years ago
  84. 0ea7309 Improve test coverage for AsyncMock. (GH-17906) by Miss Islington (bot) · 6 years ago
  85. a46728a bpo-39426: Fix outdated default and highest protocols in docs (GH-18154) by Miss Islington (bot) · 6 years ago
  86. 5654f83 [3.8] bpo-35182: fix communicate() crash after child closes its pipes (GH-18117) (GH-18148) by Alex Rebert · 6 years ago
  87. 993811f bpo-39421: Fix posible crash in heapq with custom comparison operators (GH-18118) by Miss Islington (bot) · 6 years ago
  88. 545fc51 bpo-32989: IDLE - remove unneeded parameter (GH-18138) by Miss Islington (bot) · 6 years ago
  89. 3b76188 bpo-39050: The Help button in IDLE's config menu works again (GH-17611) by Miss Islington (bot) · 6 years ago
  90. f4e3e1c Move test_math tests (GH-18098) (GH-18102) by Victor Stinner · 6 years ago
  91. ab0d8e3 bpo-39389: gzip: fix compression level metadata (GH-18077) by Miss Islington (bot) · 6 years ago
  92. 060ad2f bpo-32989: IDLE - fix bad editor call of pyparse method (GH-5968) by Miss Islington (bot) · 6 years ago
  93. 5cadd3f bpo-39386: Prevent double awaiting of async iterator (GH-18081) by Miss Islington (bot) · 6 years ago
  94. c7b16f8 Fix typo from base to based (GH-18055) by Miss Islington (bot) · 6 years ago
  95. 9f220e4 Fix documentation in code.py (GH-17988) by Miss Islington (bot) · 6 years ago
  96. 9955f33 [3.8] bpo-39033: Fix NameError in zipimport during hash validation (GH-17588) (GH-17642) by Karthikeyan Singaravelan · 6 years ago
  97. 3043ec7 bpo-38293: Allow shallow and deep copying of property objects (GH-16438) by Miss Islington (bot) · 6 years ago
  98. eb9ba2f bpo-16575: Disabled checks for union types being passed by value. (GH-17960) (GH-17964) by Miss Islington (bot) · 6 years ago
  99. 33dd75a bpo-38356: Fix ThreadedChildWatcher thread leak in test_asyncio (GH-16552) by Miss Islington (bot) · 6 years ago
  100. 98b1c0c bpo-39297: Update for importlib_metadata 1.4. (GH-17947) (GH-17952) by Miss Islington (bot) · 6 years ago