summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Core and Builtins
Commit message (Expand)AuthorAgeFilesLines
* bpo-37122: Make co->co_argcount represent the total number of positonal argum...Pablo Galindo2019-06-011-0/+5
* bpo-36818: Add PyInterpreterState.runtime field. (gh-13129)Eric Snow2019-06-011-0/+1
* bpo-37029: keep usable_arenas in sorted order without searching (#13612)Tim Peters2019-06-011-0/+1
* bpo-26826: Expose copy_file_range in the os module (GH-7255)Pablo Galindo2019-05-311-0/+1
* bpo-20602: Do not clear sys.flags and sys.float_info during shutdown (GH-8096)Zackery Spytz2019-05-301-0/+2
* bpo-37007: Implement socket.if_nametoindex(), if_indextoname() and if_nameind...Zackery Spytz2019-05-291-0/+2
* bpo-32388: Remove cross-version binary compatibility requirement in tp_flags ...Antoine Pitrou2019-05-291-0/+1
* bpo-26836: Add os.memfd_create() (#13567)Zackery Spytz2019-05-291-0/+1
* bpo-22385: Support output separators in hex methods. (#13578)Gregory P. Smith2019-05-291-0/+4
* bpo-37072: Fix crash in PyAST_FromNodeObject() when flags is NULL (#13634)Guido van Rossum2019-05-281-0/+1
* bpo-26423: Fix possible overflow in wrap_lenfunc() (GH-13606)Zackery Spytz2019-05-281-0/+2
* bpo-37050: Remove expr_text from FormattedValue ast node, use Constant node i...Eric V. Smith2019-05-271-0/+4
* bpo-28866: No type cache for types with specialized mro, invalidation is hard...Julien Palard2019-05-261-0/+2
* bpo-37032: Add CodeType.replace() method (GH-13542)Victor Stinner2019-05-241-0/+1
* bpo-36045: builtins.help() now prefixes `async` for async functions (GH-12010)Dan Rose2019-05-241-0/+1
* bpo-36842: Implement PEP 578 (GH-12613)Steve Dower2019-05-231-0/+1
* bpo-36829: PyErr_WriteUnraisable() normalizes exception (GH-13507)Victor Stinner2019-05-221-0/+4
* bpo-36878: Only allow text after `# type: ignore` if first character ASCII (G...Michael J. Sullivan2019-05-221-0/+2
* bpo-36084: Add native thread ID (TID) to threading.Thread (GH-13463)Jake Tesler2019-05-221-0/+1
* bpo-36878: Track extra text added to 'type: ignore' in the AST (GH-13479)Michael J. Sullivan2019-05-221-0/+3
* bpo-31862: Port binascii to PEP 489 multiphase initialization (GH-4108)Marcel Plch2019-05-221-0/+2
* bpo-36907: fix refcount bug in _PyStack_UnpackDict() (GH-13381)Jeroen Demeyer2019-05-221-0/+2
* bpo-34616: Add PyCF_ALLOW_TOP_LEVEL_AWAIT to allow top-level await (GH-13148)Matthias Bussonnier2019-05-211-0/+1
* bpo-36035: fix Path.rglob for broken links (GH-11988)Jörg Stucke2019-05-211-0/+1
* Revert "bpo-36084: Add native thread ID to threading.Thread objects (GH-11993...Victor Stinner2019-05-211-1/+0
* Add support for PEP572 in ast_unparse.c (GH-13337)Batuhan Taşkaya2019-05-181-0/+1
* bpo-2180: Treat line continuation at EOF as a `SyntaxError` (GH-13401)Anthony Sottile2019-05-181-0/+1
* bpo-1875: Raise SyntaxError in invalid blocks that will be optimised away (GH...Pablo Galindo2019-05-171-0/+3
* bpo-36946: Fix possible signed integer overflow when handling slices. (GH-13375)Zackery Spytz2019-05-171-0/+1
* bpo-27987: pymalloc: align by 16bytes on 64bit platform (GH-12850)Inada Naoki2019-05-141-0/+3
* bpo-36084: Add native thread ID to threading.Thread objects (GH-11993)Jake Tesler2019-05-121-0/+1
* bpo-36737: Use the module state C-API for warnings. (gh-13159)Eric Snow2019-05-101-0/+2
* bpo-35983: skip trashcan for subclasses (GH-11841)Jeroen Demeyer2019-05-101-0/+3
* bpo-36601: clarify signal handler comment and remove unnecessary pid check. (...Jeroen Demeyer2019-05-101-0/+2
* bpo-36851: Clean the frame stack if the execution ends with a return and the ...Pablo Galindo2019-05-091-0/+2
* closes bpo-36861: Update Unicode database to 12.1.0. (GH-13214)Benjamin Peterson2019-05-091-0/+1
* bpo-36817: Add f-string debugging using '='. (GH-13123)Eric V. Smith2019-05-081-0/+7
* bpo-24048: Save the live exception during import.c's remove_module() (GH-13005)Zackery Spytz2019-05-081-0/+1
* bpo-27639: Correct return type for UserList slicing operation (#13169)Michael Blahay2019-05-071-0/+2
* Merge tag 'v3.8.0a4'Łukasz Langa2019-05-0720-48/+0
|\
| * Python 3.8.0a4v3.8.0a4Łukasz Langa2019-05-0620-48/+0
* | bpo-36793: Remove unneeded __str__ definitions. (GH-13081)Serhiy Storchaka2019-05-061-0/+3
* | bpo-36594: Fix incorrect use of %p in format strings (GH-12769)Zackery Spytz2019-05-061-0/+2
|/
* bpo-36751: Deprecate getfullargspec and report positional-only args as regula...Pablo Galindo2019-04-301-0/+3
* bpo-36540: PEP 570 -- Implementation (GH-12701)Pablo Galindo2019-04-291-0/+2
* bpo-36475: Finalize PyEval_AcquireLock() and PyEval_AcquireThread() properly ...Joannah Nanjekye2019-04-291-0/+4
* bpo-36722: Debug build loads libraries built in release mode (GH-12952)Victor Stinner2019-04-251-0/+2
* bpo-18372: Add missing PyObject_GC_Track() calls in the pickle module (GH-8505)Zackery Spytz2019-04-231-0/+2
* bpo-32849: Fix is_valid_fd() on FreeBSD (GH-12852)Victor Stinner2019-04-171-0/+2
* bpo-36623: Clean parser headers and include files (GH-12253)Pablo Galindo2019-04-131-0/+2