summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio
Commit message (Expand)AuthorAgeFilesLines
* bpo-32314: Fix asyncio.run() to cancel runinng tasks on shutdown (#5262)Yury Selivanov2018-01-212-0/+87
* bpo-32591: Add native coroutine origin tracking (#5250)Nathaniel J. Smith2018-01-211-28/+8
* bpo-32602: Test ECDSA certs (#5247)Christian Heimes2018-01-201-11/+17
* bpo-32410: Make SendfileNotAvailableError exception public (#5243)Andrew Svetlov2018-01-192-8/+10
* bpo-32410: Implement loop.sock_sendfile() (#4976)Andrew Svetlov2018-01-163-0/+411
* Make asyncio tests run when there's no SSL module (#5196)Yury Selivanov2018-01-151-3/+0
* bpo-32458: Temporarily mask start-tls proactor test on Windows (#5054)Yury Selivanov2017-12-301-2/+4
* bpo-32418: Postfix, raise NotImplementdError and close resources in tests (#5...Andrew Svetlov2017-12-301-2/+19
* bpo-32418: Add get_loop() method on Server, AbstractServer classes (#4997)Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2017-12-301-0/+13
* bpo-23749: Implement loop.start_tls() (#5039)Yury Selivanov2017-12-304-53/+488
* bpo-26133: Fix typos (#5010)Andrew Svetlov2017-12-261-0/+17
* bpo-31721: Allow Future._log_traceback to only be set to False (#5009)Yury Selivanov2017-12-252-0/+14
* bpo-32363: Disable Task.set_exception() and Task.set_result() (#4923)Yury Selivanov2017-12-252-23/+73
* bpo-32415: Fix "error is already set" (#4999)Yury Selivanov2017-12-231-0/+26
* Fix check for run_in_executor on closed loop. (#4996)Andrew Svetlov2017-12-231-3/+7
* bpo-32415: Add more tests (#4995)Yury Selivanov2017-12-231-3/+21
* bpo-32415: Add asyncio.Task.get_loop() and Future.get_loop() (#4992)Yury Selivanov2017-12-232-5/+9
* bpo-32357: Fix tests in refleak mode (#4989)Yury Selivanov2017-12-232-23/+32
* bpo-29970: Make ssh_handshake_timeout None by default (#4939)Andrew Svetlov2017-12-204-0/+59
* bpo-29970: Add timeout for SSL handshake in asyncioNeil Aspinall2017-12-192-12/+35
* bpo-29711: Fix stop_serving in proactor loop kill all listening servers (#431)Julien Duponchelle2017-12-191-4/+15
* bpo-32357: Optimize asyncio.iscoroutine() for non-native coroutines (#4915)Yury Selivanov2017-12-191-0/+43
* Improve test coverage (#4924)Andrew Svetlov2017-12-191-0/+1
* bpo-32356: idempotent pause_/resume_reading; new is_reading method. (#4914)Yury Selivanov2017-12-183-8/+47
* bpo-32348: Optimize asyncio.Future schedule/add/remove callback. (#4907)Yury Selivanov2017-12-182-27/+175
* bpo-32250: Implement asyncio.current_task() and asyncio.all_tasks() (#4799)Andrew Svetlov2017-12-161-23/+183
* bpo-27456: Ensure TCP_NODELAY is set on linux (#4231)Yury Selivanov2017-12-162-7/+27
* bpo-32311: Implement asyncio.create_task() shortcut (#4848)Andrew Svetlov2017-12-152-1/+39
* bpo-32327: Convert asyncio functions documented as coroutines to coroutines. ...Yury Selivanov2017-12-156-89/+84
* bpo-32314: Implement asyncio.run() (#4852)Yury Selivanov2017-12-141-0/+100
* bpo-32296: Unbreak tests on Windows (#4850)Yury Selivanov2017-12-131-4/+7
* bpo-32296: Implement asyncio.get_event_loop and _get_running_loop in C. (#4827)Yury Selivanov2017-12-131-20/+113
* Fix couple typos (#4839)Andrew Svetlov2017-12-131-1/+1
* bpo-32101: Fix tests for PYTHONDEVMODE=1 (#4821)Victor Stinner2017-12-122-9/+10
* Add asyncio.get_running_loop() function. (#4782)Yury Selivanov2017-12-111-0/+6
* bpo-32273: Move asyncio.test_utils to test.test_asyncio (#4785)Yury Selivanov2017-12-1116-56/+525
* bpo-32262: Fix codestyle; use f-strings formatting where necessary. (#4775)Yury Selivanov2017-12-102-6/+7
* Skip test_read_pty_output test on macOS for poll and select. (#4774)Yury Selivanov2017-12-101-3/+1
* bpo-32253: Deprecate with statement and bare await for asyncio locks (GH-4764)Andrew Svetlov2017-12-092-13/+47
* bpo-32193: Convert asyncio to async/await usage (#4753)Andrew Svetlov2017-12-089-450/+385
* bpo-32166: Drop Python 3.4 code from asyncio (#4612)Andrew Svetlov2017-11-291-2/+2
* bpo-32154: Remove asyncio.windows_utils.socketpair (#4609)Victor Stinner2017-11-282-56/+6
* bpo-32154: Remove asyncio.selectors (#4605)Victor Stinner2017-11-284-4/+4
* asyncio: use directly socket.socketpair() (#4597)Victor Stinner2017-11-283-18/+6
* asyncio: Fix BaseSelectorEventLoopTests (#4595)Victor Stinner2017-11-271-0/+2
* bpo-32126: Skip asyncio test when sem_open() is not functional (GH-4559)xdegaye2017-11-261-0/+4
* bpo-28684: Remove useless import added by the previous commit (GH-4547)xdegaye2017-11-241-1/+0
* bpo-28684: asyncio tests handle PermissionError raised on binding unix socket...xdegaye2017-11-243-11/+17
* bpo-32066: Support pathlib.Path in create_unix_connection; sock arg should be...Yury Selivanov2017-11-201-2/+10
* bpo-32047: -X dev enables asyncio debug mode (#4418)Victor Stinner2017-11-202-0/+8