summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
Commit message (Expand)AuthorAgeFilesLines
* bpo-40421: Add missing getters for frame object attributes to C-API. (GH-32114)Mark Shannon2022-03-311-4/+7
* bpo-47120: Replace the JUMP_ABSOLUTE opcode by the relative JUMP_BACKWARD (GH...Irit Katriel2022-03-311-0/+1
* bpo-45847: Port _tkinter to PY_STDLIB_MOD (GH-31698)Erlend Egeberg Aasland2022-03-313-5/+11
* bpo-47126: Update to canonical PEP URLs specified by PEP 676 (GH-32124)Hugo van Kemenade2022-03-304-4/+4
* bpo-35859: Fix a few long-standing bugs in re engine (GH-12427)Ma Lin2022-03-291-0/+5
* bpo-47098: Replace Keccak Code Package with tiny_sha3 (GH-32060)Christian Heimes2022-03-261-0/+7
* bpo-47095: Use libb2 to provide blake2 implementation (GH-32059)Christian Heimes2022-03-261-0/+12
* Fix some typos in whatsnew (GH-32098)Kurt McKee2022-03-251-4/+4
* bpo-42197: Don't create `f_locals` dictionary unless we actually need it. (GH...Mark Shannon2022-03-251-1/+7
* bpo-40465: Document random module changes in 3.11 What's new (#31818)Tomáš Hrnčiar2022-03-241-0/+5
* bpo-31582: Created a new documentation section describing sys.path initializa...Russel Webber2022-03-232-3/+3
* bpo-46836: Add Doc/c-api/frame.rst (GH-32051)Victor Stinner2022-03-231-4/+2
* bpo-28080: Add support for the fallback encoding in ZIP files (GH-32007)Serhiy Storchaka2022-03-221-0/+6
* bpo-47081: Replace "qualifiers" with "quantifiers" in the re module documenta...Serhiy Storchaka2022-03-221-1/+1
* bpo-433030: Add support of atomic grouping in regular expressions (GH-31982)Serhiy Storchaka2022-03-211-0/+6
* bpo-47066: Convert a warning about flags not at the start of the regular expr...Serhiy Storchaka2022-03-191-0/+5
* bpo-47022: Document asynchat, asyncore and smtpd removals in 3.12 (GH-31891)Hugo van Kemenade2022-03-181-0/+5
* bpo-45413: Define "posix_venv", "nt_venv" and "venv" sysconfig installation s...Miro Hrončok2022-03-181-0/+32
* bpo-46996: Remove support of Tcl/Tk < 8.5.12 (GH-31839)Serhiy Storchaka2022-03-171-0/+3
* bpo-31415: importtime was made by Inada Naoki (GH-31875)Victor Stinner2022-03-141-1/+1
* bpo-46805: Add low level UDP socket functions to asyncio (GH-31455)Alex Grönholm2022-03-131-0/+9
* bpo-46906: Add PyFloat_Pack8() to the C API (GH-31657)Victor Stinner2022-03-111-0/+6
* bpo-46917: math.nan is now always available (GH-31793)Victor Stinner2022-03-101-0/+4
* bpo-46917: Require IEEE 754 to build Python (GH-31790)Victor Stinner2022-03-101-0/+3
* bpo-45138: Revert GH-28240: Expand traced SQL statements (GH-31788)Erlend Egeberg Aasland2022-03-091-4/+0
* bpo-46245: Add optional parameter dir_fd in shutil.rmtree() (GH-30365)Serhiy Storchaka2022-03-091-0/+7
* Fix 3.11 what's new formatting (GH-31763)Ken Jin2022-03-091-4/+9
* bpo-45138: Expand traced SQL statements in `sqlite3` trace callback (GH-28240)Erlend Egeberg Aasland2022-03-091-0/+4
* bpo-40059: Add tomllib (PEP-680) (GH-31498)Taneli Hukkinen2022-03-081-1/+2
* bpo-46864: Deprecate PyBytesObject.ob_shash. (GH-31598)Inada Naoki2022-03-061-0/+3
* bpo-46355: Update pythoncapi_compat project URL (GH-31670)Victor Stinner2022-03-031-2/+2
* bpo-46845: Reduce dict size when all keys are Unicode (GH-31564)Inada Naoki2022-03-011-0/+5
* bpo-46852: Remove the float.__set_format__() method (GH-31585)Victor Stinner2022-02-251-0/+6
* bpo-46836: Move PyFrameObject to pycore_frame.h (GH-31530)Victor Stinner2022-02-251-34/+34
* bpo-46656: Remove Py_NO_NAN macro (GH-31160)Victor Stinner2022-02-251-3/+5
* bpo-46656: Building Python now requires a C11 compiler (GH-31557)Victor Stinner2022-02-251-0/+3
* bpo-40421: What's New in Python 3.11: PyFrameObject.f_lasti (GH-31536)Victor Stinner2022-02-231-0/+2
* bpo-45412: Add _PY_SHORT_FLOAT_REPR macro (GH-31171)Victor Stinner2022-02-231-0/+4
* bpo-46659: Deprecate locale.getdefaultlocale() (GH-31206)Victor Stinner2022-02-221-0/+6
* bpo-46725: Document starred expressions in for statements (GH-31481)Pablo Galindo Salgado2022-02-221-0/+3
* bpo-46329: Change calling sequence (again) (GH-31373)Mark Shannon2022-02-181-1/+1
* bpo-29418: Add inspect.ismethodwrapper to whatsnew (GH-31377)Hakan Çelik2022-02-171-0/+2
* Fix missing import in dataclass code snippet (GH-29214)Leo2022-02-141-1/+1
* bpo-45447: Fix entry in What's New 3.11 (GH-31307)Terry Jan Reedy2022-02-131-1/+1
* bpo-45447: Add entry to What's new 3.9 (GH-31305)Terry Jan Reedy2022-02-131-0/+3
* bpo-45447: Add entry to What's new 3.10 (GH-31304)Terry Jan Reedy2022-02-131-1/+6
* bpo-45447: Add syntax highlighting for `.pyi` files in IDLE (GH-28950)Alex Waygood2022-02-131-0/+6
* bpo-46355: Amend What's New in Python 3.11 C API wording (GH-31288)Erlend Egeberg Aasland2022-02-121-2/+2
* bpo-46613: Add PyType_GetModuleByDef to the public API (GH-31081)Petr Viktorin2022-02-111-0/+5
* bpo-46659: calendar uses locale.getlocale() (GH-31166)Victor Stinner2022-02-071-0/+6