summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Core and Builtins
Commit message (Expand)AuthorAgeFilesLines
* Python 3.13.0a2v3.13.0a2Thomas Wouters2023-11-2249-101/+0
* gh-112287: Speed up Tier 2 (uop) interpreter a little (#112286)Guido van Rossum2023-11-201-0/+3
* gh-106529: Make FOR_ITER a viable uop (#112134)Guido van Rossum2023-11-201-0/+1
* gh-112243: Don't include comments in f-string debug expressions (#112284)Pablo Galindo Salgado2023-11-201-0/+1
* bpo-45759: Better error messages for non-matching 'elif'/'else' statements (#...Crowthebird2023-11-201-0/+1
* GH-111807: Lower the parser stack depth under WASI debug builds (#112225)Brett Cannon2023-11-201-0/+1
* gh-112266: Remove `(if defined)` part from `__dict__` and `__weakref__` docst...Nikita Sobolev2023-11-191-0/+2
* gh-111798: Use lower Py_C_RECURSION_LIMIT in debug mode (#112124)Victor Stinner2023-11-161-0/+4
* gh-111916: Make hashlib related modules thread-safe without the GIL (#111981)Tomas R2023-11-151-0/+1
* gh-106905: avoid incorrect SystemError about recursion depth mismatch (#106906)Markus Mohrhard2023-11-131-0/+1
* gh-81925: Implement native thread ids for kFreeBSD (#111761)Samuel Thibault2023-11-091-0/+1
* GH-111843: Tier 2 exponential backoff (GH-111850)Mark Shannon2023-11-091-0/+2
* GH-109369: Exit tier 2 if executor is invalid (GH-111657)Mark Shannon2023-11-091-0/+1
* gh-110543: Fix CodeType.replace in presence of comprehensions (#110586)Jelle Zijlstra2023-11-081-0/+3
* gh-81137: deprecate assignment of code object to a function of a mismatched t...Irit Katriel2023-11-071-0/+2
* gh-111623: Add Support for Cross-interpreter tuples (gh-111628)Anthony Shaw2023-11-073-2/+6
* gh-79932: raise exception if frame.clear() is called on a suspended frame (#1...Irit Katriel2023-11-071-0/+1
* GH-111772: Specialize slot loads and stores for `_Py_T_OBJECT` (GH-111773)Mark Shannon2023-11-061-0/+1
* gh-101180: Fix a bug where iso2022_jp_3 and iso2022_jp_2004 codecs read out o...Masayuki Moriyama2023-11-061-0/+1
* GH-110829: Ensure Thread.join() joins the OS thread (#110848)Antoine Pitrou2023-11-041-0/+1
* gh-111666: Speed up `BaseExceptionGroup.{derive,split,subgroup}` (#111667)Nikita Sobolev2023-11-041-0/+3
* gh-103615: Use local events for opcode tracing (GH-109472)Tian Gao2023-11-031-0/+1
* gh-111354: Simplify _PyGen_yf by moving some of its work to the compiler and ...Irit Katriel2023-11-031-0/+5
* gh-111654: remove redundant decref in LOAD_FROM_DICT_OR_DEREF (#111655)AN Long2023-11-031-0/+2
* gh-110892: Return NULL for `PyTrace_RETURN` events caused by an exception (GH...Tian Gao2023-11-021-0/+1
* gh-111354: simplify detection of RESUME after YIELD_VALUE at except-depth 1 ...Irit Katriel2023-11-021-0/+3
* GH-111435: Add Support for Sharing True and False Between Interpreters (gh-11...Anthony Shaw2023-11-021-0/+1
* gh-106718: Treat PyConfig.stdlib_dir as highest-priority setting for stdlib_d...Yilei Yang2023-11-011-0/+2
* gh-111374: Add a new PYTHON_FROZEN_MODULES env var, equivalent of `-X frozen_...Yilei Yang2023-11-011-0/+3
* gh-111520: Integrate the Tier 2 interpreter in the Tier 1 interpreter (#111428)Guido van Rossum2023-11-011-0/+9
* gh-111420: Allow type comments in parenthesized `with` statements (#111468)Tomas R2023-10-311-0/+1
* gh-109181: Speed up Traceback object creation by lazily compute the line numb...Pablo Galindo Salgado2023-10-311-0/+2
* GH-111438: Add Support for Sharing Floats Between Interpreters (gh-111439)Anthony Shaw2023-10-311-0/+1
* gh-111366: Correctly show custom syntax error messages in the codeop module f...Pablo Galindo Salgado2023-10-301-0/+3
* gh-110481: Implement biased reference counting (gh-110764)Sam Gross2023-10-301-0/+1
* gh-90815: Add mimalloc memory allocator (#109914)Dino Viehland2023-10-301-0/+1
* gh-89519: Remove classmethod descriptor chaining, deprecated since 3.11 (gh-1...Raymond Hettinger2023-10-271-0/+6
* gh-111380: Show SyntaxWarnings only once when parsing if invalid syntax is en...Pablo Galindo Salgado2023-10-271-0/+2
* gh-109094: replace frame->prev_instr by frame->instr_ptr (#109095)Irit Katriel2023-10-261-0/+3
* gh-67224: Show source lines in tracebacks when using the -c option when runni...Pablo Galindo Salgado2023-10-261-0/+2
* GH-109214: _SET_IP before _PUSH_FRAME (but not _POP_FRAME) (GH-111001)Brandt Bucher2023-10-241-0/+1
* GH-94438: Restore ability to jump over None tests (GH-111237)Savannah Ostrowski2023-10-241-0/+1
* gh-109894: Fix initialization of static `MemoryError` in subinterpreter (gh-1...Radislav Chugunov2023-10-231-0/+1
* gh-111123: symtable should visit exception handlers before the else block (#1...Irit Katriel2023-10-211-0/+2
* gh-100445: Improve error message for unterminated strings with escapes (#100446)Shantanu2023-10-181-0/+1
* gh-110938: Fix error messages for indented blocks with functions and classes ...Pablo Galindo Salgado2023-10-171-0/+2
* gh-110912: Correctly display tracebacks for MemoryError exceptions using the ...Pablo Galindo Salgado2023-10-161-0/+2
* gh-110864: Fix _PyArg_UnpackKeywordsWithVararg overwriting vararg with NULL (...Nikita Sobolev2023-10-161-0/+2
* gh-110722: Add PYTHON_PRESITE to import a module before site.py is run (#110769)Ɓukasz Langa2023-10-141-0/+3
* Merge branch 'main' of https://github.com/python/cpythonThomas Wouters2023-10-131-0/+2
|\