summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.8.rst
Commit message (Expand)AuthorAgeFilesLines
* Add credits to What's New in Python 3.8 (GH-13776)Victor Stinner2019-06-031-1/+18
* bpo-26219: per opcode cache for LOAD_GLOBAL (GH-12884)Inada Naoki2019-06-031-0/+4
* bpo-36974: document PEP 590 (GH-13450)Jeroen Demeyer2019-06-021-0/+16
* Fix typos in docs and docstrings (GH-13745)Xtreak2019-06-021-1/+1
* bpo-36027: Extend three-argument pow to negative second argument (GH-13266)Mark Dickinson2019-06-021-0/+6
* bpo-20092. Use __index__ in constructors of int, float and complex. (GH-13108)Serhiy Storchaka2019-06-011-1/+10
* bpo-37122: Make co->co_argcount represent the total number of positonal argum...Pablo Galindo2019-06-011-2/+4
* Move whats-new entry for math.factorial to the math module section. (GH-13723)Mark Dickinson2019-06-011-3/+3
* bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700)Serhiy Storchaka2019-06-011-2/+1
* Document changes for PyCode_New regarding PEP570 (GH-13706)Pablo Galindo2019-05-311-0/+3
* bpo-36610: shutil.copyfile(): use sendfile() on Linux only (GH-13675)Giampaolo Rodola2019-05-301-1/+1
* bpo-37007: Implement socket.if_nametoindex(), if_indextoname() and if_nameind...Zackery Spytz2019-05-291-0/+4
* bpo-32388: Remove cross-version binary compatibility requirement in tp_flags ...Antoine Pitrou2019-05-291-0/+9
* bpo-26836: Add os.memfd_create() (#13567)Zackery Spytz2019-05-291-0/+4
* bpo-22454: Add shlex.join() (the opposite of shlex.split()) (GH-7605)Bo Bayles2019-05-291-0/+5
* bpo-36933: fix what's new. (GH-13627)Matthias Bussonnier2019-05-281-3/+3
* bpo-22640: Add silent mode to py_compile.compile() (GH-12976)Joannah Nanjekye2019-05-281-0/+7
* bpo-33407: Implement Py_DEPRECATED() on MSVC (GH-8980)Zackery Spytz2019-05-281-0/+9
* bpo-33725: multiprocessing uses spawn by default on macOS (GH-13603)Victor Stinner2019-05-281-0/+10
* bpo-36933: Remove sys.set_coroutine_wrapper (marked for removal in 3.8) (GH-1...Matthias Bussonnier2019-05-281-0/+4
* bpo-1230540: Add threading.excepthook() (GH-13515)Victor Stinner2019-05-271-0/+9
* bpo-32941: Add madvise() for mmap objects (GH-6172)Zackery Spytz2019-05-271-0/+9
* bpo-36763: Implement the PEP 587 (GH-13592)Victor Stinner2019-05-271-0/+55
* bpo-36772 Allow lru_cache to be used as decorator without making a function c...Raymond Hettinger2019-05-261-0/+17
* bpo-37032: Add CodeType.replace() method (GH-13542)Victor Stinner2019-05-241-1/+5
* bpo-21536: On Cygwin, C extensions must be linked with libpython (GH-13549)E. M. Bray2019-05-241-8/+9
* bpo-18748: _pyio.IOBase emits unraisable exception (GH-13512)Victor Stinner2019-05-231-0/+9
* bpo-36721: Add --embed option to python-config (GH-13500)Victor Stinner2019-05-231-0/+18
* bpo-34616: Document top level async in whatsnew/3.8. (GH-13484)Matthias Bussonnier2019-05-221-0/+10
* bpo-36829: Add sys.unraisablehook() (GH-13187)Victor Stinner2019-05-221-0/+10
* bpo-36952: Remove the bufsize parameter in fileinput.input(). (GH-13400)Matthias Bussonnier2019-05-201-0/+4
* bpo-26467: Adds AsyncMock for asyncio Mock library support (GH-9296)Lisa Roach2019-05-201-0/+4
* bpo-36887: add math.isqrt (GH-13244)Mark Dickinson2019-05-181-0/+3
* bpo-36751: Undeprecate getfullargspec (GH-13245)Pablo Galindo2019-05-161-4/+0
* bpo-26707: Enable plistlib to read UID keys. (GH-12153)Jon Janzen2019-05-151-0/+8
* bpo-36895: Undocument removed time.clock (GH-13286)Matthias Bussonnier2019-05-131-0/+4
* bpo-36728: Remove PyEval_ReInitThreads() from C API (GH-13241)Victor Stinner2019-05-131-0/+5
* bpo-6584: Add a BadGzipFile exception to the gzip module. (GH-13022)Zackery Spytz2019-05-131-0/+5
* bpo-36886: Document changes in code object in What's new section (GH-13255)Pablo Galindo2019-05-121-0/+4
* bpo-21536: Update What's New in Python 3.8 entry (GH-13242)Victor Stinner2019-05-111-1/+2
* bpo-36676: Update what's new document. (#13226)Stefan Behnel2019-05-101-0/+7
* bpo-30262: Don't expose private objects in sqlite3 (GH-1440)Aviv Palivoda2019-05-091-0/+4
* closes bpo-36861: Update Unicode database to 12.1.0. (GH-13214)Benjamin Peterson2019-05-091-3/+2
* bpo-36817: Add f-string debugging using '='. (GH-13123)Eric V. Smith2019-05-081-0/+14
* bpo-36793: Remove unneeded __str__ definitions. (GH-13081)Serhiy Storchaka2019-05-061-0/+7
* bpo-26978: Implement pathlib.Path.link_to (Using os.link) (GH-12990)Joannah Nanjekye2019-05-041-0/+4
* bpo-28238: Implement "{*}tag" and "{ns}*" wildcard tag selection support for ...Stefan Behnel2019-05-031-0/+5
* Fix tiny tiny typo in 3.8 what's new (GH-13049)Daniel Porteous2019-05-021-2/+2
* bpo-36018: Update example to show mean and stdev (GH-13047)Raymond Hettinger2019-05-021-4/+6
* Move dangling bullet points into named subsections (GH-13046)Raymond Hettinger2019-05-021-11/+16