summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.11.rst
Commit message (Expand)AuthorAgeFilesLines
* gh-91217: deprecate nntplib (GH-91543)Brett Cannon2022-04-151-0/+1
* gh-91276: Make JUMP_IF_TRUE_OR_POP/JUMP_IF_FALSE_OR_POP relative (GH-32215)Irit Katriel2022-04-151-0/+3
* gh-90501: Add PyErr_GetHandledException and PyErr_SetHandledException (GH-30531)Irit Katriel2022-04-151-0/+8
* gh-91404: Use computed gotos and reduce indirection in re (#91495)Brandt Bucher2022-04-151-0/+6
* gh-79156: Add start_tls() method to streams API (#91453)Oleg Iarygin2022-04-151-0/+4
* gh-69093: Support basic incremental I/O to blobs in `sqlite3` (GH-30680)Erlend Egeberg Aasland2022-04-151-0/+4
* gh-91217: deprecate msilib (GH-91515)Brett Cannon2022-04-141-0/+1
* gh-91217: deprecate imghdr (#91461)Brett Cannon2022-04-131-0/+1
* gh-79097: Add support for aggregate window functions in sqlite3 (GH-20903)Erlend Egeberg Aasland2022-04-121-0/+4
* gh-91217: deprecate crypt (GH-91459)Brett Cannon2022-04-121-0/+1
* gh-47061: Deprecate `chunk` (GH-91419)Brett Cannon2022-04-111-0/+1
* bpo-47120: make POP_JUMP_IF_TRUE/FALSE/NONE/NOT_NONE relative (GH-32400)Irit Katriel2022-04-111-4/+11
* bpo-47000: Add `locale.getencoding()` (GH-32068)Inada Naoki2022-04-091-0/+7
* bpo-47061: deprecate cgi and cgitb (GH-32410)Brett Cannon2022-04-091-0/+2
* Add new PyFrame_GetLasti C-API function (GH-32413)Mark Shannon2022-04-081-3/+3
* Deprecate audioop (GH-32392)Brett Cannon2022-04-071-0/+1
* bpo-35134: Remove the Include/code.h header file (GH-32385)Victor Stinner2022-04-071-1/+1
* bpo-26579: Add object.__getstate__(). (GH-2821)Serhiy Storchaka2022-04-061-0/+9
* bpo-47115: Document which parts of structs are in limited API/stable ABI (GH-...Petr Viktorin2022-04-061-2/+4
* Revert "bpo-46850: Move _PyEval_EvalFrameDefault() to internal C API (GH-3205...Victor Stinner2022-04-061-11/+0
* [doc] Add missing backtick. (GH-32355)Julien Palard2022-04-061-1/+1
* bpo-47189: What's New in 3.11: Faster CPython (GH-32235)Ken Jin2022-04-061-7/+219
* bpo-47061: deprecate the `aifc` module (GH-32134)Brett Cannon2022-04-051-0/+8
* bpo-46607: Add DeprecationWarning for LegacyInterpolation, deprecated in docs...Hugo van Kemenade2022-04-051-0/+6
* bpo-41930: Add support for SQLite serialise/deserialise API (GH-26728)Erlend Egeberg Aasland2022-04-051-0/+5
* bpo-47120: make JUMP_NO_INTERRUPT relative (GH-32221)Irit Katriel2022-04-051-0/+2
* bpo-47186: Replace JUMP_IF_NOT_EG_MATCH by CHECK_EG_MATCH + jump (GH-32309)Irit Katriel2022-04-051-0/+3
* Fix "Contributed ... in bpo-bpo-45847" (GH-32299)Oleg Iarygin2022-04-051-1/+1
* [doc] fix superfluous backtick in front of role. (GH-32220)Julien Palard2022-04-021-2/+2
* bpo-47152: Convert the re module into a package (GH-32177)Serhiy Storchaka2022-04-021-0/+4
* bpo-47186: Replace JUMP_IF_NOT_EXC_MATCH by CHECK_EXC_MATCH + jump (GH-32231)Irit Katriel2022-04-011-1/+2
* bpo-46850: Move _PyInterpreterState_SetEvalFrameFunc() to internal C API (GH-...Victor Stinner2022-04-011-0/+6
* bpo-46850: Move _PyEval_EvalFrameDefault() to internal C API (GH-32052)Victor Stinner2022-04-011-0/+5
* bpo-40421: Add missing getters for frame object attributes to C-API. (GH-32114)Mark Shannon2022-03-311-4/+7
* bpo-47120: Replace the JUMP_ABSOLUTE opcode by the relative JUMP_BACKWARD (GH...Irit Katriel2022-03-311-0/+1
* bpo-45847: Port _tkinter to PY_STDLIB_MOD (GH-31698)Erlend Egeberg Aasland2022-03-311-2/+8
* bpo-35859: Fix a few long-standing bugs in re engine (GH-12427)Ma Lin2022-03-291-0/+5
* bpo-47098: Replace Keccak Code Package with tiny_sha3 (GH-32060)Christian Heimes2022-03-261-0/+7
* bpo-47095: Use libb2 to provide blake2 implementation (GH-32059)Christian Heimes2022-03-261-0/+12
* Fix some typos in whatsnew (GH-32098)Kurt McKee2022-03-251-4/+4
* bpo-42197: Don't create `f_locals` dictionary unless we actually need it. (GH...Mark Shannon2022-03-251-1/+7
* bpo-40465: Document random module changes in 3.11 What's new (#31818)Tomáš Hrnčiar2022-03-241-0/+5
* bpo-46836: Add Doc/c-api/frame.rst (GH-32051)Victor Stinner2022-03-231-4/+2
* bpo-28080: Add support for the fallback encoding in ZIP files (GH-32007)Serhiy Storchaka2022-03-221-0/+6
* bpo-47081: Replace "qualifiers" with "quantifiers" in the re module documenta...Serhiy Storchaka2022-03-221-1/+1
* bpo-433030: Add support of atomic grouping in regular expressions (GH-31982)Serhiy Storchaka2022-03-211-0/+6
* bpo-47066: Convert a warning about flags not at the start of the regular expr...Serhiy Storchaka2022-03-191-0/+5
* bpo-47022: Document asynchat, asyncore and smtpd removals in 3.12 (GH-31891)Hugo van Kemenade2022-03-181-0/+5
* bpo-45413: Define "posix_venv", "nt_venv" and "venv" sysconfig installation s...Miro Hrončok2022-03-181-0/+32
* bpo-46996: Remove support of Tcl/Tk < 8.5.12 (GH-31839)Serhiy Storchaka2022-03-171-0/+3