summaryrefslogtreecommitdiff
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* 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-033-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-021-0/+39
* bpo-33569 Preserve type information with dataclasses.InitVar (GH-8927)Augusto Hack2019-06-022-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-031-4/+4
* Fix typos in docs and docstrings (GH-13745)Xtreak2019-06-0312-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-026-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
* bpo-35431: Refactor math.comb() implementation. (GH-13725)Serhiy Storchaka2019-06-011-7/+22
* bpo-37122: Make co->co_argcount represent the total number of positonal argum...Pablo Galindo2019-06-015-23/+15
* bpo-36813: Fix QueueListener to call task_done() upon termination. (GH-13113)Bar Harel2019-06-012-0/+12
* bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700)Serhiy Storchaka2019-06-0122-242/+108
* bpo-35431: Implemented math.comb (GH-11414)Yash Aggarwal2019-06-011-0/+51
* Add option to trace to run modules (GH-5134)Mario Corchero2019-06-012-16/+37
* bpo-29984: Improve 'heapq' test coverage (GH-992)Rob Day2019-05-312-2/+33
* bpo-12202: Properly check MsiSummaryInfoGetProperty() calls in msilib (GH-13711)Zackery Spytz2019-06-011-0/+9
* bpo-33361: Fix bug with seeking in StreamRecoders (GH-8278)Ammar Askar2019-05-312-0/+31
* bpo-26826: Expose copy_file_range in the os module (GH-7255)Pablo Galindo2019-05-311-0/+83
* bpo-12639: msilib.Directory.start_component() fails if *keyfile* is not None ...Zackery Spytz2019-05-312-1/+10
* bpo-37115: Support annotations in positional-only arguments (GH-13698)Pablo Galindo2019-05-312-4/+55
* bpo-37112: Allow compile to work on AST with positional only arguments with d...Pablo Galindo2019-05-311-0/+22
* bpo-37108: Support super with methods that use positional-only arguments (GH-...Pablo Galindo2019-05-311-0/+14
* bpo-36379: __ipow__ must be a ternaryfunc, not a binaryfunc (GH-13546)Zackery Spytz2019-05-311-0/+7