summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Revert "bpo-35621: Support running subprocesses in asyncio when loop is execu...Andrew Svetlov2019-06-044-262/+54
* bpo-37146: disable opcache when Py_DEBUG is defined (GH-13787)Inada Naoki2019-06-031-0/+7
* bpo-34037, asyncio: add BaseEventLoop.wait_executor_on_close (GH-13786)Victor Stinner2019-06-033-3/+15
* bpo-37120: Add SSLContext.num_tickets (GH-13719)Christian Heimes2019-06-034-0/+69
* bpo-36868: Fix what's new for SSLContext.hostname_checks_common_name (GH-13248)Christian Heimes2019-06-032-3/+4
* bpo-34271: Fix compatibility with 1.0.2 (GH-13728)Christian Heimes2019-06-034-46/+22
* bpo-37081: Test with OpenSSL 1.1.1c (GH-13631)Christian Heimes2019-06-035-8/+9
* Revert "bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall()...Victor Stinner2019-06-0310-320/+185
* bpo-37137: Fix test_asyncio: use TestCase.set_event_loop() (GH-13779)Victor Stinner2019-06-031-13/+8
* bpo-37087: Adding native ID support for OpenBSD (GH-13654)David Carlier2019-06-035-4/+10
* Doc fix: duplicate object description of email.message (GH-13742)Julien Palard2019-06-031-0/+1
* Add credits to What's New in Python 3.8 (GH-13776)Victor Stinner2019-06-031-1/+18
* bpo-26219: remove unused code (GH-13775)Inada Naoki2019-06-031-3/+0
* bpo-26219: per opcode cache for LOAD_GLOBAL (GH-12884)Inada Naoki2019-06-0313-16/+285
* Pin macOS installer Sphinx to v2.0.1 (GH-13774)Ned Deily2019-06-031-0/+1
* bpo-36231: Support building on macOS without /usr/include (GH-13773)Ned Deily2019-06-032-7/+48
* bpo-35814: Allow unpacking in r.h.s of annotated assignment expressions (GH-1...Pablo Galindo2019-06-035-3/+9
* IDLE: Fix typos in docs and comments (GH-13749)Xtreak2019-06-0311-11/+11
* bpo-36546: Add design notes to aid future discussions (GH-13769)Raymond Hettinger2019-06-031-0/+39
* Fix variable name copy/paste error in build-installer.py (GH-13038)cclauss2019-06-031-1/+1
* bpo-33569 Preserve type information with dataclasses.InitVar (GH-8927)Augusto Hack2019-06-033-3/+17
* bpo-37069: tests use catch_unraisable_exception() (GH-13762)Victor Stinner2019-06-038-69/+60
* bpo-36896: Clarify that some types constructors are unstable (GH-13271)Matthias Bussonnier2019-06-032-0/+5
* bpo-36027: Really fix "incompatible pointer type" compiler warning (GH-13761)Petr Viktorin2019-06-031-1/+1
* bpo-36974: add some assertions for PEP 590 (GH-13682)Jeroen Demeyer2019-06-021-0/+14
* bpo-36974: document PEP 590 (GH-13450)Jeroen Demeyer2019-06-024-123/+293
* Update the annotated assignment docs (GH-13757)Ivan Levkivskyi2019-06-021-1/+7
* bpo-37100: Fix test_coroutines with -Werror (GH-13756)Victor Stinner2019-06-021-4/+4
* bpo-37012: Clean up special cases in PyType_FromSpecWithBases slot assignment...Petr Viktorin2019-06-021-9/+11
* Fix typos in docs and docstrings (GH-13745)Xtreak2019-06-0215-16/+16
* bpo-36027 bpo-36974: Fix "incompatible pointer type" compiler warnings (GH-13...Petr Viktorin2019-06-022-2/+2
* bpo-35621: Fix tests when SafeChildWatcher is expected instead of ThreadedChi...Andrew Svetlov2019-06-021-0/+1
* bpo-36974: Make tp_call=PyVectorcall_Call work for inherited types (GH-13699)Petr Viktorin2019-06-024-17/+51
* bpo-19184: Update the documentation of dis module. (GH-13652)Michele Angrisano2019-06-021-3/+7
* test_gdb.test_pycfunction: test more calling conventions (GH-13668)Petr Viktorin2019-06-021-21/+34
* bpo-36829: test_threading: Fix a ref cycle (GH-13752)Victor Stinner2019-06-021-1/+5
* bpo-37014: Update docstring and Documentation of fileinput.FileInput(). (GH-1...Michele Angrisano2019-06-023-5/+7
* Call PyObject_GC_UnTrack in structseq dealloc (GH-13751)Pablo Galindo2019-06-021-0/+1
* bpo-37124: Fix reference leak in test_msilib (GH-13750)Pablo Galindo2019-06-021-0/+1
* bpo-35610: IDLE - Replace .context_use_ps1 with .prompt_last_line (GH-11307)Cheryl Sabella2019-06-028-13/+13
* Add description to the command line help of the argument clinic (GH-8518)Tim Hoffmann2019-06-021-1/+8
* bpo-37126: Allow structseq objects to be tracked by the GC (GH-13729)Pablo Galindo2019-06-022-2/+20
* bpo-35621: Support running subprocesses in asyncio when loop is executed in n...Andrew Svetlov2019-06-024-54/+262
* bpo-36027: Extend three-argument pow to negative second argument (GH-13266)Mark Dickinson2019-06-026-16/+173
* bpo-37128: Add math.perm(). (GH-13731)Serhiy Storchaka2019-06-025-3/+244
* Add more tests for preserving identity in marshal. (GH-13736)Serhiy Storchaka2019-06-021-18/+51
* Improve version added references in `typing` module docs (GH-13457)Anthony Sottile2019-06-022-4/+19
* Put math.comb() docs is correct place alphabetically (GH-13734)Raymond Hettinger2019-06-011-15/+15
* bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-13...Eric Snow2019-06-0110-186/+320
* bpo-29414: Change 'the for statement is such an iterator' in Tutorial (GH-273)Marco Buttu2019-06-011-10/+16