Python 3.10.1
  1. 2cd268a Python 3.10.1 by Pablo Galindo · 3 years, 8 months ago v3.10.1
  2. cb68c0a bpo-45664: Fix resolve_bases() and new_class() for GenericAlias instance as a base (GH-29298) by Miss Islington (bot) · 3 years, 9 months ago
  3. abceb66 bpo-45663: Fix is_dataclass() for dataclasses which are subclasses of types.GenericAlias (GH-29294) by Miss Islington (bot) · 3 years, 9 months ago
  4. f1dd5ed bpo-45662: Fix the repr of InitVar with a type alias to the built-in class (GH-29291) by Miss Islington (bot) · 3 years, 9 months ago
  5. beb8342 bpo-27946: Fix possible crash in ElementTree.Element (GH-29915) by Miss Islington (bot) · 3 years, 9 months ago
  6. 4b11d71 bpo-43498: Fix dictionary iteration error in _ExecutorManagerThread (GH-24868) by Miss Islington (bot) · 3 years, 9 months ago
  7. 4d2cc3e bpo-45614: Fix traceback display for exceptions with invalid module name (GH-29726) (GH-29826) by Irit Katriel · 3 years, 9 months ago
  8. 305236e bpo-37658: Actually return result in race condition (GH-29202) by Miss Islington (bot) · 3 years, 9 months ago
  9. 2c398a5 [3.10] bpo-19460: Add test for MIMENonMultipart (GH-29817) (GH-29818) by Miss Islington (bot) · 3 years, 9 months ago
  10. 3f024e2 bpo-44353: Correct docstring for `NewType` (GH-29785) by Miss Islington (bot) · 3 years, 9 months ago
  11. c72311d [3.10] bpo-45727: Only trigger the 'did you forgot a comma' error suggestion if inside parentheses. (GH-29767) by Pablo Galindo Salgado · 3 years, 9 months ago
  12. 56b5cd5 bpo-45859: Mark test_field_descriptor in test_collections as CPython-only (GH-29691) (GH-29708) by Miss Islington (bot) · 3 years, 9 months ago
  13. 10343bd bpo-44649: Fix dataclasses(slots=True) with a field with a default, but init=False (GH-29692) by Miss Islington (bot) · 3 years, 9 months ago
  14. 9841ac2 bpo-45852: Fix the Counter/iter test for statistics.mode() (GH-29667) (GH-29671) by Miss Islington (bot) · 3 years, 9 months ago
  15. cf8c878 Added kw_only parameter to make_dataclasses. (GH-29679) by Miss Islington (bot) · 3 years, 9 months ago
  16. 511ee1c [3.10] bpo-45727: Make the syntax error for missing comma more consistent (GH-29427) (GH-29647) by Pablo Galindo Salgado · 3 years, 9 months ago
  17. 904af3d [3.10] bpo-45848: Allow the parser to get error lines from encoded files (GH-29646) (GH-29661) by Łukasz Langa · 3 years, 9 months ago
  18. 9501e8d bpo-45837: Note tiltangle is not deprecated, it's really settiltangle (GH-29629) by Hugo van Kemenade · 3 years, 9 months ago
  19. 5cf05c7 bpo-45835: Fix race condition in test_queue (GH-29601) (GH-29612) by Miss Islington (bot) · 3 years, 9 months ago
  20. 8eabe60 [3.10] bpo-45826: Fix a crash in suggestions.c by checking for `traceback is None` (GH-29590) (GH-29602) by Łukasz Langa · 3 years, 9 months ago
  21. e3aa9fd [3.10] bpo-45822: Respect PEP 263's coding cookies in the parser even if flags are not provided (GH-29582) (GH-29586) by Pablo Galindo Salgado · 3 years, 9 months ago
  22. 1079b3e bpo-42540: reallocation of id_mutex should not force default allocator (GH-29564) by Miss Islington (bot) · 3 years, 9 months ago
  23. 5618c81 [3.10] bpo-45716: Improve the error message when using True/False/None as keywords in a call (GH-29413). (GH-29428) by Pablo Galindo Salgado · 3 years, 9 months ago
  24. 7c99e43 ensure deprecation warning from assertDictContainsSubset points at actual test code (#26497) by Anthony Sottile · 3 years, 9 months ago
  25. 94dad5e bpo-45677: Reword first section of `sqlite3` docs (GH-29326) (GH-29566) by Miss Islington (bot) · 3 years, 9 months ago
  26. 55d24ed bpo-45752: Remove "array" from list of things that cannot be copied in `copy` module docstring (GH-29555) by Miss Islington (bot) · 3 years, 9 months ago
  27. bf26a6d bpo-45738: Fix computation of error location for invalid continuation (GH-29550) by Miss Islington (bot) · 3 years, 9 months ago
  28. ed55426 [bpo-45765] Fix distribution discovery on empty path. (GH-29487) (GH-29510) by Miss Islington (bot) · 3 years, 9 months ago
  29. e4c5a5e bpo-45235: Revert an argparse bugfix that caused a regression (GH-29525) (GH-29530) by Miss Islington (bot) · 3 years, 9 months ago
  30. a89bbde [3.10] bpo-45773: Stop "optimizing" certain jump patterns (GH-29526) by Brandt Bucher · 3 years, 9 months ago
  31. c5bfb88 [3.10] bpo-45757: Fix bug where dis produced an incorrect oparg on EXTENDED_ARG before a no-arg opcode (GH-29480) (GH-29506) by Irit Katriel · 3 years, 9 months ago
  32. 8fdf6c6 bpo-27313: Use non-deprecated methods for tracing (GH-29425) (GH-29450) by Miss Islington (bot) · 3 years, 9 months ago
  33. 6603f6b bpo-45644: Make json.tool read infile before writing to outfile (GH-29273) (GH-29445) by Miss Islington (bot) · 3 years, 9 months ago
  34. bcb236c bpo-45678: Add more ``singledispatchmethod`` tests (GH-29412) (GH-29424) by Miss Islington (bot) · 3 years, 10 months ago
  35. 099a94f bpo-45160: Fix refleak in test_ttk_guionly introduced in GH-28291 (GH-29416) (GH-29421) by Miss Islington (bot) · 3 years, 10 months ago
  36. 363ecb3 bpo-27313: Fix ttk_guionly tests failing on Framework builds on macOS (GH-29411) (GH-29422) by Miss Islington (bot) · 3 years, 10 months ago
  37. 1f3ae5c bpo-30570: Fix segfault on buildbots caused by stack overflow from recursion in tests (GH-29258) by Miss Islington (bot) · 3 years, 10 months ago
  38. f191838 bpo-45678: Add ``functools.singledispatchmethod`` tests (GH-29328) (GH-29390) by Miss Islington (bot) · 3 years, 10 months ago
  39. fd6b70d [3.10] bpo-45578: add tests for `dis.distb` (GH-29332) (GH-29385) by Łukasz Langa · 3 years, 10 months ago
  40. cfdd7d2 bpo-45406: make inspect.getmodule() return None when getabsfile() raises FileNotFoundError (GH-28824) by Miss Islington (bot) · 3 years, 10 months ago
  41. 3997f3c bpo-45679: Fix caching of multi-value typing.Literal (GH-29334) by Miss Islington (bot) · 3 years, 10 months ago
  42. 191a939 [3.10] bpo-45628: Check all parts of the suffix for an extension match. (GH-29310) (GH-29314) by Miss Islington (bot) · 3 years, 10 months ago
  43. 6b86702 [3.10] bpo-45502: Fix test_shelve (GH-29003) (GH-29305) by Serhiy Storchaka · 3 years, 10 months ago
  44. 7203ecd bpo-45577: test all pickle protocols in `test_zoneinfo` (GH-29167) (GH-29296) by Miss Islington (bot) · 3 years, 10 months ago
  45. eccb753 bpo-45624: make test_graphlib not depend on the iteration order of sets (GH-29233) (GH-29293) by Miss Islington (bot) · 3 years, 10 months ago
  46. 823b3e3 bpo-45612: Add sqlite3 module docstring (GH-29224) (GH-29288) by Miss Islington (bot) · 3 years, 10 months ago
  47. 1f45cc0 bpo-44904: Fix classmethod property bug in doctest module (GH-28838) by Miss Islington (bot) · 3 years, 10 months ago
  48. ce7a6af bpo-45438: format of inspect.Signature with generic builtins (GH-29212) by Miss Islington (bot) · 3 years, 10 months ago
  49. 36971fd bpo-45566: `test_frozen_pickle` checks all `pickle` protocols (GH-29150) by Miss Islington (bot) · 3 years, 10 months ago
  50. f812fef bpo-30570: Use Py_EnterRecursiveCall() in issubclass() (GH-29048) by Miss Islington (bot) · 3 years, 10 months ago
  51. 8f6aa48 bpo-43592: Raise RLIMIT_NOFILE in test.libregrtest (GH-29127) by Miss Islington (bot) · 3 years, 10 months ago
  52. 6b75ad5 bpo-45557: Fix underscore_numbers in pprint.pprint(). (GH-29129) by Miss Islington (bot) · 3 years, 10 months ago
  53. 98f157d bpo-45160: Ttk optionmenu only set variable once (GH-28291) (GH-29131) by Miss Islington (bot) · 3 years, 10 months ago
  54. 2a9ab75 bpo-44559: [Enum] restore fixes lost in 3.9 reversion (GH-29114) by Ethan Furman · 3 years, 10 months ago
  55. 64e83c7 bpo-45192: Fix a bug that infers the type of an os.PathLike[bytes] object as str (GH-28323) (GH-29111) by Miss Islington (bot) · 3 years, 10 months ago
  56. 65de808 bpo-45229: Make doctest tests discoverable (GH-28986) (GH-29095) by Miss Islington (bot) · 3 years, 10 months ago
  57. d6afe3b Cleanup a couple of comments left on PR 28775 post-merge. (GH-29079) by Miss Islington (bot) · 3 years, 10 months ago
  58. b8dbb3a bpo-45436: Fix tkinter tests with Tcl/Tk 8.6.11+ (GH-29077) (GH-29080) by Miss Islington (bot) · 3 years, 10 months ago
  59. c15ba30 bpo-39679: Add tests for classmethod/staticmethod singledispatchmethods (GH-29034) (GH-29072) by Miss Islington (bot) · 3 years, 10 months ago
  60. 5c9cab5 [3.10] bpo-45494: Fix parser crash when reporting errors involving invalid continuation characters (GH-28993) (GH-29070) by Łukasz Langa · 3 years, 10 months ago
  61. 325b2c2 [3.10] bpo-45500: Rewrite test_dbm (GH-29002) (GH-29069) by Łukasz Langa · 3 years, 10 months ago
  62. 97ce855 bpo-45475: Revert `__iter__` optimization for GzipFile, BZ2File, and LZMAFile. (GH-29016) by Miss Islington (bot) · 3 years, 10 months ago
  63. 65c1db7 bpo-45229: Make test_http_cookiejar discoverable (GH-29004) by Miss Islington (bot) · 3 years, 10 months ago
  64. a294703 [3.10] bpo-45495: Add 'case' and 'match' to IDLE completions list. (GH-29000) (GH-29001) by Miss Islington (bot) · 3 years, 10 months ago
  65. 5df35fa bpo-45249: Fix caret location when end_offset is set to 0 (GH-28855) by Miss Islington (bot) · 3 years, 10 months ago
  66. 2b6eb81 bpo-45428: Fix reading filenames from stdin in py_compile (GH-28848) by Miss Islington (bot) · 3 years, 10 months ago
  67. 4641afe [3.10] bpo-45467: Fix IncrementalDecoder and StreamReader in the "raw-unicode-escape" codec (GH-28944) (GH-28952) by Serhiy Storchaka · 3 years, 10 months ago
  68. 0bff4cc [3.10] bpo-45461: Fix IncrementalDecoder and StreamReader in the "unicode-escape" codec (GH-28939) (GH-28943) by Miss Islington (bot) · 3 years, 10 months ago
  69. f40b230 bpo-45386: Handle strftime's ValueError graciously in xmlrpc.client (GH-28765) (GH-28934) by Miss Islington (bot) · 3 years, 10 months ago
  70. fd2be6d bpo-24444: fix an error in argparse help when help for an option is blank (GH-28050) (GH-28931) by Miss Islington (bot) · 3 years, 10 months ago
  71. f8473f6 [3.10] bpo-45239: Fix parsedate_tz when time has more than 2 dots in it (GH-28452) (GH-28930) by Łukasz Langa · 3 years, 10 months ago
  72. 151234f bpo-45229: Make tkinter tests discoverable (GH-28637) (GH-28927) by Miss Islington (bot) · 3 years, 10 months ago
  73. 7e74d99 bpo-45453: Fix test_embed.StdPrinterTests (GH-28916) (GH-28917) by Miss Islington (bot) · 3 years, 10 months ago
  74. 47a50fe bpo-45401: Fix a resource warning in test_logging (GH-28864) (GH-28872) by Miss Islington (bot) · 3 years, 10 months ago
  75. 5aca34f bpo-45401: Change shouldRollover() methods to only rollover regular f… (GH-28822) (#28867) by Miss Islington (bot) · 3 years, 10 months ago
  76. 164dddf bpo-45416: Fix use of asyncio.Condition() with explicit Lock objects (GH-28850) by Miss Islington (bot) · 3 years, 10 months ago
  77. 14a483a [3.10] bpo-45419: Fix interfaces on DegenerateFiles.Path (GH-28844) by Jason R. Coombs · 3 years, 10 months ago
  78. e086bfe Fix dataclassses spelling (GH-28837) (GH-28841) by Miss Islington (bot) · 3 years, 10 months ago
  79. 8772935 bpo-20028: Improve error message of csv.Dialect when initializing (GH-28705) by Miss Islington (bot) · 3 years, 10 months ago
  80. 4ce55a2 [3.10] bpo-45408: Don't override previous tokenizer errors in the second parser pass (GH-28812). (GH-28813) by Pablo Galindo Salgado · 3 years, 10 months ago
  81. eabca6e bpo-45337: Use the realpath of the new executable when creating a venv on Windows (GH-28663) by Miss Islington (bot) · 3 years, 10 months ago
  82. cfca4a6 [3.10] Fix typos in the Lib directory (GH-28775) (GH-28804) by Christian Clauss · 3 years, 11 months ago
  83. d55bf81 bpo-45400: Fix suggestion test of test_exceptions (GH-28783) by Miss Islington (bot) · 3 years, 11 months ago
  84. 4c35a2a bpo-45328: Avoid failure in OSs without TCP_NODELAY support (GH-28646) (GH-28771) by Miss Islington (bot) · 3 years, 11 months ago
  85. 325e464 bpo-45343: Update bundled pip to 21.2.4 and setuptools to 58.1.0 (GH-28684) (GH-28746) by Miss Islington (bot) · 3 years, 11 months ago
  86. d0d2965 bpo-44050: Extension modules can share state when they don't support sub-interpreters. (GH-27794) (GH-28738) by Miss Islington (bot) · 3 years, 11 months ago
  87. d0d0909 bpo-45354: Skip obsolete device name tests on Windows 11 (GH-28712) by Miss Islington (bot) · 3 years, 11 months ago
  88. 3733ddd [3.10] bpo-45371: Fix distutils' rpath support for clang (GH-28732) (GH-28733) by Miss Islington (bot) · 3 years, 11 months ago
  89. 872b1e5 [3.10] bpo-44594: fix (Async)ExitStack handling of __context__ (gh-27089) (GH-28730) by John Belmonte · 3 years, 11 months ago
  90. 6145192 Merge tag 'v3.10.0' into 3.10 by Pablo Galindo · 3 years, 11 months ago
  91. b494f59 Python 3.10.0 by Pablo Galindo · 3 years, 11 months ago v3.10.0
  92. bc4c705 bpo-45310: Fix parrallel shared memory tests (GH-28661) by Miss Islington (bot) · 3 years, 11 months ago
  93. 49fac92 bpo-45346: Keep docs consistent regarding true and false values (GH-28697) (GH-28698) by Miss Islington (bot) · 3 years, 11 months ago
  94. edf190b [3.10] Remove trailing spaces (GH-28709) by Serhiy Storchaka · 3 years, 11 months ago
  95. 93242d7 [3.10] Remove trailing spaces (GH-28709) by Serhiy Storchaka · 3 years, 11 months ago
  96. 72089f3 bpo-45346: Keep docs consistent regarding true and false values (GH-28697) (GH-28698) by Miss Islington (bot) · 3 years, 11 months ago
  97. fc3511f bpo-45125: Improves pickling docs and tests for `shared_memory` (GH-28294) by Miss Islington (bot) · 3 years, 11 months ago
  98. 4e6681d bpo-45310: Fix parrallel shared memory tests (GH-28661) by Miss Islington (bot) · 3 years, 11 months ago
  99. ef7c729 bpo-45229: Make datetime tests discoverable (GH-28615) by Miss Islington (bot) · 3 years, 11 months ago
  100. 7873884 [3.10] bpo-40173: Fix test.support.import_helper.import_fresh_module() (GH-28654) (GH-28657) by Serhiy Storchaka · 3 years, 11 months ago