summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
Commit message (Expand)AuthorAgeFilesLines
* Python 3.11.0a3v3.11.0a3Pablo Galindo2021-12-08125-271/+0
* bpo-45711: Remove unnecessary normalization of exc_info (GH-29922)Irit Katriel2021-12-081-0/+1
* bpo-46015: Fixes calculation of sys.path in a venv on Windows (GH-29992)Steve Dower2021-12-081-0/+1
* bpo-45359: Support TopologicalSorter type subscript (GH-28714)Jacob Hayes2021-12-081-0/+1
* bpo-46009: Do not exhaust generator when send() method raises (GH-29986)Mark Shannon2021-12-081-0/+5
* bpo-45947: Place dict and values pointer at fixed (negative) offset just befo...Mark Shannon2021-12-071-0/+3
* bpo-46004: Fix error location for loops with invalid targets (GH-29959)Pablo Galindo Salgado2021-12-071-0/+2
* Revert "bpo-28533: Remove asyncore, asynchat, smtpd modules (GH-29521)" (GH-2...Victor Stinner2021-12-072-5/+0
* bpo-23819: asyncio: Replace AssertionError with TypeError where it makes sens...Kumar Aditya2021-12-061-0/+1
* bpo-44035: Check autoconf files thoroughly (GH-29935)Christian Heimes2021-12-061-0/+2
* bpo-45732: Update python.org macOS installer to use Tcl/Tk 8.6.12. (GH-29931)Ned Deily2021-12-061-0/+1
* bpo-45840: Improve cross-references in the data model documentation (GH-29633)Alex Waygood2021-12-051-0/+1
* bpo-45664: Fix resolve_bases() and new_class() for GenericAlias instance as a...Serhiy Storchaka2021-12-051-0/+2
* bpo-45663: Fix is_dataclass() for dataclasses which are subclasses of types.G...Serhiy Storchaka2021-12-051-0/+2
* bpo-45662: Fix the repr of InitVar with a type alias to the built-in class (G...Serhiy Storchaka2021-12-051-0/+2
* bpo-37295: Optimize math.comb() and math.perm() (GH-29090)Serhiy Storchaka2021-12-051-0/+1
* bpo-27946: Fix possible crash in ElementTree.Element (GH-29915)Serhiy Storchaka2021-12-051-0/+3
* bpo-13236: Flush the output stream more often in unittest (GH-29864)Serhiy Storchaka2021-12-041-0/+2
* bpo-45695: Test out-of-tree builds on GHA (GH-29904)Christian Heimes2021-12-041-0/+1
* bpo-45607: Make it possible to enrich exception displays via setting their __...Irit Katriel2021-12-031-0/+4
* bpo-45816: Support building with VS 2022 (v143 toolset) on Windows (GH-29577)Crowthebird2021-12-031-0/+1
* bpo-45711: [asyncio] Normalize exceptions immediately after Fetch, before the...Irit Katriel2021-12-031-0/+1
* bpo-45950: Introduce Bootstrap Python again (#29859)Christian Heimes2021-12-031-0/+4
* bpo-45885: Specialize COMPARE_OP (GH-29734)Dennis Sweeney2021-12-031-0/+1
* bpo-45582: Port getpath[p].c to Python (GH-29041)Steve Dower2021-12-031-0/+3
* bpo-45535: Improve output of Enum ``dir()`` (GH-29316)Alex Waygood2021-12-021-0/+1
* bpo-45711: Change exc_info related APIs to derive type and traceback from the...Irit Katriel2021-11-301-0/+6
* bpo-30533:Add function inspect.getmembers_static that does not call propertie...Weipeng Hong2021-11-301-0/+2
* bpo-45917: Add math.exp2() method - return 2 raised to the power of x (GH-29829)Gideon2021-11-291-0/+1
* bpo-43905: Expand dataclasses.astuple() and asdict() docs (GH-26154)andrei kulakov2021-11-291-0/+2
* bpo-45881: configure --with-freeze-module --with-build-python (GH-29835)Christian Heimes2021-11-291-0/+2
* bpo-45828: Use unraisable exceptions within sqlite3 callbacks (FH-29591)Erlend Egeberg Aasland2021-11-291-0/+2
* bpo-40280: Emscripten systems use .wasm suffix by default (GH-29842)Christian Heimes2021-11-291-0/+1
* bpo-45786: Allocate space for frame in frame object. (GH-29729)Mark Shannon2021-11-291-0/+2
* bpo-43498: Fix dictionary iteration error in _ExecutorManagerThread (GH-24868)Jakub KulĂ­k2021-11-291-0/+2
* bpo-40280: Disable unusable core extension modules on emscripten (GH-29834)Erlend Egeberg Aasland2021-11-291-0/+1
* bpo-37658: Actually return result in race condition (GH-29202)Sam Bull2021-11-291-0/+3
* bpo-45915: use fcntl(fd, F_GETFD) in is_valid_fd() (GH-29821)Christian Heimes2021-11-281-0/+1
* bpo-19460: Add test for MIMENonMultipart (GH-29817)1809092021-11-281-0/+1
* bpo-45614: Fix traceback display for exceptions with invalid module name (GH-...Irit Katriel2021-11-271-0/+1
* bpo-42268: Fail the configure step if the selected compiler doesn't support m...Pablo Galindo Salgado2021-11-271-0/+2
* bpo-45876: Improve accuracy for stdev() and pstdev() in statistics (GH-29736)Raymond Hettinger2021-11-271-0/+2
* bpo-44530: Reverts a change to the 'code.__new__' audit event (GH-29809)Steve Dower2021-11-271-0/+2
* bpo-41735: Fix thread lock in zlib.Decompress.flush() may go wrong (GH-29587)Ma Lin2021-11-271-0/+1
* bpo-45901: Fixes argument passing when invoking .py files directly through th...Steve Dower2021-11-261-0/+4
* bpo-45866: Fix typo in the NEWS entry (GH-29798)Victor Stinner2021-11-261-1/+1
* bpo-40280: Move hard-coded feature checks to configure (GH-29789)Christian Heimes2021-11-261-0/+3
* bpo-40280: Add configure check for socket shutdown (GH-29795)Christian Heimes2021-11-261-0/+3
* bpo-45866: pegen strips directory of "generated from" header (GH-29777)Victor Stinner2021-11-261-0/+4
* bpo-43137: webbrowser: Replace gvfs-open and gnome-open with "gio open" (GH-2...Simon McVittie2021-11-251-0/+1