summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_events.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-46358: modernize `test_asyncio` (GH-30562)Nikita Sobolev2022-01-131-19/+9
* bpo-23819: Get rid of assert statements in test_asyncio (GH-30212)Serhiy Storchaka2021-12-201-20/+40
* bpo-23819: asyncio: Replace AssertionError with TypeError where it makes sens...Kumar Aditya2021-12-061-6/+2
* bpo-44968: Fix test_subprocess_wait_no_same_group in test_asyncio (GH-27870)Serhiy Storchaka2021-08-211-1/+2
* bpo-43216: Remove @asyncio.coroutine (GH-26369)Illia Volochii2021-07-011-2/+2
* bpo-39529: Deprecate creating new event loop in asyncio.get_event_loop() (GH-...Serhiy Storchaka2021-04-251-10/+67
* bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25145)Inada Naoki2021-04-041-1/+1
* bpo-31904: Skip some asyncio tests on VxWorks (#23815)pxinwr2020-12-171-1/+8
* bpo-42553: Fix test_asyncio.test_call_later() (GH-23627)Victor Stinner2020-12-031-3/+0
* bpo-42392: Remove loop parameter form asyncio locks and Queue (#23420)Yurii Karabas2020-11-241-124/+118
* bpo-38912: fix close before connect callback in test_asyncio SSL tests (GH-22...Justin Turner Arthur2020-10-201-0/+2
* bpo-38377: Add support.skip_if_broken_multiprocessing_synchronize() (GH-20944)Victor Stinner2020-06-181-2/+2
* bpo-40275: Adding threading_helper submodule in test.support (GH-20263)Hai Shi2020-05-271-1/+2
* bpo-39148: fixup to account for IPV6_ENABLED being moved (GH-20170)Nathaniel J. Smith2020-05-181-1/+1
* bpo-39148: enable ipv6 for datagrams in Proactor (GH-19121)Kjell Braden2020-05-181-3/+12
* bpo-40275: Avoid importing socket in test.support (GH-19603)Serhiy Storchaka2020-04-251-9/+10
* bpo-40115: Fix refleak in test_asyncio.test_run_in_executor_cancel() (GH-19282)Kyle Stanley2020-04-021-0/+2
* bpo-39191: Fix RuntimeWarning in asyncio test (GH-17863)Andrew Svetlov2020-01-071-2/+6
* bpo-38614: Use test.support.SHORT_TIMEOUT constant (GH-17566)Victor Stinner2019-12-111-6/+8
* bpo-38614: Use default join_thread() timeout in tests (GH-17559)Victor Stinner2019-12-101-1/+1
* bpo-38614: Use test.support.LOOPBACK_TIMEOUT constant (GH-17554)Victor Stinner2019-12-101-1/+1
* bpo-38107: Replace direct future and task contructor calls with factories in ...Andrew Svetlov2019-09-111-15/+15
* bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [loc...Emmanuel Arias2019-09-101-112/+129
* bpo-37685: Fixed __eq__, __lt__ etc implementations in some classes. (GH-14952)Serhiy Storchaka2019-08-081-0/+23
* Remove unused imports in tests (GH-14518)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