1. d16f012 bpo-31522: mailbox.get_string: pass `from_` parameter to `get_bytes` (#9857) by Cheryl Sabella · 6 years ago
  2. 6f906b3 bpo-35008: Fix possible leaks in Element.__setstate__(). (GH-9924) by Serhiy Storchaka · 6 years ago
  3. 74a8b6e bpo-24658: Fix read/write greater than 2 GiB on macOS (GH-1705) by Stéphane Wirtel · 6 years ago
  4. fcd5e84 bpo-23420: Verify the value of '-s' when execute the CLI of cProfile (GH-9925) by Stéphane Wirtel · 6 years ago
  5. 137b063 bpo-34997: Fix test_logging.ConfigDictTest.test_out_of_order (GH-9913) by Pablo Galindo · 6 years ago
  6. ea75187 bpo-34783: Fix test_nonexisting_script() (GH-9896) by Victor Stinner · 6 years ago
  7. 18fb1fb bpo-34844: logging.Formatter enhancement - Ensure style and format string matches in logging.Formatter (GH-9703) by BNMetrics · 6 years ago
  8. e890421 bpo-34974: Do not replace unexpected errors in bytes() and bytearray(). (GH-9852) by Serhiy Storchaka · 6 years ago
  9. de2aea0 bpo-34939: Allow annotated global names in module namespace (GH-9844) by Pablo Galindo · 6 years ago
  10. b11c566 bpo-34941: Fix searching Element subclasses. (GH-9766) by Serhiy Storchaka · 6 years ago
  11. 1a997eb Add new tests for bytes and bytearray constructors. (GH-9843) by Serhiy Storchaka · 6 years ago
  12. 0461704 bpo-22872: multiprocessing.Queue's put() and get() now raise ValueError if the queue is closed. (GH-9010) by Zackery Spytz · 6 years ago
  13. f6c29a6 bpo-34783: Disable test_nonexisting_script for macOS framework builds (GH-9831) by Ned Deily · 6 years ago
  14. 65d2f8c bpo-31516: Skip test_main_thread_during_shutdown() with COUNT_ALLOCS builds. (GH-8052) by Zackery Spytz · 6 years ago
  15. 9b8c2e7 bpo-34922: Fix integer overflow in the digest() and hexdigest() methods (GH-9751) by Serhiy Storchaka · 6 years ago
  16. a6b3ec5 bpo-34022: Stop forcing of hash-based invalidation with SOURCE_DATE_EPOCH (GH-9607) by Elvis Pranskevichus · 6 years ago
  17. 7e18dee bpo-34926: Make mimetypes.guess_type accept os.PathLike objects (GH-9777) by Mayank Asthana · 6 years ago
  18. 3058b7d bpo-33613: Fix test_semaphore_tracker signal tests when using -Werror (GH-9778) by Pablo Galindo · 6 years ago
  19. 84eec11 bpo-23596: Add unit tests for the command line for the gzip module (GH-9775) by Stéphane Wirtel · 6 years ago
  20. c880ffe bpo-34769: Thread safety for _asyncgen_finalizer_hook(). (GH-9716) by twisteroid ambassador · 6 years ago
  21. 79d2133 bpo-32962: Fix test_gdb failure in debug build with -mcet -fcf-protection -O0 (GH-9656) by Victor Stinner · 6 years ago
  22. 7b31397 bpo-32680 add default "sock" on SMTP objects (#5345) by Romuald Brunet · 6 years ago
  23. 2b2758d Extract sendfile tests into a separate test file (#9757) by Andrew Svetlov · 6 years ago
  24. 60d230c Extract tests for sock_*() functions into a separate file (GH-9761) by Andrew Svetlov · 6 years ago
  25. 4c33997 bpo-34911: Added support for secure websocket cookies (GH-9734) by Paul Bailey · 6 years ago
  26. cd45385 bpo-34909: keep searching mixins until base class is found (GH-9737) by Ethan Furman · 6 years ago
  27. 4642d5f Use assertEqual() instead of assertEquals(). (GH-9721) by Serhiy Storchaka · 6 years ago
  28. c57eb9a bpo-34871: Fix two typos in test_inspect.py (GH-9698) by Chih-Hsuan Yen · 6 years ago
  29. 0c797a6 bpo-34872: Fix self-cancellation in C implementation of asyncio.Task (GH-9679) by Elvis Pranskevichus · 6 years ago
  30. 97bfe8d bpo-34172: multiprocessing.Pool leaks resources after being deleted (GH-8450) by tzickel · 6 years ago
  31. 9012a0f bpo-34728: Fix asyncio tests to run under "-Werror" (GH-9661) by Yury Selivanov · 6 years ago
  32. cbda8fc closes bpo-34868: Improve error message with '_' is combined with an invalid type specifier. (GH-9666) by Benjamin Peterson · 6 years ago
  33. d4c76d9 bpo-30167: Add test for module.__cached__ is None (GH-7617) by INADA Naoki · 6 years ago
  34. 2a2940e bpo-34854: Fix compiling string annotations containing lambdas. (GH-9645) by Serhiy Storchaka · 6 years ago
  35. d5bd036 bpo-34849: Don't log wating for selector.select in asyncio loop iteration (GH-9641) by Andrew Svetlov · 6 years ago
  36. eef0596 bpo-31370: Remove references to threadless builds (#8805) by Zackery Spytz · 6 years ago
  37. 1fba2ff bpo-34736: improve error message for invalid length b64decode inputs (GH-9563) by Tal Einat · 6 years ago
  38. 9df346b bpo-34248: Add filename to error raised in {gnu,ndbm}.open() (GH-8590) by Zsolt Cserna · 6 years ago
  39. 3f22811 bpo-32892: Use ast.Constant instead of specific constant AST types. (GH-9445) by Serhiy Storchaka · 6 years ago
  40. 7291108 Fix tests in test_socket to use correctly CMSG_LEN (GH-9594) by Pablo Galindo · 6 years ago
  41. bb81651 bpo-31425: Expose AF_QIPCRTR in socket module (GH-3706) by Bjorn Andersson · 6 years ago
  42. 2aaf98c bpo-34320: Fix dict(o) didn't copy order of dict subclass (GH-8624) by INADA Naoki · 6 years ago
  43. d345bb4 bpo-34334: Don't log traceback twice in QueueHandler (GH-9537) by Cheryl Sabella · 6 years ago
  44. 5a5ce06 bpo-5950: Support reading zips with comments in zipimport (#9548) by Zackery Spytz · 6 years ago
  45. 46f40be bpo-33937: Catch ENOMEM error in test_socket (#9557) by Victor Stinner · 6 years ago
  46. 6ea29c5 bpo-34687: Make asynico use ProactorEventLoop by default (GH-9538) by Victor Stinner · 6 years ago
  47. c8c0249 bpo-32557: allow shutil.disk_usage to take a file path on Windows also (GH-9372) by Joe Pamer · 6 years ago
  48. 025eb98 bpo-34683: Make SyntaxError column offsets consistently 1-indexed (gh-9338) by Ammar Askar · 6 years ago
  49. a46467f bpo-34783: Add test_cmd_line_script.test_nonexisting_script() (GH-9535) by Victor Stinner · 6 years ago
  50. 5767509 bpo-34582: Update syntax of Azure Pipelines builds (GH-9521) by Steve Dower · 6 years ago
  51. 558c49b bpo-34728: Remove deprecate *loop* argument in asyncio.sleep (GH-9415) by João Júnior · 6 years ago
  52. 9718b59 bpo-34659: Adds initial kwarg to itertools.accumulate() (GH-9345) by Lisa Roach · 6 years ago
  53. 17b1d5d bpo-17239: Disable external entities in SAX parser (GH-9217) by Christian Heimes · 6 years ago
  54. 9fb051f bpo-34670: Add TLS 1.3 post handshake auth (GH-9460) by Christian Heimes · 6 years ago
  55. c0da582 bpo-34759: Fix error handling in ssl 'unwrap()' (GH-9468) by Nathaniel J. Smith · 6 years ago
  56. 5bdab64 bpo-29577: Enum: mixin classes don't mix well with already mixed Enums (GH-9328) by Ethan Furman · 6 years ago
  57. fd97d1f bpo-32117: Allow tuple unpacking in return and yield statements (gh-4509) by David Cuthbert · 6 years ago
  58. 7279b51 bpo-34537: Fix test_gdb:test_strings with LC_ALL=C (GH-9483) by Elvis Pranskevichus · 6 years ago
  59. b46ad54 Minor performance tweak for deque.index() with a start argument (GH-9440) by Raymond Hettinger · 6 years ago
  60. f14c28f bpo-34011: Fixes missing venv files and other tests (GH-9458) by Steve Dower · 6 years ago
  61. bc85475 bpo-34754: Fix test_flush_return_value on FreeBSD (GH-9451) by Berker Peksag · 6 years ago
  62. 8213ead bpo-19756: Prevent test failures due to EADDRNOTAVAIL (GH-9446) by Berker Peksag · 6 years ago
  63. 06e7608 Revert "bpo-34589: Add -X coerce_c_locale command line option (GH-9378)" (GH-9430) by Victor Stinner · 6 years ago
  64. b2984ab bpo-25711: Remove outdated zipimport tests. (GH-9404) by Serhiy Storchaka · 6 years ago
  65. e89de73 bpo-34125: Enable profiling of method_descriptor in all cases (GH-8416) by jdemeyer · 6 years ago
  66. 79d1c2e bpo-25711: Rewrite zipimport in pure Python. (GH-6809) by Serhiy Storchaka · 6 years ago
  67. d0f49d2 bpo-34582: Adds JUnit XML output for regression tests (GH-9210) by Steve Dower · 6 years ago
  68. 0185f34 bpo-33721: Make some os.path functions and pathlib.Path methods be tolerant to invalid paths. (#7695) by Serhiy Storchaka · 6 years ago
  69. 7bdf282 bpo-32455: Add jump parameter to dis.stack_effect(). (GH-6610) by Serhiy Storchaka · 6 years ago
  70. dbdee00 bpo-34589: Add -X coerce_c_locale command line option (GH-9378) by Victor Stinner · 6 years ago
  71. 7a0791b bpo-34589: C locale coercion off by default (GH-9073) by Victor Stinner · 6 years ago
  72. 188ebfa bpo-34589: Make _PyCoreConfig.coerce_c_locale private (GH-9371) by Victor Stinner · 6 years ago
  73. 7484bdf bpo-34587, test_socket: remove RDSTest.testCongestion() (GH-9277) by Victor Stinner · 6 years ago
  74. 9bdb7be bpo-34341: Fix appending to ZIP archives with the ZIP64 extension. (GH-8683) by Serhiy Storchaka · 6 years ago
  75. da8d72c bpo-12458: Fix line numbers for multiline expressions. (GH-8774) by Serhiy Storchaka · 6 years ago
  76. e0e5065 bpo-34610: Fixed iterator of multiprocessing.managers.DictProxy. (GH-9113) by Serhiy Storchaka · 6 years ago
  77. d206731 bpo-34579: Fix test_embed DEFAULT_CON AIX (GH-9063) by Michael Felt · 6 years ago
  78. 3d18b50 bpo-34685: Skip posix_spawn scheduler tests on BSD (GH-9316) by Pablo Galindo · 6 years ago
  79. 5903296 bpo-34651: Only allow the main interpreter to fork. (gh-9279) by Eric Snow · 6 years ago
  80. 9b9d97d bpo-34363: dataclasses.asdict() and .astuple() now handle fields which are namedtuples. (GH-9151) by Eric V. Smith · 6 years ago
  81. 5ac7043 bpo-33073: Adding as_integer_ratio to ints. (GH-8750) by Lisa Roach · 6 years ago
  82. 1900384 bpo-6721: Hold logging locks across fork() (GH-4071) by Gregory P. Smith · 6 years ago
  83. 11194c8 bpo-34666: Implement stream.awrite() and stream.aclose() (GH-9274) by Andrew Svetlov · 6 years ago
  84. 413118e Fix test_asyncio for AIX - do not call transport.get_extra_info('sockname') (#8907) by Michael Felt · 6 years ago
  85. 01e0afa bpo-31132: Remove prlimit permission test. (GH-9280) by Benjamin Peterson · 6 years ago
  86. 84db4a9 closes bpo-34664: Only check file permission bits of newly created directories. (GH-9273) by Benjamin Peterson · 6 years ago
  87. e78734d bpo-34661: Fix test skipping call. (GH-9266) by Benjamin Peterson · 6 years ago
  88. a710ebd closes bpo-34661: Fix test_shutil if unzip doesn't support -t. (GH-9262) by Benjamin Peterson · 6 years ago
  89. 4ae8ece bpo-34200: Fix non-determinism of test_pkg (GH-9248) by Gregory P. Smith · 6 years ago
  90. c9a71dd closes bpo-34641: Further restrict the LHS of keyword argument function call syntax. (GH-9212) by Benjamin Peterson · 6 years ago
  91. e1a34ce closes bpo-34654: Tolerate + at the beginning of large years. (GH-9238) by Benjamin Peterson · 6 years ago
  92. c704222 closes bpo-34650: Check if sched_getscheduler returns ENOSYS before declaring it supported. (GH-9228) by Benjamin Peterson · 6 years ago
  93. 5b10d51 closes bpo-34004: Skip lock interruption tests on musl. (GH-9224) by Benjamin Peterson · 6 years ago
  94. 0bd1a2d bpo-31577: Fix a crash in os.utime() in case of a bad ns argument. (GH-3752) by Oren Milman · 6 years ago
  95. 019f0a0 bpo-34536: raise error for invalid _missing_ results (GH-9147) by Ethan Furman · 6 years ago
  96. a5d1eb8 bpo-34638: Store a weak reference to stream reader to break strong references loop (GH-9201) by Andrew Svetlov · 6 years ago
  97. 9dfa0fe bpo-34637: Make the *start* argument for *sum()* visible as a keyword argument. (GH-9208) by Raymond Hettinger · 6 years ago
  98. 0fb9fad bpo-34282: Fix Enum._convert shadowing members named _convert (GH-8568) by orlnub123 · 6 years ago
  99. 865c17f closes bpo-34640: Remove the TANH_PRESERVES_ZERO_SIGN configure check. (GH-9206) by Benjamin Peterson · 6 years ago
  100. 998b806 Revert "bpo-34595: Add %T format to PyUnicode_FromFormatV() (GH-9080)" (GH-9187) by Victor Stinner · 6 years ago