summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-35551: encodings update (GH-11446)Ashwin Ramaswami2019-06-051-3/+1
* bpo-21315: Fix parsing of encoded words with missing leading ws. (#13425)Abhilash Raj2019-06-053-3/+45
* [3.9] bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-12620)Serhiy Storchaka2019-06-0522-321/+36
* bpo-37158: Simplify and speed-up statistics.fmean() (GH-13832)Raymond Hettinger2019-06-051-4/+4
* bpo-34767: Do not always create a collections.deque() in asyncio.Lock() (GH-1...Zackery Spytz2019-06-051-2/+7
* bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [str...Emmanuel Arias2019-06-051-0/+16
* bpo-35763: Make IDLE calltip note about '/' less obtrusive (GH-13791)Terry Jan Reedy2019-06-052-61/+67
* bpo-34282: Remove deprecated enum _convert method (GH-13823)Zachary Ware2019-06-041-6/+0
* Merge tag 'v3.8.0b1'Łukasz Langa2019-06-041-70/+84
|\
| * Python 3.8.0b1v3.8.0b1Łukasz Langa2019-06-041-70/+84
* | bpo-30835: email: Fix AttributeError when parsing invalid CTE (GH-13598)Abhilash Raj2019-06-042-1/+10
* | bpo-35805: Add parser for Message-ID email header. (GH-13397)Abhilash Raj2019-06-044-15/+235
* | bpo-37153: test_venv.test_mutiprocessing() calls pool.terminate() (GH-13816)Victor Stinner2019-06-041-2/+4
|/
* bpo-36742: Corrects fix to handle decomposition in usernames (#13812)Steve Dower2019-06-042-8/+9
* Fix extraneous whitespace in QueueListener.prepare (GH-13803)Boris Feld2019-06-041-1/+1
* bpo-36778: Remove outdated comment from CodePageTest (GH-13807)Victor Stinner2019-06-041-1/+0
* bpo-37142: Make asyncio stream tests more robust again (GH-13804)Andrew Svetlov2019-06-041-9/+16
* Make StreamServer.close() tests more robust (GH-13790)Andrew Svetlov2019-06-041-11/+37
* Revert "bpo-34037, asyncio: add BaseEventLoop.wait_executor_on_close (GH-1378...Łukasz Langa2019-06-041-3/+1
* bpo-37148: Fix asyncio test that check for warning when running the test suit...Pablo Galindo2019-06-041-0/+4
* bpo-35431: Drop the k <= n requirement (GH-13798)Raymond Hettinger2019-06-041-6/+6
* Revert "bpo-35621: Support running subprocesses in asyncio when loop is execu...Andrew Svetlov2019-06-043-260/+54
* bpo-34037, asyncio: add BaseEventLoop.wait_executor_on_close (GH-13786)Victor Stinner2019-06-031-1/+3
* bpo-37120: Add SSLContext.num_tickets (GH-13719)Christian Heimes2019-06-031-0/+18
* bpo-34271: Fix compatibility with 1.0.2 (GH-13728)Christian Heimes2019-06-032-44/+10
* Revert "bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall()...Victor Stinner2019-06-031-1/+1
* bpo-37137: Fix test_asyncio: use TestCase.set_event_loop() (GH-13779)Victor Stinner2019-06-031-13/+8
* bpo-26219: per opcode cache for LOAD_GLOBAL (GH-12884)Inada Naoki2019-06-031-3/+3
* bpo-35814: Allow unpacking in r.h.s of annotated assignment expressions (GH-1...Pablo Galindo2019-06-031-0/+4
* 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
* bpo-33569 Preserve type information with dataclasses.InitVar (GH-8927)Augusto Hack2019-06-032-3/+16
* bpo-37069: tests use catch_unraisable_exception() (GH-13762)Victor Stinner2019-06-037-69/+57
* bpo-37100: Fix test_coroutines with -Werror (GH-13756)Victor Stinner2019-06-021-4/+4
* Fix typos in docs and docstrings (GH-13745)Xtreak2019-06-0212-13/+13
* 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-021-5/+25
* 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-021-3/+3
* 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-027-13/+11
* bpo-35621: Support running subprocesses in asyncio when loop is executed in n...Andrew Svetlov2019-06-023-54/+260
* bpo-36027: Extend three-argument pow to negative second argument (GH-13266)Mark Dickinson2019-06-022-1/+28
* bpo-37128: Add math.perm(). (GH-13731)Serhiy Storchaka2019-06-021-1/+65
* Add more tests for preserving identity in marshal. (GH-13736)Serhiy Storchaka2019-06-021-18/+51
* bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-13...Eric Snow2019-06-011-1/+1
* bpo-20092. Use __index__ in constructors of int, float and complex. (GH-13108)Serhiy Storchaka2019-06-016-11/+103
* bpo-32411: IDLE: Remove line number sort in browser.py (#5011)Cheryl Sabella2019-06-013-17/+20
* bpo-28595: Allow shlex whitespace_split with punctuation_chars (GH-2071)Evan2019-06-012-11/+38