summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
Commit message (Expand)AuthorAgeFilesLines
* Python 3.11.0rc2v3.11.0rc2Pablo Galindo2022-09-1140-82/+404
* GH-96678: Fix undefined behavior in ceval.c (GH-96708)Miss Islington (bot)2022-09-101-0/+1
* Fix possible NULL pointer dereference in _PyThread_CurrentFrames (GH-96584)Miss Islington (bot)2022-09-101-0/+1
* [3.11] GH-96636: Remove all uses of NOTRACE_DISPATCH (GH-96643) (#96688)Mark Shannon2022-09-091-0/+3
* [3.11] io: Add missing f (#96701)Jelle Zijlstra2022-09-091-0/+1
* gh-96352: Set AttributeError context in _PyObject_GenericGetAttrWithDict (GH-...Miss Islington (bot)2022-09-081-0/+2
* [3.11] gh-68163: Correct conversion of Rational instances to float (GH-25619)...Miss Islington (bot)2022-09-081-0/+1
* [3.11] GH-96569: Avoid undefined behavior (#96616)Mark Shannon2022-09-081-0/+1
* gh-96652: Fix faulthandler chained signal without sigaction() (GH-96666)Miss Islington (bot)2022-09-081-0/+3
* gh-96268: Fix loading invalid UTF-8 (GH-96270)Miss Islington (bot)2022-09-071-0/+2
* gh-96577: Fixes buffer overrun in _msi module (GH-96633)Miss Islington (bot)2022-09-071-0/+1
* gh-96641: Do not expose `KeyWrapper` in `_functoolsmodule.c` (gh-96642)Miss Islington (bot)2022-09-071-0/+1
* gh-96611: Fix error message for invalid UTF-8 in mid-multiline string (GH-96623)Miss Islington (bot)2022-09-061-0/+2
* GH-96572: fix use after free in trace refs build mode (GH-96618)Miss Islington (bot)2022-09-061-0/+1
* [3.11] GH-96612: Skip incomplete frames in tracemalloc traces. (GH-96613) (#9...Mark Shannon2022-09-061-0/+1
* [3.11] gh-92986: Fix ast.unparse when ImportFrom.level is None (GH-92992) (GH...Batuhan Taskaya2022-09-061-0/+1
* gh-96559: Fixes Windows launcher handling of defaults using old-style tags, a...Miss Islington (bot)2022-09-051-0/+3
* gh-95778: Correctly pre-check for int-to-str conversion (GH-96537)Miss Islington (bot)2022-09-041-1/+1
* no-issue: Fix typo in 3.11.0a7.rst (gh-96547)Miss Islington (bot)2022-09-041-1/+1
* [3.11] gh-95778: CVE-2020-10735: Prevent DoS by very large int() (#96500)Gregory P. Smith2022-09-021-0/+14
* GH-74116: Allow multiple drain waiters for asyncio.StreamWriter (GH-94705) (#...Miss Islington (bot)2022-08-301-0/+1
* gh-90467: StreamReaderProtocol - add strong reference to created task (GH-963...Miss Islington (bot)2022-08-301-0/+2
* gh-96385: Correctly raise error on `[*T, *V]` substitution (GH-96386) (#96407)Miss Islington (bot)2022-08-301-0/+3
* gh-94682: Build and test with OpenSSL 1.1.1q (gh-94683)Miss Islington (bot)2022-08-291-0/+1
* gh-90814: Correct NEWS wording re. optional C11 features (GH-96309) (GH-96384)Petr Viktorin2022-08-291-1/+2
* gh-95243: Mitigate the race condition in testSockName (GH-96173)Miss Islington (bot)2022-08-251-0/+3
* gh-96175: add missing self._localName assignment in `xml.dom.minidom.Attr` (G...Miss Islington (bot)2022-08-231-0/+1
* GH-96187: Prevent _PyCode_GetExtra to return garbage for negative indexes (GH...Miss Islington (bot)2022-08-231-0/+2
* [3.11] gh-96159: Fix significant performance degradation in logging.TimedRota...Miss Islington (bot)2022-08-231-0/+1
* gh-96046: Initialize ht_cached_keys in PyType_Ready() (GH-96047)Miss Islington (bot)2022-08-221-0/+4
* gh-96125: Fix sys.thread_info.name on pthread platforms (GH-96126) (#96128)Miss Islington (bot)2022-08-211-0/+2
* gh-96098: Clearly link concurrent.futures from threading & multiprocessing do...Miss Islington (bot)2022-08-211-0/+3
* GH-96071: fix deadlock in PyGILState_Ensure (GH-96124) (#96129)Miss Islington (bot)2022-08-191-0/+1
* gh-95463: Remove backwards incompatible change regarding the _MASK_UTF_FILENA...Miss Islington (bot)2022-08-191-0/+2
* [3.11] GH-95736: fix IsolatedAsyncioTestCase to initialize Runner bef… (#96...Kumar Aditya2022-08-181-0/+1
* gh-95957: Add instructions for Tcl/Tk and OpenSSL on RHEL/CentOS 7 (GH-95964)Miss Islington (bot)2022-08-181-0/+2
* GH-95704: Don't suppress errors from tasks when TG is cancelled (GH-95761)Miss Islington (bot)2022-08-171-0/+2
* GH-95899: fix asyncio.Runner to call set_event_loop only once (GH-95900) (#96...Miss Islington (bot)2022-08-151-0/+1
* gh-95231: Disable md5 & crypt modules if FIPS is enabled (GH-94742)Miss Islington (bot)2022-08-151-0/+3
* GH-95818: Skip incomplete frames in `PyThreadState_GetFrame` (GH-95886) (#95890)Miss Islington (bot)2022-08-121-0/+1
* gh-94996: Disallow parsing pos only params with feature_version < (3, 8) (GH-...Miss Islington (bot)2022-08-121-0/+1
* gh-95605: Fix `float(s)` error message when `s` contains only whitespace (GH-...Miss Islington (bot)2022-08-111-0/+2
* gh-95876: Fix format string in pegen error location code (GH-95877)Miss Islington (bot)2022-08-111-0/+4
* Python 3.11.0rc1v3.11.0rc1Pablo Galindo2022-08-0544-82/+436
* gh-95573: Reduce test data size in test_asyncio/test_ssl.py (GH-95668) (GH-95...Miss Islington (bot)2022-08-051-0/+6
* gh-65802: IDLE - explain SaveAs and extensions (GH-95690) (GH-95692)Miss Islington (bot)2022-08-051-0/+1
* gh-95656: Enable the sqlite3 load extension API in Windows build (GH-95662)Miss Islington (bot)2022-08-041-0/+2
* gh-95587: Fixes some upgrade detection issues in the Windows installer (GH-95...Miss Islington (bot)2022-08-041-0/+2
* GH-95289: Always call uncancel() when parent cancellation is requested (GH-95...Miss Islington (bot)2022-08-041-0/+1
* gh-94936: C getters: co_varnames, co_cellvars, co_freevars (GH-95008)Miss Islington (bot)2022-08-041-0/+3