summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_events.py
Commit message (Expand)AuthorAgeFilesLines
* Remove unused imports in tests (GH-14518) (GH-14520)Victor Stinner2019-07-011-2/+0
* bpo-29883: Asyncio proactor udp (GH-13440)Andrew Svetlov2019-05-281-9/+0
* bpo-37027: Return a proxy socket object from transp.get_extra_info('socket') ...Yury Selivanov2019-05-271-1/+1
* bpo-36921: Deprecate @coroutine for sake of async def (GH-13346)Andrew Svetlov2019-05-161-12/+8
* bpo-35934: Add socket.create_server() utility function (GH-11784)Giampaolo Rodola2019-04-081-9/+3
* bpo-35601: Alleviate race condition when waiting for SIGALRM in test_asyncio ...Pablo Galindo2018-12-291-1/+3
* bpo-35394: Add empty slots to abstract asyncio protocols (#10889)Andrew Svetlov2018-12-111-24/+0
* Extract sendfile tests into a separate test file (#9757)Andrew Svetlov2018-10-091-450/+1
* Extract tests for sock_*() functions into a separate file (GH-9761)Andrew Svetlov2018-10-081-130/+0
* bpo-34728: Fix asyncio tests to run under "-Werror" (GH-9661)Yury Selivanov2018-10-021-7/+7
* Fix test_asyncio for AIX - do not call transport.get_extra_info('sockname') (...Michael Felt2018-09-131-4/+6
* bpo-34622: Extract asyncio exceptions into a separate module (GH-9141)Andrew Svetlov2018-09-111-1/+1
* bpo-33562: Check the global asyncio event loop policy isn't set after any tes...Brett Cannon2018-06-021-0/+4
* bpo-33353: test_asyncio use set_write_buffer_limits() (GH-7200)Victor Stinner2018-05-291-17/+29
* bpo-32410: Avoid blocking on file IO in sendfile fallback code (GH-7172)Yury Selivanov2018-05-281-0/+11
* bpo-33469: RuntimeError after closing loop that used run_in_executor (GH-7171)Yury Selivanov2018-05-281-0/+18
* bpo-33672: Fix Task.__repr__ crash with Cython's bogus coroutines (GH-7161)Yury Selivanov2018-05-281-0/+10
* bpo-33654: Support BufferedProtocol in set_protocol() and start_tls() (GH-7130)Yury Selivanov2018-05-281-3/+3
* bpo-33353: test_asyncio set SO_SNDBUF after connect (GH-7086)Victor Stinner2018-05-241-3/+9
* bpo-33353: test_asyncio uses smaller sendfile data (#7083)Victor Stinner2018-05-231-2/+2
* bpo-32517: fix test_read_pty_output() hangs on macOS 10.13.2+ (GH-6037) (GH-6...Ned Deily2018-03-271-1/+1
* bpo-32622: Native sendfile on windows (#5565)Andrew Svetlov2018-02-251-35/+152
* Implement TimerHandle.when() (#5473)Andrew Svetlov2018-02-011-0/+6
* Fix tests if Python compiled without SSL (#5367)Andrew Svetlov2018-01-271-0/+2
* bpo-32622: Enforce sendfile fallback policy for FALLBACK transports (#5364)Yury Selivanov2018-01-271-0/+9
* bpo-32622: Implement loop.sendfile() (#5271)Andrew Svetlov2018-01-271-3/+300
* bpo-31399: Let OpenSSL verify hostname and IP address (#3462)Christian Heimes2018-01-271-2/+4
* bpo-32593: Drop FreeBSD 9 and older support (#5232)Victor Stinner2018-01-221-2/+0
* bpo-32410: Implement loop.sock_sendfile() (#4976)Andrew Svetlov2018-01-161-0/+2
* 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-301-53/+14
* Fix check for run_in_executor on closed loop. (#4996)Andrew Svetlov2017-12-231-3/+7
* bpo-32357: Fix tests in refleak mode (#4989)Yury Selivanov2017-12-231-16/+17
* bpo-29970: Make ssh_handshake_timeout None by default (#4939)Andrew Svetlov2017-12-201-0/+10
* bpo-32327: Convert asyncio functions documented as coroutines to coroutines. ...Yury Selivanov2017-12-151-2/+3
* 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
* 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-111-3/+1
* Skip test_read_pty_output test on macOS for poll and select. (#4774)Yury Selivanov2017-12-101-3/+1
* bpo-32193: Convert asyncio to async/await usage (#4753)Andrew Svetlov2017-12-081-63/+66
* bpo-32154: Remove asyncio.windows_utils.socketpair (#4609)Victor Stinner2017-11-281-6/+6
* bpo-32154: Remove asyncio.selectors (#4605)Victor Stinner2017-11-281-1/+1
* 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-241-7/+8
* bpo-32069: Drop legacy SSL transport (#4451)Andrew Svetlov2017-11-181-68/+0
* Add asyncio.Handle.cancelled() method (#2388)Marat Sharafutdinov2017-11-071-4/+4
* bpo-31819: Add AbstractEventLoop.sock_recv_into() (#4051)Antoine Pitrou2017-10-191-0/+26