summaryrefslogtreecommitdiff
path: root/Lib/test
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
* 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-032-48/+26
* 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-031-41/+7
* 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
* bpo-33569 Preserve type information with dataclasses.InitVar (GH-8927)Augusto Hack2019-06-021-0/+6
* 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
* 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-37124: Fix reference leak in test_msilib (GH-13750)Pablo Galindo2019-06-021-0/+1
* bpo-35621: Support running subprocesses in asyncio when loop is executed in n...Andrew Svetlov2019-06-022-26/+48
* 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-28595: Allow shlex whitespace_split with punctuation_chars (GH-2071)Evan2019-06-011-10/+36
* 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-013-4/+4
* bpo-36813: Fix QueueListener to call task_done() upon termination. (GH-13113)Bar Harel2019-06-011-0/+10
* bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700)Serhiy Storchaka2019-06-011-1/+1
* 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-011-1/+6
* bpo-29984: Improve 'heapq' test coverage (GH-992)Rob Day2019-05-311-0/+31
* 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-311-0/+25
* 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-311-0/+9
* 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
* bpo-34271: Add ssl debugging helpers (GH-10031)Christian Heimes2019-05-311-1/+167
* bpo-26660, bpo-35144: Fix permission errors in TemporaryDirectory cleanup. (G...Serhiy Storchaka2019-05-311-9/+42
* bpo-31829: Make protocol 0 pickles be loadable in text mode in Python 2. (GH-...Serhiy Storchaka2019-05-311-4/+15
* bpo-36548: Improve the repr of re flags. (GH-12715)Serhiy Storchaka2019-05-311-0/+12
* bpo-29262: Add get_origin() and get_args() introspection helpers to typing (G...Ivan Levkivskyi2019-05-311-0/+37
* bpo-36342: Fix test_multiprocessing in test_venv (GH-12513)xdegaye2019-05-301-1/+6
* bpo-36999: Add asyncio.Task.get_coro() (GH-13680)Alex Grönholm2019-05-301-0/+10
* bpo-37099: Silence DeprecationWarning in test_inspect (GH-13679)Xtreak2019-05-301-6/+9