summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Core and Builtins
Commit message (Expand)AuthorAgeFilesLines
* GH-91054: Add code object watchers API (GH-99859)Itamar Ostricher2022-12-021-0/+3
* gh-89189: More compact range iterator (GH-27986)Serhiy Storchaka2022-11-301-0/+3
* gh-99891: Fix infinite recursion in the tokenizer when showing warnings (GH-9...Pablo Galindo Salgado2022-11-301-0/+3
* gh-99127: Allow some features of syslog to the main interpreter only (gh-99128)Dong-hee Na2022-11-291-0/+1
* bpo-31718: Fix io.IncrementalNewlineDecoder SystemErrors and segfaults (#18640)Zackery Spytz2022-11-281-0/+3
* bpo-38031: Fix a possible assertion failure in _io.FileIO() (#GH-5688)Zackery Spytz2022-11-251-0/+2
* gh-99708: fix bug where compiler crashes on if expression with an empty body ...Irit Katriel2022-11-241-0/+1
* gh-99547: Add isjunction methods for checking if a path is a junction (GH-99548)Charles Machalow2022-11-221-0/+1
* gh-91053: Add an optional callback that is invoked whenever a function is mod...mpage2022-11-221-0/+4
* gh-99578: Fix refleak in _imp.create_builtin() (#99642)Victor Stinner2022-11-211-0/+3
* gh-90994: Improve error messages upon call arguments syntax errors (GH-96893)Lysandros Nikolaou2022-11-201-0/+4
* gh-99581: Fix a buffer overflow in the tokenizer when copying lines that fill...Pablo Galindo Salgado2022-11-201-0/+3
* gh-99553: fix bug where an ExceptionGroup subclass can wrap a BaseException (...Irit Katriel2022-11-181-0/+2
* GH-99298: Clean up attribute specializations (GH-99398)Brandt Bucher2022-11-171-0/+3
* GH-98686: Get rid of BINARY_OP_GENERIC and COMPARE_OP_GENERIC (GH-99399)Brandt Bucher2022-11-171-0/+2
* gh-99377: Add audit events for thread creation and clear (GH-99378)Steve Dower2022-11-161-0/+1
* Merge the 3.12.0a2 release into main.Thomas Wouters2022-11-151-0/+2
|\
| * gh-99370: Calculate zip path from prefix when in a venv (GH-99371)Kai Zhang2022-11-141-0/+2
* | Python 3.12.0a2v3.12.0a2Thomas Wouters2022-11-1434-109/+0
|/
* gh-99103: Normalize specialized traceback anchors against the current line (G...Batuhan Taskaya2022-11-121-0/+2
* gh-98762: Fix locations of match sub-patterns (GH-98775)Irit Katriel2022-11-121-0/+1
* gh-81057: Move PyImport_Inittab to _PyRuntimeState (gh-99402)Eric Snow2022-11-121-0/+6
* gh-81057: Move the Allocators to _PyRuntimeState (gh-99217)Eric Snow2022-11-111-0/+3
* gh-99254: remove all unused consts from code objects (GH-99255)Irit Katriel2022-11-111-0/+1
* GH-99298: Don't perform jumps before error handling (GH-99299)Brandt Bucher2022-11-101-0/+2
* gh-99204: Calculate base_executable by alternate names in POSIX venvs (GH-99206)Vincent Fazio2022-11-101-0/+4
* GH-96421: Insert shim frame on entry to interpreter (GH-96319)Mark Shannon2022-11-101-0/+13
* GH-99257: Check the owner's type when specializing slots (GH-99258)Brandt Bucher2022-11-101-0/+3
* GH-99205: Mark new interpreters and threads as non-static (GH-99268)Brandt Bucher2022-11-091-0/+2
* GH-98686: Get rid of "adaptive" and "quick" instructions (GH-99182)Brandt Bucher2022-11-091-0/+5
* GH-93143: Don't turn LOAD_FAST into LOAD_FAST_CHECK (GH-99075)Brandt Bucher2022-11-081-0/+4
* gh-99181: fix except* on unhashable exceptions (GH-99192)Irit Katriel2022-11-081-0/+1
* gh-92119: ctypes: Print exception class name instead of its representation (#...Kamil Turek2022-11-081-0/+2
* GH-96793: Specialize FOR_ITER for generators. (GH-98772)Mark Shannon2022-11-071-0/+3
* gh-95389: expose popular ETHERTYPE_* constants in the socket module (#95390)Noam Cohen2022-11-071-0/+3
* gh-96055: Update faulthandler to emit proper unexpect signal number (gh-99162)Dong-hee Na2022-11-071-0/+2
* gh-98586: Add What's New entry and update docs (#99056)Wenzel Jakob2022-11-061-1/+1
* gh-99153: set location on SyntaxError for try with both except and except* (G...Irit Katriel2022-11-061-0/+1
* gh-99139: Improve NameError error suggestion for instances (#99140)Pablo Galindo Salgado2022-11-061-0/+5
* gh-98401: Invalid escape sequences emits SyntaxWarning (#99011)Victor Stinner2022-11-032-0/+11
* GH-96793: Implement PEP 479 in bytecode. (GH-99006)Mark Shannon2022-11-031-0/+2
* gh-98415: Fix uuid.getnode() ifconfig implementation (#98423)Chaim Sanders2022-11-021-0/+1
* GH-98686: Quicken everything (GH-98687)Brandt Bucher2022-11-021-0/+2
* gh-98925: Lower marshal recursion depth for WASI (GH-98938)Brett Cannon2022-11-011-0/+2
* gh-98931: Improve error message when the user types 'import x from y' instead...Pablo Galindo Salgado2022-11-011-0/+2
* gh-98852: Fix subscription of type aliases (GH-98920)Serhiy Storchaka2022-11-011-0/+4
* gh-98811: use full source location to simplify __future__ imports error check...Irit Katriel2022-10-311-0/+4
* gh-98783: Fix crashes when `str` subclasses are used in `_PyUnicode_Equal` (#...Nikita Sobolev2022-10-301-0/+2
* GH-96793: Change `FOR_ITER` to not pop the iterator on exhaustion. (GH-96801)Mark Shannon2022-10-271-0/+2
* gh-98586: Add vector call APIs to the Limited API (GH-98587)Wenzel Jakob2022-10-271-0/+7