summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.11.rst
Commit message (Expand)AuthorAgeFilesLines
* bpo-46328: Add sys.exception() (GH-30514)Irit Katriel2022-01-131-0/+3
* bpo-23882: unittest: Drop PEP 420 support from discovery. (GH-29745)Inada Naoki2022-01-101-0/+4
* bpo-46031: add POP_JUMP_IF_NOT_NONE and POP_JUMP_IF_NONE (GH-30019)penguin_wwy2022-01-061-0/+3
* bpo-46009: Remove GEN_START (GH-30367)Brandt Bucher2022-01-041-1/+1
* bpo-44092: Move What's New entry to where it belongs (GH-30381)Erlend Egeberg Aasland2022-01-041-5/+4
* bpo-44092: Don't reset statements/cursors before rollback (GH-26026)Erlend Egeberg Aasland2022-01-031-0/+5
* bpo-45903: Fix typo in What's New: Signature.from_builtin is removed (GH-29813)Hugo van Kemenade2022-01-021-1/+1
* bpo-45711: Remove type and traceback from exc_info (GH-30122)Irit Katriel2021-12-171-0/+5
* Document new call opcodes for 3.11 (GH-30107)Mark Shannon2021-12-141-3/+5
* bpo-45292: [PEP-654] add except* (GH-29581)Irit Katriel2021-12-141-0/+2
* bpo-43931: Export Python version as API data (GH-25577)Gabriele N. Tornetta2021-12-101-0/+4
* bpo-46016: Fix rest syntax of GH-29993 (GH-30006)Kumar Aditya2021-12-091-1/+1
* bpo-46007: Exclude PyUnicode_CHECK_INTERNED() from limited C API (GH-29987)Victor Stinner2021-12-091-0/+6
* bpo-46016: fcntl module add FreeBSD's F_DUP2FD_CLOEXEC flag support (GH-29993)David CARLIER2021-12-081-0/+8
* Revert "bpo-28533: Remove asyncore, asynchat, smtpd modules (GH-29521)" (GH-2...Victor Stinner2021-12-071-9/+0
* bpo-37295: Optimize math.comb() and math.perm() (GH-29090)Serhiy Storchaka2021-12-051-0/+5
* bpo-45847: Update whatsnew and add place holder entries for missing extension...Christian Heimes2021-12-041-7/+6
* bpo-45607: Make it possible to enrich exception displays via setting their __...Irit Katriel2021-12-031-0/+6
* bpo-40280: Update what's new (GH-29893)Christian Heimes2021-12-021-0/+5
* bpo-30533: Add docs for `inspect.getmembers_static` (#29874)Weipeng Hong2021-12-011-0/+7
* bpo-45711: Change exc_info related APIs to derive type and traceback from the...Irit Katriel2021-11-301-0/+27
* bpo-45917: Add math.exp2() method - return 2 raised to the power of x (GH-29829)Gideon2021-11-291-0/+2
* bpo-45828: Use unraisable exceptions within sqlite3 callbacks (FH-29591)Erlend Egeberg Aasland2021-11-291-1/+6
* bpo-45837: Properly deprecate turtle.RawTurtle.settiltangle (GH-29618)Hugo van Kemenade2021-11-181-0/+5
* bpo-45429: Merge whatsnew about time.sleep (GH-29589)Dong-hee Na2021-11-181-7/+7
* bpo-45429: Support CREATE_WAITABLE_TIMER_HIGH_RESOLUTION if possible (GH-29203)Dong-hee Na2021-11-161-0/+4
* bpo-28533: Remove asyncore, asynchat, smtpd modules (GH-29521)Victor Stinner2021-11-151-0/+9
* bpo-45711: Re-bump the magic number and update doc (GH-29528)Brandt Bucher2021-11-121-0/+2
* bpo-45636: Merge all numeric operators (GH-29482)Brandt Bucher2021-11-111-0/+3
* bpo-45747: Detect gdbm/dbm dependencies in configure (GH-29467)Christian Heimes2021-11-101-0/+4
* bpo-45763: Detect compression build deps in configure (GH-29483)Christian Heimes2021-11-091-0/+3
* bpo-45613: Set `sqlite3.threadsafety` dynamically (GH-29227)Erlend Egeberg Aasland2021-11-031-0/+4
* bpo-24139: Add support for SQLite extended result codes (GH-28076)Erlend Egeberg Aasland2021-11-021-2/+3
* bpo-45243: Add support for setting/getting `sqlite3` connection limits (GH-28...Erlend Egeberg Aasland2021-11-011-0/+6
* bpo-45548: Some test modules must be built as shared libs (GH-29268)Christian Heimes2021-10-291-0/+7
* bpo-44511: Improve the bytecode for class and mapping patterns (GH-26922)Brandt Bucher2021-10-271-0/+10
* bpo-45530: speed listobject.c's unsafe_tuple_compare() (GH-29076)Tim Peters2021-10-251-0/+7
* bpo-44547: Make Fractions objects instances of typing.SupportsInt (GH-27851)Mark Dickinson2021-10-211-2/+6
* bpo-45522: Allow to disable freelists on build time (GH-29056)Christian Heimes2021-10-211-0/+5
* bpo-45320: Remove long-deprecated inspect methods (GH-28618)Hugo van Kemenade2021-10-201-3/+19
* bpo-45474: Exclude all of marshal.h if Py_LIMITED_API is defined (GH-29061)Petr Viktorin2021-10-201-3/+6
* bpo-40360: Make the 2to3 deprecation more obvious. (GH-29064)Gregory P. Smith2021-10-191-3/+3
* bpo-45434: Only exclude <stdlib.h> in Python 3.11 limited C API (GH-29027)Victor Stinner2021-10-191-12/+4
* bpo-35134: Split warnings.h and weakrefobject.h (GH-29042)Victor Stinner2021-10-181-0/+5
* Fix contributor person name in rst files (GH-29005)Benjamin Szőke2021-10-171-2/+2
* bpo-45440: Remove pymath.c fallbacks (GH-28977)Victor Stinner2021-10-151-1/+2
* bpo-43760: Add PyThreadState_EnterTracing() (GH-28542)Victor Stinner2021-10-151-0/+5
* bpo-44113: Move the What's New entry to Deprecate section (GH-28974)Victor Stinner2021-10-151-7/+7
* bpo-45434: Remove Include/eval.h header file (GH-28973)Victor Stinner2021-10-151-5/+5
* bpo-35134: Move classobject.h to Include/cpython/ (GH-28968)Victor Stinner2021-10-151-1/+2