summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Core and Builtins
Commit message (Expand)AuthorAgeFilesLines
* bpo-26579: Add object.__getstate__(). (GH-2821)Serhiy Storchaka2022-04-061-0/+7
* bpo-46721: Optimize set.issuperset() for non-set arguments (GH-31280)Serhiy Storchaka2022-04-061-0/+1
* bpo-43464: Optimize set.intersection() for non-set arguments (GH-31316)Serhiy Storchaka2022-04-061-0/+1
* Python 3.11.0a7v3.11.0a7Pablo Galindo2022-04-0533-61/+0
* bpo-47212: Improve error messages for un-parenthesized generator expressions ...Matthieu Dartiailh2022-04-051-0/+3
* bpo-47120: make JUMP_NO_INTERRUPT relative (GH-32221)Irit Katriel2022-04-051-0/+1
* bpo-47186: Replace JUMP_IF_NOT_EG_MATCH by CHECK_EG_MATCH + jump (GH-32309)Irit Katriel2022-04-051-0/+1
* bpo-47176: Interrupt handling for wasm32-emscripten builds without pthreads (...Hood Chatham2022-04-031-0/+6
* bpo-47186: Replace JUMP_IF_NOT_EXC_MATCH by CHECK_EXC_MATCH + jump (GH-32231)Irit Katriel2022-04-011-0/+1
* bpo-46841: Avoid unnecessary allocations in code object comparisons (GH-32222)Brandt Bucher2022-04-011-0/+1
* bpo-47009: Streamline list.append for the common case (GH-31864)Dennis Sweeney2022-04-011-0/+1
* bpo-47182: Fix crash by named unicode characters after interpreter reinitiali...Christian Heimes2022-03-311-0/+2
* bpo-47120: Replace the JUMP_ABSOLUTE opcode by the relative JUMP_BACKWARD (GH...Irit Katriel2022-03-311-0/+2
* bpo-47162: Add call trampoline to mitigate bad fpcasts on Emscripten (GH-32189)Christian Heimes2022-03-301-0/+4
* bpo-46775: OSError should call winerror_to_errno unconditionally on Windows (...Dong-hee Na2022-03-301-0/+3
* bpo-47129: Add more informative messages to f-string syntax errors (32127)Maciej Górski2022-03-281-0/+1
* bpo-47070: Add _PyBytes_Repeat() (GH-31999)Pieter Eendebak2022-03-281-0/+3
* bpo-47127: Specialize calls for fastcall c methods with keywords (GH-32125)Kumar Aditya2022-03-271-0/+1
* bpo-43224: Implement PEP 646 grammar changes (GH-31018)Matthew Rahtz2022-03-261-0/+1
* bpo-47117: Don't crash if we fail to decode characters when the tokenizer buf...Pablo Galindo Salgado2022-03-261-0/+2
* bpo-47053: Reduce deoptimization in BINARY_OP_INPLACE_ADD_UNICODE (GH-31318)Dennis Sweeney2022-03-251-0/+1
* bpo-42197: Don't create `f_locals` dictionary unless we actually need it. (GH...Mark Shannon2022-03-251-0/+2
* bpo-46829: Deprecate passing a message into Future.cancel() and Task.cancel()...Andrew Svetlov2022-03-231-0/+2
* bpo-47012: speed up iteration of bytes and bytearray (GH-31867)Kumar Aditya2022-03-231-0/+1
* bpo-47045: Remove `f_state` field (GH-31963)Mark Shannon2022-03-221-0/+3
* bpo-46838: Syntax error improvements for function definitions (GH-31590)Pablo Galindo Salgado2022-03-221-0/+2
* bpo-46841: Quicken code in-place (GH-31888)Brandt Bucher2022-03-211-0/+2
* bpo-46968: Check for 'sys/auxv.h' in the configure script (GH-31961)Pablo Galindo Salgado2022-03-181-0/+3
* bpo-47005: Improve performance of bytearray_repeat and bytearray_irepeat (GH-...Pieter Eendebak2022-03-171-0/+1
* Use low bit of LOAD_GLOBAL's oparg to indicate whether it should push an addi...Mark Shannon2022-03-171-0/+2
* bpo-46993: Speed up bytearray creation from list and tuple (GH-31834)Kumar Aditya2022-03-151-0/+1
* But Add missing newline to NEWS entry (GH-31893)Hugo van Kemenade2022-03-151-1/+1
* bpo-43721: Fix docstrings for property.getter/setter/deleter (GH-31046)Irit Katriel2022-03-141-0/+1
* bpo-39829: Fix `__len__()` is called twice in list() constructor (GH-31816)Crowthebird2022-03-141-0/+1
* bpo-46944: use FASTCALL calling convention in generator.throw (GH-31723)Kumar Aditya2022-03-111-0/+1
* bpo-46881: Statically allocate and initialize the latin1 characters. (GH-31616)Kumar Aditya2022-03-091-0/+1
* bpo-46841: Don't use an oparg counter for `STORE_SUBSCR` (GH-31742)Brandt Bucher2022-03-081-0/+2
* bpo-46841: Use inline caching for calls (GH-31709)Brandt Bucher2022-03-071-0/+2
* Python 3.11.0a6v3.11.0a6Pablo Galindo2022-03-0748-90/+0
* bpo-46940: Don't override existing AttributeError suggestion information (GH-...Pablo Galindo Salgado2022-03-071-0/+2
* bpo-46921: Vectorcall support for `super()` (GH-31687)Ken Jin2022-03-061-0/+1
* bpo-46864: Deprecate PyBytesObject.ob_shash. (GH-31598)Inada Naoki2022-03-061-0/+1
* bpo-46927: Include the type's name in the error message for subscripting non-...Serhiy Storchaka2022-03-051-0/+2
* bpo-46841: Fix BINARY_OP's handling of inline caches (GH-31671)Brandt Bucher2022-03-041-0/+2
* bpo-46841: Fix error message hacks in `GET_AWAITABLE` (GH-31664)Brandt Bucher2022-03-041-0/+2
* bpo-46903: Handle str-subclasses in virtual instance dictionaries. (GH-31658)Mark Shannon2022-03-041-0/+2
* bpo-46841: Use inline caching for attribute accesses (GH-31640)Brandt Bucher2022-03-031-0/+2
* bpo-46841: Improve the failure stats for COMPARE_OP (GH-31663)Brandt Bucher2022-03-031-0/+2
* bpo-46891: Fix creating a new instance of a module subclass with slots (GH-31...Mark Shannon2022-03-031-0/+3
* bpo-40116: dict: Add regression test for iteration order. (GH-31550)Inada Naoki2022-03-031-0/+2