Python 3.11.0a3
  1. 2e91dba Python 3.11.0a3 by Pablo Galindo · 3 years, 8 months ago v3.11.0a3
  2. 2109f78 bpo-45711: Remove unnecessary normalization of exc_info (GH-29922) by Irit Katriel · 3 years, 8 months ago
  3. 7778116 bpo-46015: Fixes calculation of sys.path in a venv on Windows (GH-29992) by Steve Dower · 3 years, 8 months ago
  4. 3cb9731 bpo-45359: Support TopologicalSorter type subscript (GH-28714) by Jacob Hayes · 3 years, 8 months ago
  5. 69806b9 bpo-46009: Do not exhaust generator when send() method raises (GH-29986) by Mark Shannon · 3 years, 8 months ago
  6. 8319114 bpo-45947: Place dict and values pointer at fixed (negative) offset just before GC header. (GH-29879) by Mark Shannon · 3 years, 8 months ago
  7. 1c7a1c3 bpo-46004: Fix error location for loops with invalid targets (GH-29959) by Pablo Galindo Salgado · 3 years, 8 months ago
  8. cf7eaa4 Revert "bpo-28533: Remove asyncore, asynchat, smtpd modules (GH-29521)" (GH-29951) by Victor Stinner · 3 years, 8 months ago
  9. 265918b bpo-23819: asyncio: Replace AssertionError with TypeError where it makes sense (GH-29894) by Kumar Aditya · 3 years, 9 months ago
  10. 98fac8b bpo-44035: Check autoconf files thoroughly (GH-29935) by Christian Heimes · 3 years, 9 months ago
  11. f34d181 bpo-45732: Update python.org macOS installer to use Tcl/Tk 8.6.12. (GH-29931) by Ned Deily · 3 years, 9 months ago
  12. c0521fe bpo-45840: Improve cross-references in the data model documentation (GH-29633) by Alex Waygood · 3 years, 9 months ago
  13. 2b318ce bpo-45664: Fix resolve_bases() and new_class() for GenericAlias instance as a base (GH-29298) by Serhiy Storchaka · 3 years, 9 months ago
  14. 446be16 bpo-45663: Fix is_dataclass() for dataclasses which are subclasses of types.GenericAlias (GH-29294) by Serhiy Storchaka · 3 years, 9 months ago
  15. 1fd4de5 bpo-45662: Fix the repr of InitVar with a type alias to the built-in class (GH-29291) by Serhiy Storchaka · 3 years, 9 months ago
  16. 60c320c bpo-37295: Optimize math.comb() and math.perm() (GH-29090) by Serhiy Storchaka · 3 years, 9 months ago
  17. d15cdb2 bpo-27946: Fix possible crash in ElementTree.Element (GH-29915) by Serhiy Storchaka · 3 years, 9 months ago
  18. f42a06b bpo-13236: Flush the output stream more often in unittest (GH-29864) by Serhiy Storchaka · 3 years, 9 months ago
  19. cee07b1 bpo-45695: Test out-of-tree builds on GHA (GH-29904) by Christian Heimes · 3 years, 9 months ago
  20. 5bb7ef2 bpo-45607: Make it possible to enrich exception displays via setting their __note__ field (GH-29880) by Irit Katriel · 3 years, 9 months ago
  21. d930170 bpo-45816: Support building with VS 2022 (v143 toolset) on Windows (GH-29577) by Crowthebird · 3 years, 9 months ago
  22. 2ff758b bpo-45711: [asyncio] Normalize exceptions immediately after Fetch, before they are stored as StackItem, which should be normalized (GH-29890) by Irit Katriel · 3 years, 9 months ago
  23. 84ca123 bpo-45950: Introduce Bootstrap Python again (#29859) by Christian Heimes · 3 years, 9 months ago
  24. 03768c4 bpo-45885: Specialize COMPARE_OP (GH-29734) by Dennis Sweeney · 3 years, 9 months ago
  25. 99fcf15 bpo-45582: Port getpath[p].c to Python (GH-29041) by Steve Dower · 3 years, 9 months ago
  26. b2afdc9 bpo-45535: Improve output of Enum ``dir()`` (GH-29316) by Alex Waygood · 3 years, 9 months ago
  27. 8a45ca5 bpo-45711: Change exc_info related APIs to derive type and traceback from the exception instance (GH-29780) by Irit Katriel · 3 years, 9 months ago
  28. af8c8ca bpo-30533:Add function inspect.getmembers_static that does not call properties or dynamic properties. (#20911) by Weipeng Hong · 3 years, 9 months ago
  29. 6266e4a bpo-45917: Add math.exp2() method - return 2 raised to the power of x (GH-29829) by Gideon · 3 years, 9 months ago
  30. c1f93f0 bpo-43905: Expand dataclasses.astuple() and asdict() docs (GH-26154) by andrei kulakov · 3 years, 9 months ago
  31. 992565f bpo-45881: configure --with-freeze-module --with-build-python (GH-29835) by Christian Heimes · 3 years, 9 months ago
  32. c4a69a4 bpo-45828: Use unraisable exceptions within sqlite3 callbacks (FH-29591) by Erlend Egeberg Aasland · 3 years, 9 months ago
  33. 6ac3c8a bpo-40280: Emscripten systems use .wasm suffix by default (GH-29842) by Christian Heimes · 3 years, 9 months ago
  34. 6092957 bpo-45786: Allocate space for frame in frame object. (GH-29729) by Mark Shannon · 3 years, 9 months ago
  35. 7431448 bpo-43498: Fix dictionary iteration error in _ExecutorManagerThread (GH-24868) by Jakub Kulík · 3 years, 9 months ago
  36. b3f443a bpo-40280: Disable unusable core extension modules on emscripten (GH-29834) by Erlend Egeberg Aasland · 3 years, 9 months ago
  37. 934a826 bpo-37658: Actually return result in race condition (GH-29202) by Sam Bull · 3 years, 9 months ago
  38. f87ea03 bpo-45915: use fcntl(fd, F_GETFD) in is_valid_fd() (GH-29821) by Christian Heimes · 3 years, 9 months ago
  39. 46c8d91 bpo-19460: Add test for MIMENonMultipart (GH-29817) by 180909 · 3 years, 9 months ago
  40. 4dfae6f bpo-45614: Fix traceback display for exceptions with invalid module name (GH-29726) by Irit Katriel · 3 years, 9 months ago
  41. e71c12e bpo-42268: Fail the configure step if the selected compiler doesn't support memory sanitizer (GH-29806) by Pablo Galindo Salgado · 3 years, 9 months ago
  42. af9ee57 bpo-45876: Improve accuracy for stdev() and pstdev() in statistics (GH-29736) by Raymond Hettinger · 3 years, 9 months ago
  43. db55f3f bpo-44530: Reverts a change to the 'code.__new__' audit event (GH-29809) by Steve Dower · 3 years, 9 months ago
  44. 7edb627 bpo-41735: Fix thread lock in zlib.Decompress.flush() may go wrong (GH-29587) by Ma Lin · 3 years, 9 months ago
  45. 4841e69 bpo-45901: Fixes argument passing when invoking .py files directly through the Store package (GH-29799) by Steve Dower · 3 years, 9 months ago
  46. 9a7611a bpo-45866: Fix typo in the NEWS entry (GH-29798) by Victor Stinner · 3 years, 9 months ago
  47. 4ebde73 bpo-40280: Move hard-coded feature checks to configure (GH-29789) by Christian Heimes · 3 years, 9 months ago
  48. 8caceb7 bpo-40280: Add configure check for socket shutdown (GH-29795) by Christian Heimes · 3 years, 9 months ago
  49. 253b7a0 bpo-45866: pegen strips directory of "generated from" header (GH-29777) by Victor Stinner · 3 years, 9 months ago
  50. 97dcab7 bpo-43137: webbrowser: Replace gvfs-open and gnome-open with "gio open" (GH-29154) by Simon McVittie · 3 years, 9 months ago
  51. 1052a39 bpo-40280: Add wasm cross build targets (GH-29771) by Christian Heimes · 3 years, 9 months ago
  52. dfcc6ff bpo-33393: Update config.guess and config.sub (GH-29781) by Christian Heimes · 3 years, 9 months ago
  53. dc19e86 bpo-41498: Fix build on platforms without sigset_t (GH-29770) by Christian Heimes · 3 years, 9 months ago
  54. 24c10d2 bpo-45727: Only trigger the 'did you forgot a comma' error suggestion if inside parentheses (GH-29757) by Pablo Galindo Salgado · 3 years, 9 months ago
  55. b30bf45 bpo-45881: Use CC from env first for cross building (GH-29752) by Christian Heimes · 3 years, 9 months ago
  56. d5cd2ef bpo-45514: Deprecate importlib resources legacy functions. (GH-29036) by Jason R. Coombs · 3 years, 9 months ago
  57. dd8ce9e bpo-45886: Allow overriding freeze command for cross compiling (GH-29735) by Christian Heimes · 3 years, 9 months ago
  58. f9de97a bpo-45616: Let py.exe distinguish between v3.1 and v3.10 (GH-29731) by Zachary Ware · 3 years, 9 months ago
  59. 4ae26b9 bpo-39026: Fix Python.h when building with Xcode (GH-29488) by Victor Stinner · 3 years, 9 months ago
  60. 5be98e5 bpo-45873: Get rid of bootstrap_python (#29717) by Guido van Rossum · 3 years, 9 months ago
  61. ae1965c bpo-45703: Invalidate _NamespacePath cache on importlib.invalidate_ca… (GH-29384) by Miro Hrončok · 3 years, 9 months ago
  62. 8ed1495 bpo-45783: Preserve file moves and deletions in the tests for the freeze tool. (GH-29527) by Eric Snow · 3 years, 9 months ago
  63. b48ac6f bpo-45878: convert `try/except` to `self.assertRaises` in `Lib/ctypes/test/test_functions.py` (GH-29721) by Nikita Sobolev · 3 years, 9 months ago
  64. 135cabd bpo-44525: Copy free variables in bytecode to allow calls to inner functions to be specialized (GH-29595) by Mark Shannon · 3 years, 9 months ago
  65. 457e6a6 bpo-45561: Run smelly.py tool from $(srcdir) (GH-29138) by Neil Schemenauer · 3 years, 9 months ago
  66. 0242094 bpo-42238: [doc] Announce the future removal of make suspicous. (GH-29652) by Julien Palard · 3 years, 9 months ago
  67. 1037ca5 bpo-45850: Implement deep-freeze on Windows (#29648) by Guido van Rossum · 3 years, 9 months ago
  68. 7fd92a8 bpo-45813: Make sure that frame->generator is NULLed when generator is deallocated. (GH-29700) by Mark Shannon · 3 years, 9 months ago
  69. d3062f6 bpo-44649: Fix dataclasses(slots=True) with a field with a default, but init=False (GH-29692) by Eric V. Smith · 3 years, 9 months ago
  70. db2277a bpo-45723: Add helpers for save/restore env (GH-29637) by Erlend Egeberg Aasland · 3 years, 9 months ago
  71. d2b55b0 bpo-45766: Add direct proportion option to linear_regression(). (#29490) by Raymond Hettinger · 3 years, 9 months ago
  72. f7638dd Added kw_only parameter to make_dataclasses. (GH-29679) by Eric V. Smith · 3 years, 9 months ago
  73. fdc0e09 bpo-44733: Add max_tasks_per_child to ProcessPoolExecutor (GH-27373) by Logan Jones · 3 years, 9 months ago
  74. 81f4e11 bpo-45811: Improve error message when source code contains invisible control characters (GH-29654) by Pablo Galindo Salgado · 3 years, 9 months ago
  75. 7a1d932 bpo-45450: Improve syntax error for parenthesized arguments (GH-28906) by Pablo Galindo Salgado · 3 years, 9 months ago
  76. ef53058 bpo-42158: Add MIME types for n-triples, n-quads, n3 and trig (GH-23230) by Dylan Van Assche · 3 years, 9 months ago
  77. fdcc46d bpo-45848: Allow the parser to get error lines from encoded files (GH-29646) by Pablo Galindo Salgado · 3 years, 9 months ago
  78. be36e06 bpo-45250: fix docs regarding `__iter__` and iterators being inconsistently required by CPython (GH-29170) by Brett Cannon · 3 years, 9 months ago
  79. c8c21bd bpo-45847: Port builtin hashlib extensions to PY_STDLIB_MOD (GH-29642) by Christian Heimes · 3 years, 9 months ago
  80. 0ff3d95 bpo-45507: EOFErrors should be thrown for truncated gzip members (GH-29029) by Ruben Vorderman · 3 years, 9 months ago
  81. 7e44dc0 bpo-45573: Move mandatory core modules to Modules/Setup.bootstrap (GH-29616) by Christian Heimes · 3 years, 9 months ago
  82. 337cb48 bpo-45709: Fix tracing when exception is handled. (GH-29638) by Mark Shannon · 3 years, 9 months ago
  83. 29e5874 bpo-45774: Autoconfiscate SQLite detection (GH-29507) by Erlend Egeberg Aasland · 3 years, 9 months ago
  84. 036fead bpo-45609: Specialize STORE_SUBSCR (GH-29242) by Dennis Sweeney · 3 years, 9 months ago
  85. 4575c01 bpo-45788: Link sys.prefix doc to 'Installation paths' (#29606) by Terry Jan Reedy · 3 years, 9 months ago
  86. 3295910 bpo-45640: [docs] Tokens are now clickable (GH-29260) by Arthur Milchior · 3 years, 9 months ago
  87. c94664c bpo-45837: Properly deprecate turtle.RawTurtle.settiltangle (GH-29618) by Hugo van Kemenade · 3 years, 9 months ago
  88. e4bb22f bpo-45573: Add Modules/Setup.stdlib with conditional modules (GH-29615) by Christian Heimes · 3 years, 9 months ago
  89. 21fa7a3 bpo-45829: Specialize BINARY_SUBSCR for __getitem__ implemented in Python. (GH-29592) by Mark Shannon · 3 years, 9 months ago
  90. df3e53d bpo-45835: Fix race condition in test_queue (#29601) by Sam Gross · 3 years, 9 months ago
  91. 25ecc04 bpo-45573: Introduce extension module flags in Makefile (GH-29594) by Christian Heimes · 3 years, 9 months ago
  92. 5d90c46 bpo-45826: Fix a crash in suggestions.c by checking for `traceback is None` (GH-29590) by Dennis Sweeney · 3 years, 9 months ago
  93. 736684b bpo-42540: reallocation of id_mutex should not force default allocator (GH-29564) by Sam Gross · 3 years, 9 months ago
  94. b919d81 bpo-45831: _Py_DumpASCII() uses a single write() call if possible (GH-29596) by Victor Stinner · 3 years, 9 months ago
  95. 15409c7 bpo-28806: Continue work: improve the netrc library (GH-26330) by Emmanuel Arias · 3 years, 9 months ago
  96. da20d74 bpo-45822: Respect PEP 263's coding cookies in the parser even if flags are not provided (GH-29582) by Pablo Galindo Salgado · 3 years, 9 months ago
  97. df4ae55 bpo-45820: Fix a segfault when the parser fails without reading any input (GH-29580) by Pablo Galindo Salgado · 3 years, 9 months ago
  98. 6a84d61 bpo-45636: Simplify BINARY_OP (GH-29565) by Brandt Bucher · 3 years, 9 months ago
  99. 55868f1 bpo-45429: Support CREATE_WAITABLE_TIMER_HIGH_RESOLUTION if possible (GH-29203) by Dong-hee Na · 3 years, 9 months ago
  100. b931077 bpo-45753: Make recursion checks more efficient. (GH-29524) by Mark Shannon · 3 years, 9 months ago