summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Core and Builtins
Commit message (Expand)AuthorAgeFilesLines
* bpo-44826: Specialize STORE_ATTR (GH-27590)Mark Shannon2021-08-091-0/+9
* bpo-44856: Possible reference leak in error paths of update_bases() and __bui...Pablo Galindo Salgado2021-08-071-0/+1
* bpo-44584: Deprecate PYTHONTHREADDEBUG env var (GH-27065)Victor Stinner2021-08-061-0/+3
* bpo-44838: Refine the custom syntax errors for invalid 'if' expressions (GH-2...Pablo Galindo Salgado2021-08-051-0/+2
* bpo-44821: Eagerly assign __dict__ for new objects. (GH-27589)Mark Shannon2021-08-041-0/+2
* closes bpo-39091: Fix segfault when Exception constructor returns non-excepti...Noah2021-08-031-0/+1
* bpo-44792: Improve syntax errors for if expressions (GH-27506)Miguel Brito2021-08-021-0/+1
* bpo-44662: Add ability to annotate types.Union (#27214)Yurii Karabas2021-07-291-0/+3
* bpo-44725 : expose specialization stats in python (GH-27192)Irit Katriel2021-07-291-0/+1
* bpo-34013: Generalize the invalid legacy statement error message (GH-27389)Pablo Galindo Salgado2021-07-271-0/+3
* bpo-44698: Fix undefined behaviour in complex exponentiation. (GH-27278)T. Wouters2021-07-261-0/+1
* bpo-44732: Rename types.Union to types.UnionType (#27342)Hasan2021-07-261-0/+1
* bpo-44590: Lazily allocate frame objects (GH-27077)Mark Shannon2021-07-261-0/+5
* bpo-44717: improve AttributeError on circular imports of submodules (GH-27338)Filipe Laíns2021-07-241-0/+1
* Revert "bpo-44717: improve AttributeError on circular imports of submodules (...Pablo Galindo Salgado2021-07-241-1/+0
* bpo-44717: improve AttributeError on circular imports of submodules (GH-27299)Filipe Laíns2021-07-241-0/+1
* bpo-44611: Use BCryptGenRandom instead of CryptGenRandom on Windows (GH-27168)Dong-hee Na2021-07-231-0/+2
* bpo-44676: Add ability to serialize types.Union (GH-27244)Yurii Karabas2021-07-231-0/+2
* bpo-44653: Support typing types in parameter substitution in the union type. ...Serhiy Storchaka2021-07-221-0/+1
* bpo-41972: Tweak fastsearch.h string search algorithms (GH-27091)Dennis Sweeney2021-07-191-0/+1
* bpo-44661: Update property_descr_set to use vectorcall if possible. (GH-27206)Dong-hee Na2021-07-191-0/+2
* bpo-44633: Fix parameter substitution of the union type with wrong types. (GH...Serhiy Storchaka2021-07-181-0/+2
* bpo-44490: Improve typing module compatibility with types.Union (GH-27048)Yurii Karabas2021-07-171-0/+3
* bpo-44655: Include the name of the type in unset __slots__ attribute errors (...Pablo Galindo Salgado2021-07-161-0/+2
* bpo-44655: Don't include suggestions for attributes that are the same as the ...Pablo Galindo Salgado2021-07-161-0/+2
* bpo-44636: Collapse union of equal types (GH-27178)Serhiy Storchaka2021-07-161-0/+1
* bpo-44646: Fix the hash of the union type. (#27179)Serhiy Storchaka2021-07-161-0/+2
* bpo-42073: allow classmethod to wrap other classmethod-like descriptors (#27115)Łukasz Langa2021-07-151-0/+2
* bpo-26280: Port BINARY_SUBSCR to PEP 659 adaptive interpreter (GH-27043)Irit Katriel2021-07-151-0/+9
* bpo-44589: raise a SyntaxError when mapping patterns have duplicate literal k...Jack DeVries2021-07-151-0/+2
* bpo-44635: Convert None to NoneType in the union type constructor (GH-27136)Serhiy Storchaka2021-07-141-0/+1
* bpo-44606: Fix __instancecheck__ and __subclasscheck__ for the union type. (G...Serhiy Storchaka2021-07-141-0/+1
* bpo-33346: Allow async comprehensions inside implicit async comprehensions (G...Serhiy Storchaka2021-07-131-0/+3
* bpo-43950: Add documentation for PEP-657 (GH-27047)Ammar Askar2021-07-131-0/+6
* bpo-44317: Improve tokenizer errors with more informative locations (GH-26555)Pablo Galindo Salgado2021-07-101-0/+1
* bpo-43908: Immutable types inherit vectorcall (GH-27001)Erlend Egeberg Aasland2021-07-081-0/+3
* bpo-43895: Remove an unnecessary cache of shared object handles (GH-25487)Ian Henriksen2021-07-071-0/+4
* bpo-44490: Add __parameters__ and __getitem__ to types.Union (GH-26980)Yurii Karabas2021-07-061-0/+2
* bpo-41486: zlib uses an UINT32_MAX sliding window for the output buffer (GH-2...Ma Lin2021-07-051-0/+3
* bpo-44562: Remove invalid PyObject_GC_Del from error path of types.GenericAli...Ken Jin2021-07-041-0/+2
* bpo-44553 : Implement GC methods for types.Union (GH-26993)Ken Jin2021-07-031-0/+2
* bpo-44313: generate LOAD_ATTR/CALL_FUNCTION for top-level imported objects (G...Batuhan Taskaya2021-06-301-0/+4
* bpo-44523: Remove the pass-through for hash() in weakref proxy objects (GH-26...Pablo Galindo2021-06-291-0/+3
* bpo-12022: Change error type for bad objects in "with" and "async with" (GH-2...Serhiy Storchaka2021-06-291-0/+4
* bpo-44110: Improve string's __getitem__ error message (GH-26042)Miguel Brito2021-06-271-0/+1
* bpo-44456: Improve the syntax error when mixing keyword and positional patter...Pablo Galindo2021-06-241-0/+2
* bpo-44486: Make sure that modules always have a dictionary. (GH-26847)Mark Shannon2021-06-231-0/+2
* bpo-43918: document signature and default argument of `anext` builtin (#25551)Erik Welch2021-06-221-0/+1
* bpo-44483: Fix crash in union object with bad ``__module__`` (GH-26848)Ken Jin2021-06-221-0/+2
* bpo-44472: Fix ltrace functionality when exceptions are raised (GH-26822)Pablo Galindo2021-06-211-0/+1